pageflow 16.0.0 → 16.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (145) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +210 -33
  3. data/README.md +0 -1
  4. data/Rakefile +1 -1
  5. data/admins/pageflow/entry.rb +0 -1
  6. data/admins/pageflow/sites.rb +3 -0
  7. data/app/assets/javascripts/pageflow/dist/ui.js +298 -72
  8. data/app/assets/stylesheets/pageflow/admin/permalink_input.scss +10 -0
  9. data/app/assets/stylesheets/pageflow/editor/drop_down_button.scss +6 -1
  10. data/app/assets/stylesheets/pageflow/editor/file_thumbnails.scss +4 -0
  11. data/app/assets/stylesheets/pageflow/editor/help.scss +3 -3
  12. data/app/assets/stylesheets/pageflow/editor/info_box.scss +7 -0
  13. data/app/assets/stylesheets/pageflow/editor/inputs/file_input.scss +0 -5
  14. data/app/assets/stylesheets/pageflow/ui/forms.scss +1 -1
  15. data/app/controllers/pageflow/chapters_controller.rb +2 -2
  16. data/app/controllers/pageflow/editor/files_controller.rb +1 -1
  17. data/app/controllers/pageflow/entries_controller.rb +10 -0
  18. data/app/controllers/pageflow/feeds_controller.rb +18 -0
  19. data/app/controllers/pageflow/pages_controller.rb +2 -2
  20. data/app/controllers/pageflow/sitemaps_controller.rb +15 -0
  21. data/app/controllers/pageflow/storylines_controller.rb +2 -2
  22. data/app/helpers/pageflow/entries_helper.rb +2 -1
  23. data/app/helpers/pageflow/feeds_helper.rb +66 -0
  24. data/app/helpers/pageflow/page_types_helper.rb +9 -9
  25. data/app/inputs/pageflow_permalink_input.rb +15 -3
  26. data/app/models/concerns/pageflow/reusable_file.rb +3 -3
  27. data/app/models/pageflow/account.rb +8 -0
  28. data/app/models/pageflow/audio_file_url_templates.rb +2 -1
  29. data/app/models/pageflow/draft_entry.rb +1 -1
  30. data/app/models/pageflow/entries_feed.rb +32 -0
  31. data/app/models/pageflow/image_file.rb +14 -3
  32. data/app/models/pageflow/membership.rb +3 -2
  33. data/app/models/pageflow/other_file.rb +5 -0
  34. data/app/models/pageflow/other_file_url_templates.rb +16 -0
  35. data/app/models/pageflow/published_entry.rb +6 -0
  36. data/app/models/pageflow/revision.rb +4 -0
  37. data/app/models/pageflow/site.rb +8 -0
  38. data/app/models/pageflow/sitemaps.rb +13 -0
  39. data/app/models/pageflow/used_file.rb +2 -2
  40. data/app/models/pageflow/video_file_url_templates.rb +3 -1
  41. data/app/models/pageflow/widget.rb +9 -1
  42. data/app/views/admin/entries/_permalink_inputs.html.erb +1 -2
  43. data/app/views/admin/sites/_attributes_table.html.arb +3 -0
  44. data/app/views/admin/sites/_fields.html.erb +6 -0
  45. data/app/views/components/pageflow/admin/extensible_attributes_table.rb +8 -2
  46. data/app/views/components/pageflow/admin/sites_tab.rb +3 -0
  47. data/app/views/pageflow/editor/config/_seeds.json.jbuilder +1 -0
  48. data/app/views/pageflow/feeds/index.atom.builder +20 -0
  49. data/app/views/pageflow/sitemaps/index.xml.builder +9 -0
  50. data/config/initializers/features.rb +1 -0
  51. data/config/initializers/paperclip.rb +4 -0
  52. data/config/locales/de.yml +27 -6
  53. data/config/locales/en.yml +30 -4
  54. data/config/routes.rb +3 -0
  55. data/config/spring.rb +1 -1
  56. data/db/migrate/20230120092923_create_other_files.rb +23 -0
  57. data/db/migrate/20230323115745_add_feeds_enabled_to_sites.rb +5 -0
  58. data/db/migrate/20230323154323_add_sitemap_enabled_to_sites.rb +5 -0
  59. data/db/migrate/20230331103823_add_title_to_sites.rb +5 -0
  60. data/db/migrate/20230405103612_add_custom_feed_url_to_sites.rb +5 -0
  61. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/editor.js +445 -109
  62. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/frontend.js +26 -3
  63. data/entry_types/paged/app/controllers/pageflow_paged/editor/entries_controller.rb +0 -2
  64. data/entry_types/paged/app/controllers/pageflow_paged/entries_controller.rb +1 -0
  65. data/entry_types/paged/app/views/pageflow_paged/entries/show.html.erb +1 -0
  66. data/entry_types/paged/config/initializers/features.rb +0 -1
  67. data/entry_types/paged/lib/pageflow_paged/engine.rb +17 -1
  68. data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/chapters_controller.rb +2 -2
  69. data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/content_elements_controller.rb +3 -4
  70. data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/sections_controller.rb +13 -6
  71. data/entry_types/scrolled/app/controllers/pageflow_scrolled/entries_controller.rb +2 -0
  72. data/entry_types/scrolled/app/helpers/pageflow_scrolled/cache_helper.rb +11 -0
  73. data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/entry_json_seed_helper.rb +42 -0
  74. data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/seed_html_helper.rb +3 -0
  75. data/entry_types/scrolled/app/helpers/pageflow_scrolled/packs_helper.rb +31 -10
  76. data/entry_types/scrolled/app/helpers/pageflow_scrolled/react_server_side_rendering_helper.rb +9 -1
  77. data/entry_types/scrolled/app/helpers/pageflow_scrolled/themes_helper.rb +3 -1
  78. data/entry_types/scrolled/app/models/pageflow_scrolled/chapter.rb +23 -0
  79. data/entry_types/scrolled/app/views/pageflow_scrolled/editor/entries/_head.html.erb +6 -1
  80. data/entry_types/scrolled/app/views/pageflow_scrolled/editor/entries/_seed.json.jbuilder +1 -5
  81. data/entry_types/scrolled/app/views/pageflow_scrolled/editor/sections/_section_with_content_elements.json.jbuilder +10 -0
  82. data/entry_types/scrolled/app/views/pageflow_scrolled/entries/show.html.erb +44 -41
  83. data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_consent_vendors.json.jbuilder +16 -0
  84. data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_entry.json.jbuilder +3 -0
  85. data/entry_types/scrolled/config/initializers/features.rb +5 -0
  86. data/entry_types/scrolled/config/locales/consent_widget.de.yml +4 -0
  87. data/entry_types/scrolled/config/locales/consent_widget.en.yml +4 -0
  88. data/entry_types/scrolled/config/locales/de.yml +189 -8
  89. data/entry_types/scrolled/config/locales/en.yml +207 -2
  90. data/entry_types/scrolled/config/routes.rb +4 -0
  91. data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/install_generator.rb +97 -5
  92. data/entry_types/scrolled/lib/pageflow_scrolled/additional_seed_data.rb +1 -1
  93. data/entry_types/scrolled/lib/pageflow_scrolled/configuration.rb +96 -0
  94. data/entry_types/scrolled/lib/pageflow_scrolled/content_element_consent_vendors.rb +38 -0
  95. data/entry_types/scrolled/lib/pageflow_scrolled/engine.rb +17 -1
  96. data/entry_types/scrolled/lib/pageflow_scrolled/plugin.rb +24 -0
  97. data/entry_types/scrolled/lib/pageflow_scrolled/react_widget_type.rb +6 -1
  98. data/entry_types/scrolled/lib/tasks/pageflow_scrolled/storybook.rake +1 -2
  99. data/entry_types/scrolled/package/contentElements-editor.js +307 -22
  100. data/entry_types/scrolled/package/contentElements-frontend.css +1 -1
  101. data/entry_types/scrolled/package/contentElements-frontend.js +690 -71
  102. data/entry_types/scrolled/package/editor.js +616 -220
  103. data/entry_types/scrolled/package/frontend/{EditableInlineText.module-14c7b097.js → EditableInlineText.module-fa9e3aff.js} +1669 -1674
  104. data/entry_types/scrolled/package/frontend/PhonePlatformContext-10a1d600.js +32 -0
  105. data/entry_types/scrolled/package/frontend/ToggleFullscreenCornerButton-727cce0d.js +107 -0
  106. data/entry_types/scrolled/package/frontend/Viewer-169e14ca.js +154 -0
  107. data/entry_types/scrolled/package/frontend/{Viewer-b6becc57.js → Viewer-ee1aa590.js} +32 -161
  108. data/entry_types/scrolled/package/frontend/arrowRight-92a34ccc.js +77 -0
  109. data/entry_types/scrolled/package/frontend/{components-b3160dd7.js → components-4a09bfa3.js} +185 -45
  110. data/entry_types/scrolled/package/frontend/{PhonePlatformContext-f6093cc6.js → i18n-ddd92820.js} +149 -107
  111. data/entry_types/scrolled/package/frontend/index-02378634.js +118 -0
  112. data/entry_types/scrolled/package/frontend/index.css +1 -1
  113. data/entry_types/scrolled/package/frontend/index.js +206 -54
  114. data/entry_types/scrolled/package/frontend/useContentElementEditorState-63045393.js +52 -0
  115. data/entry_types/scrolled/package/package.json +2 -1
  116. data/entry_types/scrolled/package/testHelpers.js +9 -2
  117. data/entry_types/scrolled/package/values/colors.module.css +15 -0
  118. data/entry_types/scrolled/package/widgets/consentBar.css +1 -0
  119. data/entry_types/scrolled/package/widgets/consentBar.js +426 -0
  120. data/entry_types/scrolled/package/widgets/defaultNavigation.css +1 -1
  121. data/lib/generators/pageflow/resque/resque_generator.rb +1 -1
  122. data/lib/pageflow/ability_mixin.rb +5 -5
  123. data/lib/pageflow/active_admin_can_can_fix.rb +2 -2
  124. data/lib/pageflow/built_in_file_type.rb +7 -0
  125. data/lib/pageflow/configuration.rb +21 -0
  126. data/lib/pageflow/engine.rb +60 -39
  127. data/lib/pageflow/entry_export_import/revision_serialization.rb +1 -1
  128. data/lib/pageflow/file_type.rb +2 -2
  129. data/lib/pageflow/global_config_api.rb +2 -2
  130. data/lib/pageflow/nested_revision_component.rb +23 -5
  131. data/lib/pageflow/rails_version.rb +19 -0
  132. data/lib/pageflow/seeds.rb +10 -7
  133. data/lib/pageflow/version.rb +1 -1
  134. data/lib/pageflow/widget_types.rb +4 -0
  135. data/package/config/webpack5.js +14 -0
  136. data/package/editor.js +141 -30
  137. data/package/frontend.js +26 -2
  138. data/package/testHelpers.js +1 -1
  139. data/package/ui.js +296 -71
  140. data/spec/factories/entries.rb +17 -3
  141. data/spec/factories/sites.rb +3 -0
  142. data/vendor/assets/javascripts/iscroll.js +4 -7
  143. metadata +65 -49
  144. data/app/helpers/pageflow/admin/permalinks_helper.rb +0 -15
  145. data/entry_types/scrolled/package/frontend/arrowRight-78a7cee4.js +0 -42
@@ -1 +1 @@
1
- .GradientBox-module_content__96lDk{position:relative}.GradientBox-module_shadow__2XilX{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none;max-height:var(--zero-if-two-column,0)}.GradientBox-module_gradient__31tJ- .GradientBox-module_shadow__2XilX{max-height:none}.GradientBox-module_long__10s6v .GradientBox-module_shadow__2XilX{bottom:-100vh}.GradientBox-module_root__8Xn9W .GradientBox-module_withShadow__3mhPR{text-shadow:0 1px min(5px,var(--zero-if-two-column)) #000}.GradientBox-module_gradient__31tJ- .GradientBox-module_withShadow__3mhPR{text-shadow:0 1px 5px #000}.GradientBox-module_shadowDark__3Tv0L{background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.5) 100px,rgba(0,0,0,.5))}.GradientBox-module_shadowLight__Bieg6{background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.5) 100px,hsla(0,0%,100%,.5))}@media print{.GradientBox-module_root__8Xn9W{padding-top:0!important}.GradientBox-module_shadow__2XilX{display:none}}.Text-module_heading-lg__FKxzu{font-size:110px;line-height:1}.Text-module_heading-md__1q5Ss{font-size:88px;line-height:1}.Text-module_heading-sm__2awaz{font-size:66px;font-weight:700;line-height:1}.Text-module_heading-xs__21nHy{font-size:33px;margin-top:1em;margin-bottom:0}.Text-module_body__4oWD-{font-size:22px;line-height:1.4}.Text-module_caption__3_6Au{font-size:20px;line-height:1.4}.Text-module_question__ByVAq{font-size:22px;line-height:1.4;font-weight:700}@media (max-width:600px){.Text-module_heading-lg__FKxzu{font-size:66px;line-height:1.1}.Text-module_heading-md__1q5Ss{font-size:50px;line-height:1.1}.Text-module_heading-sm__2awaz{font-size:40px}}.Image-module_root__1ef3j{background-size:cover;position:absolute;top:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.useScrollPositionLifecycle-module_wrapper__1a6Kr{position:relative}.useScrollPositionLifecycle-module_isActiveProbe__3VKB5{position:absolute;top:0;left:0;bottom:2px;width:1px}.Content-module_Content__m7urk{font-family:var(--theme-entry-font-family)}@media screen{.Content-module_Content__m7urk{background-color:#000;color:#fff}}.SectionThumbnail-module_crop__Q1nZj{pointer-events:none;position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}.SectionThumbnail-module_scale__2tKDG{transform:scale(.2);transform-origin:0 0;width:500%}.EditableText-module_root__2v1tU{white-space:pre-line}.EditableInlineText-module_root__3eA-J{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;white-space:pre-wrap;word-wrap:break-word}@supports (-webkit-touch-callout:none){.EditableInlineText-module_root__3eA-J{word-wrap:normal}}.EditableInlineText-module_hyphens-manual__3Lj4H{-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;word-wrap:break-word}.EditableInlineText-module_hyphens-none__1UvNH{hypens:none;word-wrap:normal}.MediaPlayer-module_wrapper__1cSGR,.MediaPlayer-module_wrapper__1cSGR>div,.MediaPlayer-module_wrapper__1cSGR>div>div,.MediaPlayer-module_wrapper__1cSGR img{width:100%;height:100%}.MediaPlayer-module_wrapper__1cSGR audio,.MediaPlayer-module_wrapper__1cSGR audio:focus,.MediaPlayer-module_wrapper__1cSGR video,.MediaPlayer-module_wrapper__1cSGR video:focus{outline:none}.MediaPlayer-module_wrapper__1cSGR img{position:absolute;top:0;left:0;-o-object-fit:contain;object-fit:contain;background:#000}.MediaPlayer-module_cover__2wGez img,.MediaPlayer-module_cover__2wGez video{-o-object-fit:cover;object-fit:cover}.AudioPlayer-module_spaceForTextTracks__169MK{height:100%}.AudioPlayer-module_spaceForTextTracksActive__99m7R{height:90px}.video-js{font-family:inherit!important}.vjs-text-track-display{z-index:2}.textTracks-module_inset__K7DIL .vjs-text-track-display{bottom:40px}.vjs-text-track-display div{font-family:inherit!important;font-size:20px!important}.vjs-text-track-display>div>div>div{padding:0 4px 2px}.vjs-paused .vjs-text-track-display div{transition:opacity .2s,visibility .2s;opacity:0;visibility:hidden!important}.scrollInConceal-module_backdrop__2OJJC{position:sticky;top:0;height:0}.scrollInScrollOut-module_backdrop__XzCge{position:sticky;top:0;height:100vh}.scrollInScrollOut-module_foreground__1yyY8{margin-top:-100vh}[tabindex]:focus,a:focus,button:focus{outline:3px solid #518ad2}.focusOutline-module_focusOutlineDisabled__KV7d- [tabindex]:focus,.focusOutline-module_focusOutlineDisabled__KV7d- a:focus,.focusOutline-module_focusOutlineDisabled__KV7d- button:focus{outline:none}.Fullscreen-module_root__1N3CI{width:100%;height:calc(100*var(--vh));position:relative;overflow:hidden}@media print{.Fullscreen-module_root__1N3CI{height:400px}}.fadeInConceal-module_backdrop__1zaRO{position:absolute;height:100%}.fadeInConceal-module_backdropInner__1AIvq{position:fixed;top:0;height:100vh;width:100%}.fadeInConceal-module_backdrop__1zaRO{transition:opacity .5s ease}.fadeInConceal-module_backdrop-below__AWyQe{opacity:0}.fadeInConceal-module_foreground__3giM9{transition:opacity .5s ease,visibility .5s}.fadeInConceal-module_foreground-below__2z5Op{opacity:0;visibility:hidden}.fadeInBgConceal-module_backdrop__11JGO{position:absolute;height:100%}.fadeInBgConceal-module_backdropInner__1IAYD{position:fixed;top:0;height:100vh;width:100%}.fadeInBgConceal-module_backdrop__11JGO{transition:opacity .5s ease}.fadeInBgConceal-module_backdrop-below__3E6Uk{opacity:0}.fadeInFadeOut-module_backdrop__Y4xOA{position:absolute;height:100%}.fadeInFadeOut-module_backdropInner__1oRfP{position:fixed;top:0;height:100vh;width:100%}.fadeInFadeOut-module_backdrop__Y4xOA .fadeInFadeOut-module_backdropInner__1oRfP{transition:opacity .5s ease}.fadeInFadeOut-module_backdrop-below__1h2I4 .fadeInFadeOut-module_backdropInner__1oRfP{opacity:0}.fadeInFadeOut-module_foreground__1eleZ{transition:opacity .5s ease,visibility .5s}.fadeInFadeOut-module_foreground-above__249wa,.fadeInFadeOut-module_foreground-below__3mE6f{opacity:0;visibility:hidden}.fadeInBgFadeOutBg-module_backdrop__15ocl{position:absolute;height:100%}.fadeInBgFadeOutBg-module_backdropInner__sAnz6{position:fixed;top:0;height:100vh;width:100%}.fadeInBgFadeOutBg-module_backdrop__15ocl .fadeInBgFadeOutBg-module_backdropInner__sAnz6,.fadeInBgFadeOutBg-module_boxShadow__xUKyj{transition:opacity .5s ease}.fadeInBgFadeOutBg-module_backdrop-below__1rDT6 .fadeInBgFadeOutBg-module_backdropInner__sAnz6,.fadeInBgFadeOutBg-module_boxShadow-above__2bY0E{opacity:0!important}.fadeInBgFadeOut-module_backdrop__r0YXp{position:absolute;height:100%}.fadeInBgFadeOut-module_backdropInner__IQp87{position:fixed;top:0;height:100vh;width:100%}.fadeInBgFadeOut-module_backdrop__r0YXp .fadeInBgFadeOut-module_backdropInner__IQp87{transition:opacity .5s ease}.fadeInBgFadeOut-module_backdrop-below__2G-Ic .fadeInBgFadeOut-module_backdropInner__IQp87{opacity:0}.fadeInBgFadeOut-module_foreground__Q2vkT{transition:opacity .5s ease,visibility .5s}.fadeInBgFadeOut-module_foreground-above__3pmz9{opacity:0;visibility:hidden}.fadeInBgScrollOut-module_backdrop__1bSsb{position:absolute;top:0;bottom:0;display:flex;flex-direction:column;justify-content:flex-end}.fadeInBgScrollOut-module_backdropInner__3JZBG{position:sticky;bottom:0;width:100%}.fadeInBgScrollOut-module_backdropInner2__q-00L{position:absolute;bottom:0;width:100%}.fadeInBgScrollOut-module_foreground__1ODH9{min-height:100vh}.fadeInBgScrollOut-module_backdrop__1bSsb{transition:opacity .5s ease}.fadeInBgScrollOut-module_backdrop-below__2Dbkr{opacity:0}.fadeInFadeOutBg-module_backdrop__2-IF3{position:absolute;height:100%}.fadeInFadeOutBg-module_backdropInner__3r_bo{position:fixed;top:0;height:100vh;width:100%}.fadeInFadeOutBg-module_backdrop__2-IF3 .fadeInFadeOutBg-module_backdropInner__3r_bo,.fadeInFadeOutBg-module_boxShadow__3x7Ki{transition:opacity .5s ease}.fadeInFadeOutBg-module_backdrop-below__4Ys_2 .fadeInFadeOutBg-module_backdropInner__3r_bo,.fadeInFadeOutBg-module_boxShadow-above__3T2K5{opacity:0!important}.fadeInFadeOutBg-module_foreground__24f_M{transition:opacity .5s ease,visibility .5s}.fadeInFadeOutBg-module_foreground-below__3pTRc{opacity:0;visibility:hidden}.revealFadeOut-module_backdrop___Q1QF{position:absolute;height:calc(100% + 100vh)}.revealFadeOut-module_backdropInner__17qRn{position:fixed;top:0;height:100vh;width:100%;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.revealFadeOut-module_foreground__1GzBs{transition:opacity .5s ease,visibility .5s}.revealFadeOut-module_foreground-above__3GxOf{opacity:0;visibility:hidden}.revealFadeOutBg-module_backdrop__30OCF{position:absolute;height:calc(100% + 100vh)}.revealFadeOutBg-module_backdropInner__3v3tM{position:fixed;top:0;height:100vh;width:100%;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.revealFadeOutBg-module_boxShadow__1NZRz{transition:opacity 1s ease}.revealFadeOutBg-module_boxShadow-above__2r4ov{opacity:0!important}.revealConceal-module_backdrop__dLUhU{position:absolute;height:100%}.revealConceal-module_backdropInner__2k1Z-{position:fixed;top:0;height:100vh;width:100%;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.fadeInScrollOut-module_backdrop__2FhBb{position:absolute;top:0;bottom:0;display:flex;flex-direction:column;justify-content:flex-end}.fadeInScrollOut-module_backdropInner__1OfNZ{position:sticky;bottom:0;width:100%}.fadeInScrollOut-module_backdropInner2__5bNPT{position:absolute;bottom:0;width:100%}.fadeInScrollOut-module_foreground__3h0EX{min-height:100vh;transition:opacity .5s ease,visibility .5s}.fadeInScrollOut-module_foreground-below__1Jcql{opacity:0;visibility:hidden}.fadeInScrollOut-module_backdrop__2FhBb{transition:opacity .5s ease}.fadeInScrollOut-module_backdrop-below__3cRLH{opacity:0}.scrollInFadeOut-module_backdrop__1vXJd{position:sticky;top:0;height:0}.scrollInFadeOut-module_foreground__3Ikxb{transition:opacity .5s ease,visibility .5s}.scrollInFadeOut-module_foreground-above__6ipm-{opacity:0;visibility:hidden}.scrollInFadeOutBg-module_backdrop__zw95c{position:sticky;top:0;height:0}.scrollInFadeOutBg-module_boxShadow__3UxCQ{transition:opacity .5s ease}.scrollInFadeOutBg-module_boxShadow-above__3kfau{opacity:0!important}.revealScrollOut-module_backdrop__2yOXd{position:absolute;top:0;bottom:0;display:flex;flex-direction:column;justify-content:flex-end}.revealScrollOut-module_backdropInner__211p3{position:sticky;bottom:0;width:100%;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.revealScrollOut-module_backdropInner2__v6WqM{position:absolute;bottom:0;width:100%}.Section-module_Section__Yo58b{position:relative;--section-max-width:var(--theme-section-max-width);--two-column-inline-content-max-width:var(--theme-two-column-inline-content-max-width);--two-column-wide-content-max-width:var(--theme-two-column-wide-content-max-width);--two-column-sticky-content-max-width:var(--theme-two-column-sticky-content-max-width);--centered-inline-content-max-width:var(--theme-centered-inline-content-max-width);--centered-wide-content-max-width:var(--theme-centered-wide-content-max-width);--foreground-padding-top:0px}.Section-module_first__1vLBH{--foreground-padding-top:var(--theme-widget-margin-top,58px)}.Section-module_narrow__3Dawu{--section-max-width:var(--theme-narrow-section-max-width);--two-column-inline-content-max-width:var(--theme-narrow-section-two-column-inline-content-max-width);--two-column-wide-content-max-width:var(--theme-narrow-section-two-column-wide-content-max-width);--two-column-sticky-content-max-width:var(--theme-narrow-section-two-column-sticky-content-max-width);--centered-inline-content-max-width:var(--theme-narrow-section-centered-inline-content-max-width);--centered-wide-content-max-width:var(--theme-narrow-section-centered-wide-content-max-width)}@media screen{.Section-module_Section__Yo58b{color:var(--theme-light-content-text-color,#fff);background-color:#000}.Section-module_invert__3_p7F{background-color:#fff;color:var(--theme-dark-content-text-color,#222)}}.OptIn-module_optIn__3nHo1{padding:15px;display:flex;flex-direction:column;width:100%;height:100%;text-align:center;align-items:center;justify-content:center;box-sizing:border-box}.OptIn-module_optInIcon__3-81I svg{fill:currentColor;height:90px}.OptIn-module_optInMessage__1OfTR{margin:1em 0 1.5em}@media (max-width:600px){.OptIn-module_optInIcon__3-81I svg{height:50px}.OptIn-module_optInMessage__1OfTR{margin:.5em 0 1em}}@media (max-width:400px){.OptIn-module_optInIcon__3-81I{display:none}}.OptIn-module_optInButton__1LhtX{padding:10px;background-color:transparent;color:currentColor;border:1px solid;border-radius:4px;cursor:pointer}.Bar-module_bar__kk5uX{position:fixed;bottom:0;left:0;width:100%;box-sizing:border-box;z-index:10;padding:10px 20px;font-family:var(--theme-widget-font-family);font-size:15px;background-color:var(--theme-widget-surface-color);color:var(--theme-widget-on-surface-color)}.Bar-module_text__3EwGu{margin-top:10px;margin-bottom:10px}.Bar-module_text__3EwGu a{color:var(--theme-accent-color)}.Bar-module_button__3Dg6p{border:none;border-radius:3px;margin:10px 5px 5px;padding:10px 15px;font:inherit;cursor:pointer;background-color:var(--theme-widget-secondary-color)}.Bar-module_acceptAllButton__Ij5lh{background-color:var(--theme-widget-primary-color);color:var(--theme-widget-on-primary-color)}.Bar-module_configureButton__2mQQz{margin-left:0}.Bar-module_configureButton__2mQQz svg{fill:currentColor;margin-right:6px;margin-bottom:1px;vertical-align:bottom}.Bar-module_vendorsBox__1Uyex h3{margin:.5em 0;font-size:1em}.Bar-module_vendorList__11m8q{overflow:auto;max-height:40vh;padding-right:5px;margin:5px 0}.Bar-module_vendor__2ogmn{position:relative;margin-bottom:5px;padding:8px 0;min-height:20px}.Bar-module_vendor__2ogmn p{font-size:13px}.Bar-module_vendor__2ogmn a{color:inherit}.Bar-module_expandVendor__1gfA3{border:none;background:transparent;position:absolute;right:5px;top:3px;padding:0;cursor:pointer}.Bar-module_expandVendor__1gfA3 svg{fill:currentColor;display:block}.Bar-module_expandVendor__1gfA3:active svg,.Bar-module_expandVendor__1gfA3:focus svg,.Bar-module_expandVendor__1gfA3:hover svg{fill:var(--theme-widget-primary-color)}@media (max-width:780px){.Bar-module_button__3Dg6p{display:block;width:100%;margin:10px 0}}@media (min-width:781px){.Bar-module_vendorsBox__1Uyex{position:absolute;bottom:100%;right:5px;margin-bottom:5px;max-width:400px;width:90%;box-sizing:border-box;padding:10px 20px;background-color:inherit;color:inherit;border-radius:5px}.Bar-module_saveButton__km-gH{float:right}.Bar-module_decisionButtons__2JzYP{float:right;display:inline-block;white-space:nowrap}}.video-js{display:block;vertical-align:top;box-sizing:border-box;color:#fff;position:relative;padding:0;font-size:10px;line-height:1;font-weight:400;font-style:normal;font-family:Arial,Helvetica,sans-serif;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.video-js:-moz-full-screen{position:absolute}.video-js:-webkit-full-screen{width:100%!important;height:100%!important}.video-js *,.video-js :after,.video-js :before{box-sizing:inherit}.video-js ul{font-family:inherit;font-size:inherit;line-height:inherit;list-style-position:outside;margin:0}.video-js .vjs-tech{position:absolute;top:0;left:0;width:100%;height:100%}body.vjs-full-window{padding:0;margin:0;height:100%;overflow-y:auto}.vjs-full-window .video-js.vjs-fullscreen{position:fixed;overflow:hidden;z-index:1000;left:0;top:0;bottom:0;right:0}.video-js.vjs-fullscreen{width:100%!important;height:100%!important;padding-top:0!important}.video-js.vjs-fullscreen.vjs-user-inactive{cursor:none}.vjs-hidden{display:none!important}.vjs-disabled{opacity:.5;cursor:default}.video-js .vjs-offscreen{height:1px;left:-9999px;position:absolute;top:0;width:1px}.vjs-lock-showing{display:block!important;opacity:1;visibility:visible}.vjs-no-js{padding:20px;color:#fff;background-color:#000;font-size:18px;font-family:Arial,Helvetica,sans-serif;text-align:center;width:300px;height:150px;margin:0 auto}.vjs-no-js a,.vjs-no-js a:visited{color:#66a8cc}.vjs-poster{display:inline-block;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;background-color:#000;cursor:pointer;margin:0;position:absolute;top:0;right:0;bottom:0;left:0;height:100%}.vjs-poster,.vjs-poster img{vertical-align:middle;padding:0}.vjs-poster img{display:block;margin:0 auto;max-height:100%;width:100%}.vjs-has-started .vjs-poster{display:none}.vjs-audio.vjs-has-started .vjs-poster{display:block}.vjs-using-native-controls .vjs-poster{display:none}.vjs-text-track-display{position:absolute;bottom:0;left:0;right:0;top:0;pointer-events:none}.video-js .vjs-text-track{font-size:17px;text-align:center;margin-bottom:.1em;background-color:#000;background-color:rgba(0,0,0,.5)}.vjs-subtitles{color:#fff}.vjs-captions{color:#fc6}.vjs-tt-cue{display:block}@media print{.video-js>:not(.vjs-tech):not(.vjs-poster){visibility:hidden}}.vjs-resize-manager{border:none}.Viewer-module_full__1q18y{height:100%}.Viewer-module_container__3eJ34{background-color:#000;color:#fff;cursor:move}.Viewer-module_controls__3BTof{position:absolute;right:0;top:0;color:#fff;background:linear-gradient(30deg,transparent,transparent 60%,rgba(0,0,0,.65));padding:5px 5px 40px 70px;pointer-events:none}.Viewer-module_controls__3BTof>*{pointer-events:auto}.Viewer-module_spinner__2oRve{-webkit-animation:Viewer-module_spin__3jBR2 .75s linear infinite;animation:Viewer-module_spin__3jBR2 .75s linear infinite;width:40px;height:40px;position:absolute;top:50%;left:50%;margin:-20px;display:none}.Viewer-module_spinner__2oRve.Viewer-module_isLoading__sQuGw{display:block}@-webkit-keyframes Viewer-module_spin__3jBR2{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Viewer-module_spin__3jBR2{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.Foreground-module_Foreground__13ODU{position:relative;z-index:3;box-sizing:border-box;display:flex;flex-direction:column;justify-content:center;padding-top:var(--foreground-padding-top)}.Foreground-module_fullFadeHeight__2p9dx{min-height:51vh}.Foreground-module_fullHeight__1vMXb{min-height:100vh}.Foreground-module_paddingBottom__3OtY4{padding-bottom:3em}@media print{.Foreground-module_Foreground__13ODU{min-height:auto;margin-top:0!important}}.OptOutInfo-module_optOut__2Q3d5{display:flex;background-color:#111;color:#fff;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);transition:opacity .2s ease,visibility .2s linear;pointer-events:auto}.OptOutInfo-module_tooltip__2bpU0{order:0;position:relative;display:none;align-items:center;padding:5px 5px 5px 10px}.OptOutInfo-module_optOut__2Q3d5:focus-within .OptOutInfo-module_tooltip__2bpU0,.OptOutInfo-module_optOut__2Q3d5:hover .OptOutInfo-module_tooltip__2bpU0{display:flex}.OptOutInfo-module_tooltip__2bpU0 a{color:currentColor}.OptOutInfo-module_icon__1kL6Q{order:1;position:relative}.OptOutInfo-module_icon__1kL6Q svg{fill:#c2c2c2;width:26px;height:26px;margin:7px 7px 5px}.OptOutInfo-module_optOut__2Q3d5{position:absolute;right:-15px;bottom:25%}.OptOutInfo-module_optOut__2Q3d5.OptOutInfo-module_full__s_Ono{right:0}.FullscreenIndicator-module_indicator__2Jl_-{pointer-events:none;visibility:hidden}.FullscreenIndicator-module_visible__2ywsZ{visibility:visible}.FullscreenIndicator-module_icon__2Ddof,.FullscreenIndicator-module_icons__3-Xm6,.FullscreenIndicator-module_text__3wCW3{position:absolute;top:50%;left:50%}.FullscreenIndicator-module_text__3wCW3{transform:translate(-50%,-50%);font-weight:700;font-size:25px;text-shadow:0 0 5px rgba(0,0,0,.8);margin-top:-3px;margin-left:3px}.FullscreenIndicator-module_icons__3-Xm6{-webkit-animation:FullscreenIndicator-module_pulse__1qujU 4s ease infinite;animation:FullscreenIndicator-module_pulse__1qujU 4s ease infinite}.FullscreenIndicator-module_icon__2Ddof:before{content:" ";position:absolute;top:50%;left:50%;width:45px;height:45px;transform:translate(-45%,-50%);background:radial-gradient(rgba(0,0,0,.2),transparent 60%);z-index:-1}.FullscreenIndicator-module_iconTopLeft__2u7-j{transform:translate(-50%,-50%) rotate(45deg);margin-left:-40px;margin-top:-40px}.FullscreenIndicator-module_iconTopRight__14nUk{transform:translate(-50%,-50%) rotate(135deg);margin-left:40px;margin-top:-40px}.FullscreenIndicator-module_iconBottomRight__lEtN6{transform:translate(-50%,-50%) rotate(225deg);margin-left:40px;margin-top:40px}.FullscreenIndicator-module_iconBottomLeft__voLm_{transform:translate(-50%,-50%) rotate(315deg);margin-left:-40px;margin-top:40px}@-webkit-keyframes FullscreenIndicator-module_pulse__1qujU{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}@keyframes FullscreenIndicator-module_pulse__1qujU{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}.Fullscreen-module_wrapper__300hJ{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:20000}.PanoramaIndicator-module_indicator__3A90v{pointer-events:none;opacity:0;transition:opacity .2s linear,transform .2s ease}.PanoramaIndicator-module_visible__3LOgm{opacity:1}.PanoramaIndicator-module_arrow__QV1Pd{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.PanoramaIndicator-module_arrowLeft__Jh7GC{margin-left:-50px}.PanoramaIndicator-module_arrowRight__ZZBtO{margin-left:50px}.PanoramaIndicator-module_arrowLeft__Jh7GC div{-webkit-animation:PanoramaIndicator-module_nudgeLeft__IU_Iy 4s ease infinite;animation:PanoramaIndicator-module_nudgeLeft__IU_Iy 4s ease infinite}.PanoramaIndicator-module_arrowRight__ZZBtO div{-webkit-animation:PanoramaIndicator-module_nudgeRight__3XzNu 4s ease infinite;animation:PanoramaIndicator-module_nudgeRight__3XzNu 4s ease infinite}.PanoramaIndicator-module_text__2FzUy{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-weight:700;font-size:30px;text-shadow:0 0 5px rgba(0,0,0,.8);margin-top:-3px;margin-left:3px}.PanoramaIndicator-module_indicator__3A90v svg{transition:transform .2s ease}:hover>.PanoramaIndicator-module_indicator__3A90v svg{transform:scale(1.2)}.PanoramaIndicator-module_arrow__QV1Pd div:before{content:" ";position:absolute;top:50%;left:50%;width:30px;height:30px;transform:translate(-50%,-50%);background:radial-gradient(rgba(0,0,0,.3),transparent 60%);z-index:-1}@-webkit-keyframes PanoramaIndicator-module_nudgeLeft__IU_Iy{50%{transform:translateX(-10px)}}@keyframes PanoramaIndicator-module_nudgeLeft__IU_Iy{50%{transform:translateX(-10px)}}@-webkit-keyframes PanoramaIndicator-module_nudgeRight__3XzNu{50%{transform:translateX(10px)}}@keyframes PanoramaIndicator-module_nudgeRight__3XzNu{50%{transform:translateX(10px)}}.ToggleFullscreenButton-module_button__3iBr8{width:40px;height:40px;margin:0 2px;display:flex;align-items:center;justify-content:center;color:currentColor;cursor:pointer}.ToggleFullscreenButton-module_button__3iBr8 svg{fill:currentColor;width:20px;height:20px}.CardBox-module_content__36v7J{position:relative}@media print{.CardBox-module_wrapper__3vnaH{padding-top:0!important}}.InvisibleBoxWrapper-module_start__F1nZ7{margin-top:1.375em}.InvisibleBoxWrapper-module_end__nphD-{margin-bottom:1.375em}.GradientShadow-module_dynamic__2v2JU,.GradientShadow-module_static__rXNpZ{position:absolute;top:0;left:0;width:100%;z-index:1;transition:opacity 1s ease;will-change:opacity}.GradientShadow-module_static__rXNpZ{max-width:var(--zero-if-motif-intersecting)}.GradientShadow-module_dynamic__2v2JU{max-width:var(--zero-if-two-column)}.GradientShadow-module_align-left__3qcNM.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-right__3iXZs.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ{background:linear-gradient(90deg,#000 0,transparent)}@media (min-width:950px){.GradientShadow-module_align-right__3iXZs.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ{background:linear-gradient(270deg,#000 0,transparent)}}.GradientShadow-module_align-center__2C7cl.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-centerRagged__2-iv8.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ,.GradientShadow-module_dark__1YuV5 .GradientShadow-module_dynamic__2v2JU{background:rgba(0,0,0,.9)}.GradientShadow-module_align-left__3qcNM.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-right__3iXZs.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ{background:linear-gradient(90deg,#fff 0,hsla(0,0%,100%,0))}@media (min-width:950px){.GradientShadow-module_align-right__3iXZs.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ{background:linear-gradient(270deg,#fff 0,hsla(0,0%,100%,0))}}.GradientShadow-module_align-center__2C7cl.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-centerRagged__2-iv8.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ,.GradientShadow-module_light__Vn92v .GradientShadow-module_dynamic__2v2JU{background:hsla(0,0%,100%,.9)}@media print{.GradientShadow-module_shadow__2UiDH{display:none}}.CardBoxWrapper-module_card__hvRUa{--theme-first-heading-landscape-padding-top:0;position:relative;margin-top:-1px;padding:1px 1.5em 0}.CardBoxWrapper-module_card__hvRUa:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1}.CardBoxWrapper-module_cardStart__2NywG{margin-top:3em}.CardBoxWrapper-module_cardEnd__x4Ye6{margin-bottom:3em;padding-bottom:1.5em}.CardBoxWrapper-module_cardStart__2NywG:before{border-top-left-radius:var(--theme-cards-border-radius,15px);border-top-right-radius:var(--theme-cards-border-radius,15px)}.CardBoxWrapper-module_cardEnd__x4Ye6:before{border-bottom-left-radius:var(--theme-cards-border-radius,15px);border-bottom-right-radius:var(--theme-cards-border-radius,15px)}@media screen{.CardBoxWrapper-module_cardBgWhite__xXhg7:before{background-color:var(--theme-cards-light-surface-color,var(--theme-light-content-surface-color,#fff))}.CardBoxWrapper-module_cardBgBlack__Ahp3s:before{background-color:var(--theme-cards-dark-surface-color,var(--theme-dark-content-surface-color,#101010))}.CardBoxWrapper-module_cardBgWhite__xXhg7{color:var(--theme-cards-on-light-surface-color,var(--theme-dark-content-text-color,#222))}.CardBoxWrapper-module_cardBgBlack__Ahp3s{color:var(--theme-cards-on-dark-surface-color,var(--theme-light-content-text-color,#fff))}}.Backdrop-module_Backdrop__1w4UZ{width:100%;z-index:2}.Backdrop-module_noCompositionLayer__33IlH{visibility:hidden}.Backdrop-module_defaultBackground__1YQQL{background-color:#333}.Backdrop-module_effects__lCEXd{height:100%}@media print{.Backdrop-module_Backdrop__1w4UZ{page-break-inside:avoid}.Backdrop-module_Backdrop__1w4UZ,.Backdrop-module_Backdrop__1w4UZ>div,.Backdrop-module_Backdrop__1w4UZ>div>div{position:static!important;height:auto!important}}.TwoColumn-module_group__3Hg2y{padding-left:8%;padding-right:8%;margin-left:auto;margin-right:auto;max-width:var(--section-max-width,none)}.TwoColumn-module_group-full__2OT4o{padding-left:0;padding-right:0;max-width:none;width:100%}.TwoColumn-module_inline__1fPfM,.TwoColumn-module_sticky__4LCDO{max-width:var(--two-column-inline-content-max-width,500px)}.TwoColumn-module_wide__xdF_t{max-width:var(--two-column-wide-content-max-width,1200px)}.TwoColumn-module_narrowViewport__1x_NY.TwoColumn-module_right__Fr52a .TwoColumn-module_sticky__4LCDO,.TwoColumn-module_right__Fr52a .TwoColumn-module_inline__1fPfM,.TwoColumn-module_right__Fr52a .TwoColumn-module_wide__xdF_t{margin-left:auto}.TwoColumn-module_wideViewport___c_Zz .TwoColumn-module_sticky__4LCDO{position:sticky;float:right;clear:right;top:33%;max-width:var(--two-column-sticky-content-max-width,600px);width:var(--theme-two-column-sticky-content-width,30%)}.TwoColumn-module_wideViewport___c_Zz.TwoColumn-module_right__Fr52a .TwoColumn-module_sticky__4LCDO{float:left}.Center-module_outer__3Rr0H{padding-left:8%;padding-right:8%;margin-left:auto;margin-right:auto;max-width:var(--section-max-width,none)}.Center-module_outer-full__3dknO{padding-left:0;padding-right:0;max-width:none;width:100%}.Center-module_item__1KSs3{margin-left:auto;margin-right:auto;max-width:var(--centered-inline-content-max-width,700px)}.Center-module_item-wide__2shH7{margin-left:auto;margin-right:auto;max-width:var(--centered-wide-content-max-width,1200px)}.Center-module_item-full__1cEuv{margin-left:0;margin-right:0;max-width:none}.Center-module_clear__jJEap{clear:both}@media (min-width:950px){.Center-module_inner-left__2z9Ea,.Center-module_inner-right__KBkVt{margin-top:.375em;position:relative;z-index:1}.Center-module_inner-left__2z9Ea{float:left;width:60%;margin-left:-10%;margin-right:1em;margin-bottom:1em}.Center-module_inner-right__KBkVt{float:right;width:60%;margin-right:-10%;margin-left:1em;margin-bottom:1em}}.Section-module_section__7UvMm{--backdrop-width:var(--backdrop-w);--backdrop-height:var(--backdrop-h);--motif-left:var(--motif-l);--motif-top:var(--motif-t);--motif-width:var(--motif-w);--motif-height:var(--motif-h)}@media (orientation:portrait){.Section-module_orientation__3-m2N{--backdrop-width:var(--mobile-backdrop-w,var(--backdrop-w));--backdrop-height:var(--mobile-backdrop-h,var(--backdrop-h));--motif-left:var(--mobile-motif-l,var(--motif-l));--motif-top:var(--mobile-motif-t,var(--motif-t));--motif-width:var(--mobile-motif-w,var(--motif-w));--motif-height:var(--mobile-motif-h,var(--motif-h))}}.Section-module_section__7UvMm{--motif-right:calc(100 - var(--motif-width) - var(--motif-left));--motif-bottom:calc(100 - var(--motif-height) - var(--motif-top));--motif-center-x:calc(var(--motif-left, 50) + var(--motif-width, 0)/2);--motif-center-y:calc(var(--motif-top, 50) + var(--motif-height, 0)/2);--backdrop-display-width:calc(var(--backdrop-width)*100*var(--vh)/var(--backdrop-height));--motif-display-center-x:calc(var(--motif-center-x)/100*var(--backdrop-display-width));--backdrop-translate-x:min(0px,max(100 * var(--vw) - var(--backdrop-display-width),var(--motif-display-center-x) * -1 + 50 * var(--vw)));--backdrop-positioner-transform:translateX(var(--backdrop-translate-x));--backdrop-positioner-width:var(--backdrop-display-width);--backdrop-positioner-height:100%;--backdrop-display-height:calc(var(--backdrop-height)*100*var(--vw)/var(--backdrop-width));--motif-display-center-y:calc(var(--motif-center-y)/100*var(--backdrop-display-height));--backdrop-translate-y:min(0px,max(calc(100*var(--vh) - var(--backdrop-display-height)),calc(var(--motif-display-center-y)*-1 + 50*var(--vh))));--backdrop-positioner-min-ar-transform:translateY(var(--backdrop-translate-y));--backdrop-positioner-min-ar-width:calc(100*var(--vw));--backdrop-positioner-min-ar-height:var(--backdrop-display-height);--motif-display-height:calc(var(--motif-height)*var(--vh));--motif-display-min-ar-height:calc(var(--motif-height)/100*var(--backdrop-display-height));--motif-display-top:calc(var(--motif-top)*var(--vh) - var(--foreground-padding-top));--motif-display-min-ar-top:calc(var(--motif-top)/100*var(--backdrop-display-height) + var(--backdrop-translate-y) - var(--foreground-padding-top));--motif-display-bottom:calc(var(--motif-bottom)*var(--vh) + var(--foreground-padding-top));--motif-display-min-ar-bottom:calc(var(--motif-bottom)/100*var(--backdrop-display-height) - var(--backdrop-display-height) + 100*var(--vh) - var(--backdrop-translate-y) + var(--foreground-padding-top));--motif-min-height-reveal-conceal:var(--motif-display-height);--motif-min-height-reveal:calc(var(--motif-display-bottom) + var(--motif-display-height));--motif-min-height-scroll-in:calc(var(--motif-display-top) + var(--motif-display-height))}@supports not (transform:translateX(min(0px,5px))){.Section-module_section__7UvMm{--backdrop-translate-x:calc((100*var(--vw) - var(--backdrop-display-width))*var(--motif-center-x)/100);--backdrop-translate-y:calc((100*var(--vh) - var(--backdrop-display-height))*var(--motif-center-y)/100)}}.Section-module_exposeMotifArea__2rsq_{--inline-content-max-width:calc(100*var(--vw));--motif-placeholder-width:calc(100*var(--vw));--motif-placeholder-min-ar-width:calc(100*var(--vw));--remaining-width:calc(100*var(--vw) - var(--inline-content-max-width) - 8*var(--vw) - var(--motif-placeholder-width));--zero-if-two-column:max(0px,var(--remaining-width) * -10000);--zero-if-motif-intersecting:max(0px,(var(--remaining-width) + 1px) * 10000);--motif-padding-fade-in:min(var(--zero-if-two-column),var(--motif-display-top) * 2/3 + var(--motif-display-height));--motif-padding-reveal:min(var(--zero-if-two-column),var(--motif-display-height));--motif-padding-scroll-in:min(var(--zero-if-two-column),var(--motif-display-top) + var(--motif-display-height))}@supports not (transform:translateX(min(0px,5px))){.Section-module_exposeMotifArea__2rsq_{--zero-if-two-column:none;--zero-if-motif-intersecting:0px;--motif-padding-fade-in:calc(var(--motif-display-top)*2/3 + var(--motif-display-height));--motif-padding-reveal:var(--motif-display-height);--motif-padding-scroll-in:calc(var(--motif-display-top) + var(--motif-display-height))}}.Section-module_layout-left__2IqOD,.Section-module_layout-right__3al0b{--inline-content-max-width:var(--two-column-inline-content-max-width,500px)}.Section-module_layout-left__2IqOD{--backdrop-overflow-h:calc(var(--backdrop-display-width) - 100*var(--vw));--motif-placeholder-width:calc((var(--motif-right) + var(--motif-width))/100*var(--backdrop-display-width) - var(--backdrop-overflow-h) - var(--backdrop-translate-x));--motif-placeholder-min-ar-width:calc((var(--motif-right) + var(--motif-width))*var(--vw))}.Section-module_layout-right__3al0b{--motif-placeholder-width:calc((var(--motif-left) + var(--motif-width))/100*var(--backdrop-display-width) + var(--backdrop-translate-x));--motif-placeholder-min-ar-width:calc((var(--motif-left) + var(--motif-width))*var(--vw))}.SectionDecorator-module_wrapper__3sTk3{position:relative}.SectionDecorator-module_selected__1gcmF>section:before{content:"";display:block;position:absolute;border:1px solid;top:5px;left:5px;right:5px;bottom:5px;z-index:9;pointer-events:none}.SectionDecorator-module_transitionSelected__Wklk6>section:before{content:"";position:absolute;display:block;top:0;width:100%;border-top:2px dotted #fff;z-index:9;background-color:#555;opacity:.7}.SectionDecorator-module_controls__LVEJG{position:absolute;top:-33px;right:0;height:100%;width:50px;padding-left:20px;z-index:10;display:none}.SectionDecorator-module_selected__1gcmF .SectionDecorator-module_controls__LVEJG,.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_controls__LVEJG{display:block}.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_editToolbar__18Kjq{visibility:hidden}.SectionDecorator-module_toolbar__2Va1D{position:absolute;padding:10px 0 10px 10px;z-index:10;overflow:hidden}.SectionDecorator-module_transitionToolbar-before__KipOO{top:0}.SectionDecorator-module_transitionToolbar-after__2_DVO{bottom:-63px}.Toggle-module_toggle__1fb_N{border:none;background:transparent;padding:0;position:absolute;top:3px;right:40px;cursor:pointer}.Toggle-module_toggle__1fb_N svg{display:block;fill:var(--theme-widget-on-surface-color);color:var(--theme-widget-surface-color)}.Toggle-module_toggle__1fb_N[aria-checked=true] svg{fill:var(--theme-widget-primary-color);color:var(--theme-widget-on-primary-color)}.index-module_container__3dD9z{position:relative}.index-module_shy__KgWjc{overflow-wrap:normal}.index-module_shy__KgWjc [data-slate-string]{position:relative}.index-module_selected__mE58y .index-module_shy__KgWjc [data-slate-string]:before{content:" ";position:absolute;display:block;border:5px solid transparent;border-bottom-color:currentcolor;width:0;height:0;bottom:1px;left:-5px;opacity:.7}.index-module_hoveringToolbar__31Xpd{position:absolute;z-index:2;top:-10000px;left:-10000px;margin-top:-6px;opacity:0;white-space:nowrap}.index-module_selection__3dUiD{display:none;position:absolute;z-index:1;width:100%;pointer-events:none}.index-module_linkTooltip__36m1K{background-color:#222;color:#fff;border-radius:4px;font-family:Helvetica,Arial,"Sans-Serif";font-size:13px;line-height:1;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.index-module_linkTooltip__36m1K:before{content:"";display:block;position:absolute;left:20px;bottom:100%;border:4px solid transparent;border-bottom-color:#222}.index-module_linkTooltip__36m1K a{color:#fff;background-color:transparent;border:0;display:inline-block;padding:10px}.index-module_linkTooltip__36m1K svg{padding-left:7px}.index-module_linkTooltipThumbnail__2v-cf{width:200px;height:120px;position:relative;margin:5px}.index-module_linkTooltipThumbnailClickMask__2Z3ff{position:absolute;top:0;left:0;bottom:0;right:0}.index-module_linkTooltipNewTab__4tnLF{opacity:.7;padding:0 10px 10px;text-decoration:none}.index-module_linkTooltipChapterNumber__2CsQA{font-weight:700}.index-module_newLine__1QnIs,.index-module_shy__1E2-J [data-slate-string]{position:relative}.index-module_selected__1U9ro.index-module_manualHyphens__16b2t .index-module_shy__1E2-J [data-slate-string]:before{content:" ";position:absolute;display:block;border:5px solid transparent;border-bottom-color:currentcolor;width:0;height:0;bottom:7px;left:-5px;opacity:.7}.index-module_newLine__1QnIs:before{content:"\21B5";position:absolute;display:block;font-size:13px;font-weight:400;bottom:2px;left:2px;opacity:0}.index-module_selected__1U9ro .index-module_newLine__1QnIs:before{opacity:.7}.index-module_shy__1E2-J{overflow-wrap:normal}.DropTargets-module_target__Z2N2d{position:absolute;height:50%;width:100%;left:-50px;padding-left:50px;padding-bottom:.5em;opacity:.8}.DropTargets-module_target__Z2N2d:before{content:"";position:absolute;display:block;left:50px;right:0}.DropTargets-module_target__Z2N2d.DropTargets-module_isOver__3ksFy:before{border-top:2px solid}.DropTargets-module_before__cAXo1{top:-.5em}.DropTargets-module_before__cAXo1:before{top:-1px}.DropTargets-module_after__2Q8QU{top:50%}.DropTargets-module_after__2Q8QU:before{top:calc(100% - 1px)}.SelectionRect-module_main__3AOhG{position:relative}.SelectionRect-module_main__3AOhG:after,.SelectionRect-module_main__3AOhG:before{content:"";position:absolute;top:-.5em;left:-.5em;right:-.5em;bottom:-.5em;pointer-events:none;opacity:.8}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF):before{top:5px}.SelectionRect-module_full__3tsQF:after,.SelectionRect-module_full__3tsQF:before{left:0;right:0}.SelectionRect-module_selected__1PhM6:before{border-left:1px solid}.SelectionRect-module_selected__1PhM6:after{border-right:1px solid}.SelectionRect-module_toolbar__3nPrd{position:absolute;top:-40px;right:-15px;z-index:1;pointer-events:auto}.SelectionRect-module_insert__w0Tl0{display:none;text-align:center;position:absolute;width:100%;opacity:.8;pointer-events:none}.SelectionRect-module_insertHovered__VTsDD.SelectionRect-module_insert__w0Tl0{opacity:1}.SelectionRect-module_end__3qOoK .SelectionRect-module_insert-after__3FJ4R,.SelectionRect-module_start__3_nAf .SelectionRect-module_insert-before__2Tyq5{display:block}.SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_insert__w0Tl0:before{content:"";position:absolute;top:0;width:calc(50% - 5px);height:0;border-bottom:1px solid}.SelectionRect-module_insert__w0Tl0:before{left:-.5em}.SelectionRect-module_insert__w0Tl0:after{right:-.5em}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF) .SelectionRect-module_insert-before__2Tyq5:before{left:5px;width:calc(50% - 10px - .5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{width:calc(50% - 5px + -.5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{left:0}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after{right:0}.SelectionRect-module_insertButton__1g-ZG{pointer-events:auto;border:0;background:none;color:currentColor;display:inline-block;vertical-align:top;position:relative;top:-9px;padding:2px 10px}.SelectionRect-module_insert-before__2Tyq5{top:-.5em}.SelectionRect-module_insert-after__3FJ4R{top:calc(100% + .5em)}.SelectionRect-module_dragHandle__2vVhP{position:absolute;top:-7px;left:10px;transform:translate(-100%,-50%);z-index:1;visibility:hidden;padding:10px;cursor:move;pointer-events:auto}.SelectionRect-module_selected__1PhM6 .SelectionRect-module_dragHandle__2vVhP{visibility:visible}.SelectionRect-module_full__3tsQF .SelectionRect-module_dragHandle__2vVhP{left:0;top:0;transform:translate(0);background:radial-gradient(rgba(0,0,0,.72),transparent 50%)}.SelectionRect-module_dragHandle__2vVhP svg{display:block;color:currentColor;width:15px;height:15px;opacity:.8}.SelectionRect-module_dragHandle__2vVhP:hover svg{opacity:1}.SelectionRect-module_full__3tsQF .SelectionRect-module_dragHandle__2vVhP svg{color:#fff}.Toolbar-module_Toolbar__1INSj{background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);display:flex;gap:2px}.Toolbar-module_button__de5BW{border:0;background:#fff;padding:10px;opacity:.6}.Toolbar-module_button__de5BW:hover{opacity:1}.Toolbar-module_activeButton__2sOLP{background:#ddd;opacity:1}@media (max-width:460px){.Toolbar-module_collapsible__3sivb .Toolbar-module_button__de5BW{display:none}.Toolbar-module_collapsible__3sivb .Toolbar-module_activeButton__2sOLP,.Toolbar-module_collapsible__3sivb:focus-within .Toolbar-module_button__de5BW,.Toolbar-module_collapsible__3sivb:hover .Toolbar-module_button__de5BW{display:inline-block}}.ContentElementInsertButton-module_container__3dvUS{height:0;position:relative;top:1em;text-align:center;opacity:.8}.ContentElementInsertButton-module_hovered__3Pggi{opacity:1}.ContentElementInsertButton-module_container__3dvUS:after,.ContentElementInsertButton-module_container__3dvUS:before{content:"";border-top:1px solid;width:calc(50% - 20px);position:absolute;top:0}.ContentElementInsertButton-module_container__3dvUS:before{left:0}.ContentElementInsertButton-module_container__3dvUS:after{right:0}.ContentElementInsertButton-module_button__2-eE2{border:0;background:none;color:currentColor;position:relative;top:-8px}.TextPlaceholder-module_placeholder__sgVwx{pointer-events:none;opacity:.5;height:0}.TextPlaceholder-module_placeholder__sgVwx>div{transform:translateY(-100%)}.ContentElement-module_missing__2_1j9{color:#000;background-color:#fff;border-left:5px solid #f44336;padding:.5em;margin:1em 0 0}.DropTargets-module_container__3vudG{position:absolute;top:-.5em;left:-50px;width:100%;height:100%;padding:.5em 0 8px 50px}.DropTargets-module_dropTarget__3mmox{position:absolute;left:0;width:100%;opacity:.8}.DropTargets-module_dropIndicator__2zu4d{position:absolute;left:50px;right:0;border-top:2px solid;opacity:0}.DropTargets-module_isOver__2usWn .DropTargets-module_dropIndicator__2zu4d{opacity:1}.FillColor-module_FillColor__S1uEG{width:100%}@media print{.FillColor-module_FillColor__S1uEG{display:none}}.ContentElementMargin-module_wrapper__20kIk{margin:1em 0 0}.Positioner-module_wrapper__3iFSg{position:relative;transform:var(--backdrop-positioner-transform);width:var(--backdrop-positioner-width);height:var(--backdrop-positioner-height)}.Picture-module_root__1BCCg{position:absolute;top:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.MotifArea-module_root__1_ACd{position:absolute;background:radial-gradient(transparent,currentColor);z-index:2;opacity:0;-webkit-transform:translateZ(0)}.MotifArea-module_visible__18Kln{opacity:.2}.MotifArea-module_root__2gOCe{left:calc(var(--motif-left)*1%);top:calc(var(--motif-top)*1%);width:calc(var(--motif-width)*1%);height:calc(var(--motif-height)*1%)}.Effects-module_effects__MDZRR{height:100%;filter:var(--filter)}@media (orientation:portrait){.Effects-module_effects__MDZRR{filter:var(--mobile-filter)}}.globalNotices{z-index:100000000;position:fixed;bottom:10px;left:10px}@supports not (old:ie){.unsupported{display:none}}.globalNotices div{background:#fff;padding:20px;max-width:240px;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);font-family:Source Sans Pro;border-top:2px solid #a50e0e;margin-top:10px}:root{--vw:1vw;--vh:1vh}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.Figure-module_root__3FC-x,body{margin:0}.Figure-module_root__3FC-x>figcaption{padding:3px 10px 5px;background-color:var(--theme-light-content-surface-color,#fff);color:var(--theme-dark-content-text-color,#222)}.Figure-module_invert___0BJP>figcaption{background-color:var(--theme-dark-content-surface-color,#101010);color:var(--theme-light-content-text-color,#fff)}.ContentElementBox-module_wrapper__3wZgP{overflow:hidden;border-radius:var(--theme-content-element-box-border-radius)}.Waveform-module_container__1Dxdv{position:relative;z-index:1;width:100%;min-height:140px;height:100%}.Waveform-module_clickMask__3LYAT{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer}.Waveform-module_menuBar__342n-{position:absolute;bottom:0;right:0;width:100%;height:40px;z-index:2;display:flex;align-items:center;justify-content:flex-end}.Waveform-module_timeDisplay__1v4Tl{position:relative;bottom:20px}.Waveform-module_playControl__QWTsJ{color:#fff;z-index:1;position:absolute;bottom:78px;left:30px}.Waveform-module_playControl__QWTsJ svg{transform:scale(2)}.Waveform-module_waveWrapper__3gamc{position:absolute;bottom:48px;width:98%;margin:0 1%;height:90px;z-index:1}.TimeDisplay-module_timeDisplay__2UwqM{margin:0 2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.TimeDisplay-module_time__li1ZU{line-height:24px;font-size:15px;padding:0 4px;color:currentColor}.MenuBarButton-module_icon__2h8__{width:25px;height:25px;fill:currentColor}.MenuBarButton-module_subMenuItemAnnotation__32Quc{color:red;font-size:70%;vertical-align:5px;padding-left:3px}.MenuBarButton-module_subMenu__f-E-X{visibility:hidden;opacity:0;pointer-events:none;transition:opacity .5s,visibility .5s;position:absolute;right:0;bottom:39px;margin:0;padding:5px;background-color:rgba(17,17,17,.9);border-radius:2px}.MenuBarButton-module_subMenuExpanded__2UvkJ .MenuBarButton-module_subMenu__f-E-X{visibility:visible;opacity:1;pointer-events:auto;transition:none}.MenuBarButton-module_subMenuItem__1pyn_{position:relative;list-style:none}.MenuBarButton-module_subMenuItemIcon__3iaB-{position:absolute;top:8px;left:5px;width:12px;height:12px;fill:#fff}.MenuBarButton-module_subMenuItemButton__2QnUz{width:100%;color:#fff;cursor:pointer;white-space:nowrap}button.MenuBarButton-module_subMenuItemButton__2QnUz{padding:5px 10px 5px 25px}.ControlBar-module_container__1GH64{position:relative;height:100%}.ControlBar-module_transparent__eS4af{opacity:0}.ControlBar-module_lightBackground__3-tGf{background:hsla(0,0%,100%,.2)}.ControlBar-module_darkBackground__31Wv7{background:rgba(0,0,0,.2)}.ControlBar-module_controlBarContainer__1cxRO{width:100%;display:flex;align-items:center;transition:opacity .2s ease}.ControlBar-module_inset__JvBh9{position:absolute;bottom:0;color:#fff;background:linear-gradient(0deg,rgba(0,0,0,.8),transparent)}.ControlBar-module_button___4aXE{width:40px;height:40px;margin:0 2px;display:flex;align-items:center;justify-content:center;color:currentColor;cursor:pointer}.ControlBar-module_button___4aXE svg{fill:currentColor;width:30px;height:30px}.utils-module_clip__34eot{clip:rect(0,auto,auto,0);-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0 100%);clip-path:polygon(0 0,100% 0,100% 100%,0 100%)}.utils-module_unstyledButton__3rgne{border:0;padding:0;background-color:transparent;text-align:initial}.BigPlayPauseButton-module_container__19sKj{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.BigPlayPauseButton-module_pointerCursor__2A55P{cursor:pointer}.BigPlayPauseButton-module_hideCursor__2Hyys{cursor:none}.BigPlayPauseButton-module_button__10g4Q{background:radial-gradient(rgba(0,0,0,.5),transparent 60%);width:64px;height:64px;display:flex;align-items:center;justify-content:center;-webkit-animation-duration:.7s;animation-duration:.7s;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.BigPlayPauseButton-module_button__10g4Q svg{fill:#fff;width:56px;height:56px}.BigPlayPauseButton-module_hidden__1KUzr{opacity:0}.BigPlayPauseButton-module_animated__1MMNq{-webkit-animation-name:BigPlayPauseButton-module_fadeOut__2vcA_;animation-name:BigPlayPauseButton-module_fadeOut__2vcA_}.BigPlayPauseButton-module_fadeIn__1Ge1-{-webkit-animation-name:BigPlayPauseButton-module_fadeIn__1Ge1-;animation-name:BigPlayPauseButton-module_fadeIn__1Ge1-}@-webkit-keyframes BigPlayPauseButton-module_fadeOut__2vcA_{to{opacity:0;transform:scale(1.5)}}@keyframes BigPlayPauseButton-module_fadeOut__2vcA_{to{opacity:0;transform:scale(1.5)}}@-webkit-keyframes BigPlayPauseButton-module_fadeIn__1Ge1-{0%{opacity:0;transform:scale(1.3)}}@keyframes BigPlayPauseButton-module_fadeIn__1Ge1-{0%{opacity:0;transform:scale(1.3)}}.ProgressIndicators-module_container__1QiQJ{flex-grow:1}.ProgressIndicators-module_wrapper__2PCVv{margin:0 10px;position:relative}.ProgressIndicators-module_draggable__1iAE8{height:32px;padding:13px 0;box-sizing:border-box;cursor:pointer}.ProgressIndicators-module_bars__2-ddd{position:relative;height:6px;border-radius:3.5px}.ProgressIndicators-module_progressBar__2PYn-{position:absolute;left:0;height:6px;border-radius:2.5px;background:currentColor}.ProgressIndicators-module_background__-x5f_{opacity:.1;width:100%}.ProgressIndicators-module_loadingProgressBar__YD2GH{opacity:.1}.ProgressIndicators-module_sliderHandle__3ArIf{width:14px;height:14px;margin-left:-6.5px;border-radius:6.5px;position:absolute;top:-4px;background:currentColor;opacity:0;transition:opacity .1s}.ProgressIndicators-module_container__1QiQJ:hover .ProgressIndicators-module_sliderHandle__3ArIf,.ProgressIndicators-module_dragging__3yY3t .ProgressIndicators-module_sliderHandle__3ArIf{opacity:1}.FitViewport-module_container__-awVj{width:100%;margin:0 auto}.FitViewport-module_content__1_K5a{position:relative}.FitViewport-module_inner__3psd1{position:absolute;top:0;left:0;right:0;bottom:0}.FitViewport-module_opaque__3EE3o .FitViewport-module_inner__3psd1{background-color:#000;color:#fff}@media print{.FitViewport-module_container__-awVj{page-break-inside:avoid}}.Tooltip-module_container__3V63U{position:relative;display:inline-block}.Tooltip-module_bubble__FIL1C{position:absolute;top:100%;left:50%;opacity:0;visibility:hidden;z-index:1;border-radius:5px;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);font-size:13px;width:180px;transform-origin:50% 0;transform:translateX(-50%);transition:visibility .1s linear,opacity .1s linear}.Tooltip-module_container__3V63U:focus-within .Tooltip-module_bubble__FIL1C,.Tooltip-module_fixed__3NGyG .Tooltip-module_bubble__FIL1C,.Tooltip-module_openOnHover__1EeI5:hover .Tooltip-module_bubble__FIL1C{-webkit-animation:Tooltip-module_fadeIn__3g9QH .1s ease-out 0s 1 alternate;animation:Tooltip-module_fadeIn__3g9QH .1s ease-out 0s 1 alternate;opacity:1;visibility:visible}.Tooltip-module_openOnHover__1EeI5 .Tooltip-module_bubble__FIL1C{pointer-events:none}@-webkit-keyframes Tooltip-module_fadeIn__3g9QH{0%{transform:translateX(-50%) scale(.9)}to{transform:translateX(-50%) scale(1)}}@keyframes Tooltip-module_fadeIn__3g9QH{0%{transform:translateX(-50%) scale(.9)}to{transform:translateX(-50%) scale(1)}}.Tooltip-module_inner__E2hsp{position:relative;z-index:2;background:var(--theme-widget-surface-color);color:var(--theme-widget-on-surface-color);border-radius:5px;padding:10px}.Tooltip-module_highlight__2NpuQ .Tooltip-module_inner__E2hsp{border-bottom:3px solid var(--theme-accent-color)}.Tooltip-module_arrow__3LxXo{position:absolute;width:5px;height:5px;background:var(--theme-widget-surface-color);box-shadow:1px 1px 3px 0 rgba(0,0,0,.2),1px 1px 4px 0 rgba(0,0,0,.14),0 0 8px 0 rgba(0,0,0,.12);border:4px solid transparent;z-index:1;transform:translateX(-50%) translateY(50%) rotate(45deg);bottom:100%;left:50%}
1
+ .GradientBox-module_content__96lDk{position:relative}.GradientBox-module_shadow__2XilX{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none;max-height:var(--zero-if-two-column,0)}.GradientBox-module_gradient__31tJ- .GradientBox-module_shadow__2XilX{max-height:none}.GradientBox-module_long__10s6v .GradientBox-module_shadow__2XilX{bottom:-100vh}.GradientBox-module_root__8Xn9W .GradientBox-module_withShadow__3mhPR{text-shadow:0 1px min(5px,var(--zero-if-two-column)) #000}.GradientBox-module_gradient__31tJ- .GradientBox-module_withShadow__3mhPR{text-shadow:0 1px 5px #000}.GradientBox-module_shadowDark__3Tv0L{background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.5) 100px,rgba(0,0,0,.5))}.GradientBox-module_shadowLight__Bieg6{background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.5) 100px,hsla(0,0%,100%,.5))}@media print{.GradientBox-module_root__8Xn9W{padding-top:0!important}.GradientBox-module_shadow__2XilX{display:none}}.Image-module_fill__1D1wH{position:absolute;top:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.Text-module_heading-lg__FKxzu{font-size:110px;line-height:1}.Text-module_heading-md__1q5Ss{font-size:88px;line-height:1}.Text-module_heading-sm__2awaz{font-size:66px;font-weight:700;line-height:1}.Text-module_heading-xs__21nHy{font-size:33px;margin-top:1em;margin-bottom:0}.Text-module_body__4oWD-{font-size:22px;line-height:1.4}.Text-module_caption__3_6Au{font-size:20px;line-height:1.4}.Text-module_question__ByVAq{font-size:22px;line-height:1.4;font-weight:700}.Text-module_quoteText-lg__3ZnZi{font-size:50px;line-height:1.1}.Text-module_quoteText-md__2eooO{font-size:40px;line-height:1.1}.Text-module_quoteText-sm__5nKex{font-size:33px;line-height:1.2}.Text-module_quoteText-xs__2p5on{font-size:26px;line-height:1.2}.Text-module_quoteAttribution__VBqLw{font-size:22px;line-height:1.4}.Text-module_counterNumber-lg__2myJg{font-size:350px;line-height:1;font-weight:700}.Text-module_counterNumber-md__1NC3q{font-size:200px;line-height:1;font-weight:700}.Text-module_counterNumber-sm__2SwHQ{font-size:110px;line-height:1;font-weight:700}.Text-module_counterNumber-xs__1D-YR{font-size:66px;line-height:1;font-weight:700}.Text-module_counterDescription__34NjQ{font-size:22px;line-height:1.4}@media (max-width:600px){.Text-module_heading-lg__FKxzu{font-size:66px;line-height:1.1}.Text-module_heading-md__1q5Ss{font-size:50px;line-height:1.1}.Text-module_heading-sm__2awaz{font-size:40px}.Text-module_quoteText-lg__3ZnZi{font-size:40px;line-height:1.1}.Text-module_quoteText-md__2eooO{font-size:33px;line-height:1.2}.Text-module_quoteText-sm__5nKex,.Text-module_quoteText-xs__2p5on{font-size:22px;line-height:1.4}.Text-module_counterNumber-lg__2myJg{font-size:200px;line-height:1}.Text-module_counterNumber-md__1NC3q{font-size:110px;line-height:1}.Text-module_counterNumber-sm__2SwHQ{font-size:66px;line-height:1.1}.Text-module_counterNumber-xs__1D-YR{font-size:40px;line-height:1.1}}.Content-module_Content__m7urk{font-family:var(--theme-entry-font-family)}@media screen{.Content-module_Content__m7urk{background-color:#000;color:#fff}}.SectionThumbnail-module_crop__Q1nZj{pointer-events:none;position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}.SectionThumbnail-module_scale__2tKDG{transform:scale(.2);transform-origin:0 0;width:500%}.ToggleFullscreenCornerButton-module_corner__CxAAH{position:absolute;right:0;top:0;color:#fff;background:linear-gradient(30deg,transparent,transparent 60%,rgba(0,0,0,.65));padding:5px 5px 40px 70px;pointer-events:none}.ToggleFullscreenCornerButton-module_corner__CxAAH>*{pointer-events:auto}.useScrollPositionLifecycle-module_wrapper__1a6Kr{position:relative}.useScrollPositionLifecycle-module_isActiveProbe__3VKB5{position:absolute;top:0;left:0;bottom:2px;width:1px}.EditableInlineText-module_root__3eA-J{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;white-space:pre-wrap;word-wrap:break-word}@supports (-webkit-touch-callout:none){.EditableInlineText-module_root__3eA-J{word-wrap:normal}}.EditableInlineText-module_hyphens-manual__3Lj4H{-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;word-wrap:break-word}.EditableInlineText-module_hyphens-none__1UvNH{hypens:none;word-wrap:normal}.EditableText-module_root__2v1tU{white-space:pre-line}.EditableText-module_light__2c29h{color:var(--theme-light-content-text-color,#fff)}.EditableText-module_dark__2ym90{color:var(--theme-dark-content-text-color,#222)}.MediaPlayer-module_wrapper__1cSGR,.MediaPlayer-module_wrapper__1cSGR>div,.MediaPlayer-module_wrapper__1cSGR>div>div,.MediaPlayer-module_wrapper__1cSGR img{width:100%;height:100%}.MediaPlayer-module_wrapper__1cSGR audio,.MediaPlayer-module_wrapper__1cSGR audio:focus,.MediaPlayer-module_wrapper__1cSGR video,.MediaPlayer-module_wrapper__1cSGR video:focus{outline:none}.MediaPlayer-module_wrapper__1cSGR img{position:absolute;top:0;left:0;-o-object-fit:contain;object-fit:contain;background:#000}.MediaPlayer-module_cover__2wGez img,.MediaPlayer-module_cover__2wGez video{-o-object-fit:cover;object-fit:cover}.AudioPlayer-module_spaceForTextTracks__169MK{height:100%}.AudioPlayer-module_spaceForTextTracksActive__99m7R{height:90px}.video-js{font-family:inherit!important}.vjs-text-track-display{z-index:2}.textTracks-module_inset__K7DIL .vjs-text-track-display{bottom:40px}.vjs-text-track-display div{font-family:inherit!important;font-size:20px!important}.vjs-text-track-display>div>div>div{padding:0 4px 2px}.vjs-paused .vjs-text-track-display div{transition:opacity .2s,visibility .2s;opacity:0;visibility:hidden!important}.index-module_wrapper__ilo7n{height:100%;width:100%;background-color:rgba(0,0,0,.9);opacity:0;transition:opacity .2s linear}.index-module_visible__6QUDn{opacity:1}@supports (-webkit-touch-callout:none){.index-module_wrapper__ilo7n{transform:scale(1);height:calc(100*var(--vh))}}.scrollInConceal-module_backdrop__2OJJC{position:sticky;top:0;height:0}.scrollInScrollOut-module_backdrop__XzCge{position:sticky;top:0;height:100vh}.scrollInScrollOut-module_foreground__1yyY8{margin-top:-100vh}body>#root [tabindex]:focus,body>#root a:focus,body>#root button:focus{outline:3px solid #518ad2}.focusOutline-module_focusOutlineDisabled__KV7d->#root [tabindex]:focus,.focusOutline-module_focusOutlineDisabled__KV7d->#root a:focus,.focusOutline-module_focusOutlineDisabled__KV7d->#root button:focus{outline:none}.Fullscreen-module_root__1N3CI{width:100%;height:calc(100*var(--vh));position:relative;overflow:hidden}@media print{.Fullscreen-module_root__1N3CI{height:400px}}.fadeInBgFadeOutBg-module_backdrop__15ocl{position:absolute;height:100%}.fadeInBgFadeOutBg-module_backdropInner__sAnz6{position:fixed;top:0;height:100vh;width:100%}.fadeInBgFadeOutBg-module_backdrop__15ocl .fadeInBgFadeOutBg-module_backdropInner__sAnz6,.fadeInBgFadeOutBg-module_boxShadow__xUKyj{transition:opacity .5s ease}.fadeInBgFadeOutBg-module_backdrop-below__1rDT6 .fadeInBgFadeOutBg-module_backdropInner__sAnz6,.fadeInBgFadeOutBg-module_boxShadow-above__2bY0E{opacity:0!important}.fadeInFadeOut-module_backdrop__Y4xOA{position:absolute;height:100%}.fadeInFadeOut-module_backdropInner__1oRfP{position:fixed;top:0;height:100vh;width:100%}.fadeInFadeOut-module_backdrop__Y4xOA .fadeInFadeOut-module_backdropInner__1oRfP{transition:opacity .5s ease}.fadeInFadeOut-module_backdrop-below__1h2I4 .fadeInFadeOut-module_backdropInner__1oRfP{opacity:0}.fadeInFadeOut-module_foreground__1eleZ{transition:opacity .5s ease,visibility .5s}.fadeInFadeOut-module_foreground-above__249wa,.fadeInFadeOut-module_foreground-below__3mE6f{opacity:0;visibility:hidden}.fadeInBgConceal-module_backdrop__11JGO{position:absolute;height:100%}.fadeInBgConceal-module_backdropInner__1IAYD{position:fixed;top:0;height:100vh;width:100%}.fadeInBgConceal-module_backdrop__11JGO{transition:opacity .5s ease}.fadeInBgConceal-module_backdrop-below__3E6Uk{opacity:0}.fadeInConceal-module_backdrop__1zaRO{position:absolute;height:100%}.fadeInConceal-module_backdropInner__1AIvq{position:fixed;top:0;height:100vh;width:100%}.fadeInConceal-module_backdrop__1zaRO{transition:opacity .5s ease}.fadeInConceal-module_backdrop-below__AWyQe{opacity:0}.fadeInConceal-module_foreground__3giM9{transition:opacity .5s ease,visibility .5s}.fadeInConceal-module_foreground-below__2z5Op{opacity:0;visibility:hidden}.fadeInScrollOut-module_backdrop__2FhBb{position:absolute;top:0;bottom:0;display:flex;flex-direction:column;justify-content:flex-end}.fadeInScrollOut-module_backdropInner__1OfNZ{position:sticky;bottom:0;width:100%}.fadeInScrollOut-module_backdropInner2__5bNPT{position:absolute;bottom:0;width:100%}.fadeInScrollOut-module_foreground__3h0EX{min-height:100vh;transition:opacity .5s ease,visibility .5s}.fadeInScrollOut-module_foreground-below__1Jcql{opacity:0;visibility:hidden}.fadeInScrollOut-module_backdrop__2FhBb{transition:opacity .5s ease}.fadeInScrollOut-module_backdrop-below__3cRLH{opacity:0}.fadeInFadeOutBg-module_backdrop__2-IF3{position:absolute;height:100%}.fadeInFadeOutBg-module_backdropInner__3r_bo{position:fixed;top:0;height:100vh;width:100%}.fadeInFadeOutBg-module_backdrop__2-IF3 .fadeInFadeOutBg-module_backdropInner__3r_bo,.fadeInFadeOutBg-module_boxShadow__3x7Ki{transition:opacity .5s ease}.fadeInFadeOutBg-module_backdrop-below__4Ys_2 .fadeInFadeOutBg-module_backdropInner__3r_bo,.fadeInFadeOutBg-module_boxShadow-above__3T2K5{opacity:0!important}.fadeInFadeOutBg-module_foreground__24f_M{transition:opacity .5s ease,visibility .5s}.fadeInFadeOutBg-module_foreground-below__3pTRc{opacity:0;visibility:hidden}.fadeInBgFadeOut-module_backdrop__r0YXp{position:absolute;height:100%}.fadeInBgFadeOut-module_backdropInner__IQp87{position:fixed;top:0;height:100vh;width:100%}.fadeInBgFadeOut-module_backdrop__r0YXp .fadeInBgFadeOut-module_backdropInner__IQp87{transition:opacity .5s ease}.fadeInBgFadeOut-module_backdrop-below__2G-Ic .fadeInBgFadeOut-module_backdropInner__IQp87{opacity:0}.fadeInBgFadeOut-module_foreground__Q2vkT{transition:opacity .5s ease,visibility .5s}.fadeInBgFadeOut-module_foreground-above__3pmz9{opacity:0;visibility:hidden}.fadeInBgScrollOut-module_backdrop__1bSsb{position:absolute;top:0;bottom:0;display:flex;flex-direction:column;justify-content:flex-end}.fadeInBgScrollOut-module_backdropInner__3JZBG{position:sticky;bottom:0;width:100%}.fadeInBgScrollOut-module_backdropInner2__q-00L{position:absolute;bottom:0;width:100%}.fadeInBgScrollOut-module_foreground__1ODH9{min-height:100vh}.fadeInBgScrollOut-module_backdrop__1bSsb{transition:opacity .5s ease}.fadeInBgScrollOut-module_backdrop-below__2Dbkr{opacity:0}.revealScrollOut-module_backdrop__2yOXd{position:absolute;top:0;bottom:0;display:flex;flex-direction:column;justify-content:flex-end}.revealScrollOut-module_backdropInner__211p3{position:sticky;bottom:0;width:100%;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.revealScrollOut-module_backdropInner2__v6WqM{position:absolute;bottom:0;width:100%}.revealFadeOutBg-module_backdrop__30OCF{position:absolute;height:calc(100% + 100vh)}.revealFadeOutBg-module_backdropInner__3v3tM{position:fixed;top:0;height:100vh;width:100%;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.revealFadeOutBg-module_boxShadow__1NZRz{transition:opacity 1s ease}.revealFadeOutBg-module_boxShadow-above__2r4ov{opacity:0!important}.revealConceal-module_backdrop__dLUhU{position:absolute;height:100%}.revealConceal-module_backdropInner__2k1Z-{position:fixed;top:0;height:100vh;width:100%;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.revealFadeOut-module_backdrop___Q1QF{position:absolute;height:calc(100% + 100vh)}.revealFadeOut-module_backdropInner__17qRn{position:fixed;top:0;height:100vh;width:100%;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.revealFadeOut-module_foreground__1GzBs{transition:opacity .5s ease,visibility .5s}.revealFadeOut-module_foreground-above__3GxOf{opacity:0;visibility:hidden}.scrollInFadeOut-module_backdrop__1vXJd{position:sticky;top:0;height:0}.scrollInFadeOut-module_foreground__3Ikxb{transition:opacity .5s ease,visibility .5s}.scrollInFadeOut-module_foreground-above__6ipm-{opacity:0;visibility:hidden}.scrollInFadeOutBg-module_backdrop__zw95c{position:sticky;top:0;height:0}.scrollInFadeOutBg-module_boxShadow__3UxCQ{transition:opacity .5s ease}.scrollInFadeOutBg-module_boxShadow-above__3kfau{opacity:0!important}.Section-module_Section__Yo58b{position:relative;--section-max-width:var(--theme-section-max-width);--two-column-inline-content-max-width:var(--theme-two-column-inline-content-max-width);--two-column-inline-lg-content-max-width:var(--theme-two-column-inline-lg-content-max-width);--two-column-inline-xl-content-max-width:var(--theme-two-column-inline-xl-content-max-width);--two-column-sticky-content-max-width:var(--theme-two-column-sticky-content-max-width);--two-column-sticky-lg-content-max-width:var(--theme-two-column-sticky-lg-content-max-width);--two-column-sticky-xl-content-max-width:var(--theme-two-column-sticky-xl-content-max-width);--centered-inline-content-max-width:var(--theme-centered-inline-content-max-width);--centered-inline-lg-content-max-width:var(--theme-centered-inline-lg-content-max-width);--centered-inline-xl-content-max-width:var(--theme-centered-inline-xl-content-max-width);--foreground-padding-top:0px}.Section-module_first__1vLBH{--foreground-padding-top:var(--theme-widget-margin-top,58px)}.Section-module_narrow__3Dawu{--section-max-width:var(--theme-narrow-section-max-width);--two-column-inline-content-max-width:var(--theme-narrow-section-two-column-inline-content-max-width);--two-column-inline-lg-content-max-width:var(--theme-narrow-section-two-column-inline-lg-content-max-width);--two-column-inline-xl-content-max-width:var(--theme-narrow-section-two-column-inline-xl-content-max-width);--two-column-sticky-content-max-width:var(--theme-narrow-section-two-column-sticky-content-max-width);--two-column-sticky-lg-content-max-width:var(--theme-narrow-section-two-column-sticky-lg-content-max-width);--two-column-sticky-xl-content-max-width:var(--theme-narrow-section-two-column-sticky-xl-content-max-width);--centered-inline-content-max-width:var(--theme-narrow-section-centered-inline-content-max-width);--centered-inline-lg-content-max-width:var(--theme-narrow-section-centered-inline-lg-content-max-width);--centered-inline-xl-content-max-width:var(--theme-narrow-section-centered-inline-xl-content-max-width)}@media screen{.Section-module_Section__Yo58b{color:var(--theme-light-content-text-color,#fff);--content-text-color:var(--theme-light-content-text-color,#fff);--content-link-color:var(--theme-light-content-link-color,var(--theme-content-link-color,currentColor));background-color:#000}.Section-module_invert__3_p7F{background-color:#fff;color:var(--theme-dark-content-text-color,#222);--content-text-color:var(--theme-dark-content-text-color,#222);--content-link-color:var(--theme-dark-content-link-color,var(--theme-content-link-color,currentColor))}}.ToggleFullscreenButton-module_button__2n69-{width:40px;height:40px;margin:0 2px;display:flex;align-items:center;justify-content:center;color:currentColor;cursor:pointer}.ToggleFullscreenButton-module_button__2n69- svg{fill:currentColor;width:20px;height:20px}.OptIn-module_optIn__3nHo1{padding:15px;display:flex;flex-direction:column;width:100%;height:100%;text-align:center;align-items:center;justify-content:center;box-sizing:border-box}.OptIn-module_optInIcon__3-81I svg{fill:currentColor;height:90px}.OptIn-module_optInMessage__1OfTR{margin:1em 0 1.5em}@media (max-width:600px){.OptIn-module_optInIcon__3-81I svg{height:50px}.OptIn-module_optInMessage__1OfTR{margin:.5em 0 1em}}@media (max-width:400px){.OptIn-module_optInIcon__3-81I{display:none}}.OptIn-module_optInButton__1LhtX{padding:10px;background-color:transparent;color:currentColor;border:1px solid;border-radius:4px;cursor:pointer}.video-js{display:block;vertical-align:top;box-sizing:border-box;color:#fff;position:relative;padding:0;font-size:10px;line-height:1;font-weight:400;font-style:normal;font-family:Arial,Helvetica,sans-serif;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.video-js:-moz-full-screen{position:absolute}.video-js:-webkit-full-screen{width:100%!important;height:100%!important}.video-js *,.video-js :after,.video-js :before{box-sizing:inherit}.video-js ul{font-family:inherit;font-size:inherit;line-height:inherit;list-style-position:outside;margin:0}.video-js .vjs-tech{position:absolute;top:0;left:0;width:100%;height:100%}body.vjs-full-window{padding:0;margin:0;height:100%;overflow-y:auto}.vjs-full-window .video-js.vjs-fullscreen{position:fixed;overflow:hidden;z-index:1000;left:0;top:0;bottom:0;right:0}.video-js.vjs-fullscreen{width:100%!important;height:100%!important;padding-top:0!important}.video-js.vjs-fullscreen.vjs-user-inactive{cursor:none}.vjs-hidden{display:none!important}.vjs-disabled{opacity:.5;cursor:default}.video-js .vjs-offscreen{height:1px;left:-9999px;position:absolute;top:0;width:1px}.vjs-lock-showing{display:block!important;opacity:1;visibility:visible}.vjs-no-js{padding:20px;color:#fff;background-color:#000;font-size:18px;font-family:Arial,Helvetica,sans-serif;text-align:center;width:300px;height:150px;margin:0 auto}.vjs-no-js a,.vjs-no-js a:visited{color:#66a8cc}.vjs-poster{display:inline-block;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;background-color:#000;cursor:pointer;margin:0;position:absolute;top:0;right:0;bottom:0;left:0;height:100%}.vjs-poster,.vjs-poster img{vertical-align:middle;padding:0}.vjs-poster img{display:block;margin:0 auto;max-height:100%;width:100%}.vjs-has-started .vjs-poster{display:none}.vjs-audio.vjs-has-started .vjs-poster{display:block}.vjs-using-native-controls .vjs-poster{display:none}.vjs-text-track-display{position:absolute;bottom:0;left:0;right:0;top:0;pointer-events:none}.video-js .vjs-text-track{font-size:17px;text-align:center;margin-bottom:.1em;background-color:#000;background-color:rgba(0,0,0,.5)}.vjs-subtitles{color:#fff}.vjs-captions{color:#fc6}.vjs-tt-cue{display:block}@media print{.video-js>:not(.vjs-tech):not(.vjs-poster){visibility:hidden}}.vjs-resize-manager{border:none}.Viewer-module_full__1q18y{height:100%}.Viewer-module_container__3eJ34{background-color:#000;color:#fff;cursor:move}.Viewer-module_spinner__2oRve{-webkit-animation:Viewer-module_spin__3jBR2 .75s linear infinite;animation:Viewer-module_spin__3jBR2 .75s linear infinite;width:40px;height:40px;position:absolute;top:50%;left:50%;margin:-20px;display:none}.Viewer-module_spinner__2oRve.Viewer-module_isLoading__sQuGw{display:block}@-webkit-keyframes Viewer-module_spin__3jBR2{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Viewer-module_spin__3jBR2{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.Fullscreen-module_wrapper__2MP7f{position:fixed;top:0;left:0;width:100%;height:100%;z-index:20000}.Center-module_outer__3Rr0H{padding-left:8%;padding-right:8%;margin-left:auto;margin-right:auto;max-width:var(--section-max-width,none)}.Center-module_customMargin__1es3t,.Center-module_outer-full__3dknO{padding-left:0;padding-right:0;max-width:none;width:100%}.Center-module_item__1KSs3{--content-margin:8%;--content-max-width:var(--centered-inline-content-max-width,700px);margin-left:auto;margin-right:auto;max-width:var(--content-max-width)}.Center-module_customMargin__1es3t .Center-module_item__1KSs3{max-width:calc(var(--content-margin)*2 + var(--content-max-width))}.Center-module_item-inline-lg__DGjXl{--content-max-width:var(--centered-inline-lg-content-max-width,950px)}.Center-module_item-inline-xl__2McfB{--content-max-width:var(--centered-inline-xl-content-max-width,1200px)}.Center-module_item-inline-full__l-6kG{--content-margin:0;--content-max-width:none;margin-left:0;margin-right:0;max-width:none}.Center-module_clear__jJEap{clear:both}.Center-module_inner-sm__-oQ0E,.Center-module_inner-xs__3FRT8,.Center-module_inner-xxs__1oroz{margin:0 auto}.Center-module_inner-xxs__1oroz{width:30%}.Center-module_inner-xs__3FRT8{width:50%}.Center-module_inner-sm__-oQ0E{width:70%}.Center-module_inner-left__2z9Ea,.Center-module_inner-right__KBkVt{--inlined-float:none;--inlined-margin:0;margin-top:var(--inlined-margin,.375em);margin-bottom:var(--inlined-margin,1em);clear:both;position:relative;z-index:1}.Center-module_inner-sm__-oQ0E,.Center-module_inner-xs__3FRT8,.Center-module_inner-xxs__1oroz{--inlined-margin:auto}.Center-module_inner-left__2z9Ea{float:var(--inlined-float,left);margin-left:var(--inlined-margin,calc(var(--floated-indent) - 1em));margin-right:var(--inlined-margin,1em)}.Center-module_inner-right__KBkVt{float:var(--inlined-float,right);margin-right:var(--inlined-margin,calc(var(--floated-indent) - 1em));margin-left:var(--inlined-margin,1em)}.Center-module_inner-xs__3FRT8.Center-module_sideBySide__-YsP0{--inlined-float:initial;--inlined-margin:initial;--floated-indent:25%;clear:none;width:25%}@media (min-width:950px){.Center-module_inner-md__3dLC3.Center-module_inner-left__2z9Ea,.Center-module_inner-md__3dLC3.Center-module_inner-right__KBkVt,.Center-module_inner-sm__-oQ0E.Center-module_inner-left__2z9Ea,.Center-module_inner-sm__-oQ0E.Center-module_inner-right__KBkVt,.Center-module_inner-xs__3FRT8.Center-module_inner-left__2z9Ea,.Center-module_inner-xs__3FRT8.Center-module_inner-right__KBkVt{--inlined-float:initial;--inlined-margin:initial;--floated-indent:-10%;clear:none}.Center-module_inner-xs__3FRT8.Center-module_inner-left__2z9Ea,.Center-module_inner-xs__3FRT8.Center-module_inner-right__KBkVt{width:25%}.Center-module_inner-xs__3FRT8.Center-module_sideBySide__-YsP0{--floated-indent:25%}.Center-module_inner-sm__-oQ0E.Center-module_inner-left__2z9Ea,.Center-module_inner-sm__-oQ0E.Center-module_inner-right__KBkVt{width:40%}.Center-module_inner-md__3dLC3.Center-module_inner-left__2z9Ea,.Center-module_inner-md__3dLC3.Center-module_inner-right__KBkVt{width:60%}}@media (min-width:700px){.Center-module_inner-sm__-oQ0E.Center-module_sideBySide__-YsP0{--inlined-float:initial;--inlined-margin:initial;clear:none;width:40%;--floated-indent:10%}}@media (min-width:1100px){.Center-module_inner-lg__2GQbs.Center-module_inner-left__2z9Ea,.Center-module_inner-lg__2GQbs.Center-module_inner-right__KBkVt{--inlined-float:initial;--inlined-margin:initial;clear:none;width:70%;--floated-indent:-20%}}@media (min-width:1300px){.Center-module_inner-xl__3dOME.Center-module_inner-left__2z9Ea,.Center-module_inner-xl__3dOME.Center-module_inner-right__KBkVt{--inlined-float:initial;--inlined-margin:initial;clear:none;width:80%;--floated-indent:-30%}}.TwoColumn-module_group__3Hg2y{--content-margin-fraction:0.08;--content-margin:calc(var(--content-margin-fraction)*100%);padding-left:var(--content-margin);padding-right:var(--content-margin);margin-left:auto;margin-right:auto;max-width:var(--section-max-width,none)}.TwoColumn-module_group-full__2OT4o{padding-left:0;padding-right:0;max-width:none;width:100%}.TwoColumn-module_box__1Nils{max-width:var(--content-max-width)}.TwoColumn-module_inline__1fPfM{--content-max-width:var(--two-column-inline-content-max-width,500px)}.TwoColumn-module_inline__1fPfM.TwoColumn-module_width-lg__2MD35{--content-max-width:var(--two-column-inline-lg-content-max-width,700px)}.TwoColumn-module_inline__1fPfM.TwoColumn-module_width-xl__3Bxet{--content-max-width:var(--two-column-inline-xl-content-max-width,1200px)}.TwoColumn-module_inline__1fPfM.TwoColumn-module_width-full__1QWYO{--content-margin-fraction:0;--content-max-width:none}.TwoColumn-module_restrict-sm__2rKty,.TwoColumn-module_restrict-xs__AOezq,.TwoColumn-module_restrict-xxs__6il-H{margin:0 auto}.TwoColumn-module_restrict-xxs__6il-H{width:30%}.TwoColumn-module_restrict-xs__AOezq{width:50%}.TwoColumn-module_restrict-sm__2rKty{width:70%}.TwoColumn-module_customMargin__o0uxH{--f:calc(1/(1 - 2*var(--content-margin-fraction)));margin-left:calc(-100%*var(--content-margin-fraction)*var(--f));margin-right:calc(-100%*var(--content-margin-fraction)*var(--f));max-width:calc(var(--content-margin)*var(--f)*2 + var(--content-max-width))}.TwoColumn-module_right__Fr52a .TwoColumn-module_inline__1fPfM{margin-left:auto}.TwoColumn-module_sticky__4LCDO{--content-width:var(--theme-two-column-sticky-content-width,25vw);--content-max-width:min(var(--content-width),var(--two-column-sticky-content-max-width,600px));position:sticky;float:right;clear:both;top:33%;width:var(--content-width)}.TwoColumn-module_right__Fr52a .TwoColumn-module_sticky__4LCDO{float:left}.TwoColumn-module_sticky__4LCDO.TwoColumn-module_width-lg__2MD35{--content-width:var(--theme-two-column-sticky-lg-content-width,35vw);--content-max-width:min(var(--content-width),var(--two-column-sticky-lg-content-max-width,700px))}.TwoColumn-module_sticky__4LCDO.TwoColumn-module_width-xl__3Bxet{--content-width:var(--theme-two-column-sticky-xl-content-width,45vw);--content-max-width:min(var(--content-width),var(--two-column-sticky-xl-content-max-width,1000px))}.TwoColumn-module_sticky__4LCDO.TwoColumn-module_customMargin__o0uxH{width:100%}.Foreground-module_Foreground__13ODU{position:relative;z-index:3;box-sizing:border-box;display:flex;flex-direction:column;justify-content:center;padding-top:var(--foreground-padding-top)}.Foreground-module_fullFadeHeight__2p9dx{min-height:51vh}.Foreground-module_fullHeight__1vMXb{min-height:100vh}.Foreground-module_paddingBottom__3OtY4{padding-bottom:3em}@media print{.Foreground-module_Foreground__13ODU{min-height:auto;margin-top:0!important}}.OptOutInfo-module_optOut__2Q3d5{display:flex;background-color:#111;color:#fff;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);transition:opacity .2s ease,visibility .2s linear;pointer-events:auto}.OptOutInfo-module_tooltip__2bpU0{order:0;position:relative;display:none;align-items:center;padding:5px 5px 5px 10px}.OptOutInfo-module_optOut__2Q3d5:focus-within .OptOutInfo-module_tooltip__2bpU0,.OptOutInfo-module_optOut__2Q3d5:hover .OptOutInfo-module_tooltip__2bpU0{display:flex}.OptOutInfo-module_tooltip__2bpU0 a{color:currentColor}.OptOutInfo-module_icon__1kL6Q{order:1;position:relative}.OptOutInfo-module_icon__1kL6Q svg{fill:#c2c2c2;width:26px;height:26px;margin:7px 7px 5px}.OptOutInfo-module_optOut__2Q3d5{position:absolute;right:-15px;bottom:25%}.OptOutInfo-module_optOut__2Q3d5.OptOutInfo-module_full__s_Ono{right:0}.ZoomableImage-module_full__1YJoO{height:100%;width:100%}.ZoomableImage-module_container__RTuPI{height:100%}.ZoomableImage-module_img__3Vnst{max-width:100%;height:auto;visibility:hidden}.ZoomableImage-module_visible__2ez0D{visibility:visible}.FullscreenIndicator-module_indicator__2Jl_-{pointer-events:none;visibility:hidden}.FullscreenIndicator-module_visible__2ywsZ{visibility:visible}.FullscreenIndicator-module_icon__2Ddof,.FullscreenIndicator-module_icons__3-Xm6,.FullscreenIndicator-module_text__3wCW3{position:absolute;top:50%;left:50%}.FullscreenIndicator-module_text__3wCW3{transform:translate(-50%,-50%);font-weight:700;font-size:25px;text-shadow:0 0 5px rgba(0,0,0,.8);margin-top:-3px;margin-left:3px}.FullscreenIndicator-module_icons__3-Xm6{-webkit-animation:FullscreenIndicator-module_pulse__1qujU 4s ease infinite;animation:FullscreenIndicator-module_pulse__1qujU 4s ease infinite}.FullscreenIndicator-module_icon__2Ddof:before{content:" ";position:absolute;top:50%;left:50%;width:45px;height:45px;transform:translate(-45%,-50%);background:radial-gradient(rgba(0,0,0,.2),transparent 60%);z-index:-1}.FullscreenIndicator-module_iconTopLeft__2u7-j{transform:translate(-50%,-50%) rotate(45deg);margin-left:-40px;margin-top:-40px}.FullscreenIndicator-module_iconTopRight__14nUk{transform:translate(-50%,-50%) rotate(135deg);margin-left:40px;margin-top:-40px}.FullscreenIndicator-module_iconBottomRight__lEtN6{transform:translate(-50%,-50%) rotate(225deg);margin-left:40px;margin-top:40px}.FullscreenIndicator-module_iconBottomLeft__voLm_{transform:translate(-50%,-50%) rotate(315deg);margin-left:-40px;margin-top:40px}@-webkit-keyframes FullscreenIndicator-module_pulse__1qujU{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}@keyframes FullscreenIndicator-module_pulse__1qujU{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}.Fullscreen-module_wrapper__300hJ{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:20000}.PanoramaIndicator-module_indicator__3A90v{pointer-events:none;opacity:0;transition:opacity .2s linear,transform .2s ease}.PanoramaIndicator-module_visible__3LOgm{opacity:1}.PanoramaIndicator-module_arrow__QV1Pd{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.PanoramaIndicator-module_arrowLeft__Jh7GC{margin-left:-50px}.PanoramaIndicator-module_arrowRight__ZZBtO{margin-left:50px}.PanoramaIndicator-module_arrowLeft__Jh7GC div{-webkit-animation:PanoramaIndicator-module_nudgeLeft__IU_Iy 4s ease infinite;animation:PanoramaIndicator-module_nudgeLeft__IU_Iy 4s ease infinite}.PanoramaIndicator-module_arrowRight__ZZBtO div{-webkit-animation:PanoramaIndicator-module_nudgeRight__3XzNu 4s ease infinite;animation:PanoramaIndicator-module_nudgeRight__3XzNu 4s ease infinite}.PanoramaIndicator-module_text__2FzUy{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-weight:700;font-size:30px;text-shadow:0 0 5px rgba(0,0,0,.8);margin-top:-3px;margin-left:3px}.PanoramaIndicator-module_indicator__3A90v svg{transition:transform .2s ease}:hover>.PanoramaIndicator-module_indicator__3A90v svg{transform:scale(1.2)}.PanoramaIndicator-module_arrow__QV1Pd div:before{content:" ";position:absolute;top:50%;left:50%;width:30px;height:30px;transform:translate(-50%,-50%);background:radial-gradient(rgba(0,0,0,.3),transparent 60%);z-index:-1}@-webkit-keyframes PanoramaIndicator-module_nudgeLeft__IU_Iy{50%{transform:translateX(-10px)}}@keyframes PanoramaIndicator-module_nudgeLeft__IU_Iy{50%{transform:translateX(-10px)}}@-webkit-keyframes PanoramaIndicator-module_nudgeRight__3XzNu{50%{transform:translateX(10px)}}@keyframes PanoramaIndicator-module_nudgeRight__3XzNu{50%{transform:translateX(10px)}}.ContentElement-module_missing__2_1j9{color:#000;background-color:#fff;border-left:5px solid #f44336;padding:.5em;margin:1em 0 0}.SwipeToClose-module_inner__NOg1v,.SwipeToClose-module_outer__1fl2h{height:100%}.CardBox-module_content__36v7J{position:relative}@media print{.CardBox-module_wrapper__3vnaH{padding-top:0!important}}.InvisibleBoxWrapper-module_start__F1nZ7{margin-top:1.375em}.InvisibleBoxWrapper-module_end__nphD-{margin-bottom:1.375em}.GradientShadow-module_dynamic__2v2JU,.GradientShadow-module_static__rXNpZ{position:absolute;top:0;left:0;width:100%;z-index:1;transition:opacity 1s ease;will-change:opacity}.GradientShadow-module_static__rXNpZ{max-width:var(--zero-if-motif-intersecting)}.GradientShadow-module_dynamic__2v2JU{max-width:var(--zero-if-two-column)}.GradientShadow-module_align-left__3qcNM.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-right__3iXZs.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ{background:linear-gradient(90deg,#000 0,transparent)}@media (min-width:950px){.GradientShadow-module_align-right__3iXZs.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ{background:linear-gradient(270deg,#000 0,transparent)}}.GradientShadow-module_align-center__2C7cl.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-centerRagged__2-iv8.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ,.GradientShadow-module_dark__1YuV5 .GradientShadow-module_dynamic__2v2JU{background:rgba(0,0,0,.9)}.GradientShadow-module_align-left__3qcNM.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-right__3iXZs.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ{background:linear-gradient(90deg,#fff 0,hsla(0,0%,100%,0))}@media (min-width:950px){.GradientShadow-module_align-right__3iXZs.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ{background:linear-gradient(270deg,#fff 0,hsla(0,0%,100%,0))}}.GradientShadow-module_align-center__2C7cl.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-centerRagged__2-iv8.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ,.GradientShadow-module_light__Vn92v .GradientShadow-module_dynamic__2v2JU{background:hsla(0,0%,100%,.9)}@media print{.GradientShadow-module_shadow__2UiDH{display:none}}.colors-module_contentColorScope__LQsqm{--theme-light-content-surface-color:var(--root-light-content-surface-color);--theme-dark-content-surface-color:var(--root-dark-content-surface-color);--theme-light-content-text-color:var(--root-light-content-text-color);--theme-dark-content-text-color:var(--root-dark-content-text-color)}.CardBoxWrapper-module_card__hvRUa{--theme-first-heading-landscape-padding-top:0;position:relative;margin-top:-1px;padding:1px 1.5em 0}.CardBoxWrapper-module_card__hvRUa:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1}.CardBoxWrapper-module_selfClear-both__2hwB7:after,.CardBoxWrapper-module_selfClear-left__2Dd26:after,.CardBoxWrapper-module_selfClear-right__9kgvN:after{content:"";display:block}.CardBoxWrapper-module_selfClear-left__2Dd26:after{clear:left}.CardBoxWrapper-module_selfClear-right__9kgvN:after{clear:right}.CardBoxWrapper-module_selfClear-both__2hwB7:after{clear:both}.CardBoxWrapper-module_cardStart__2NywG{margin-top:3em}.CardBoxWrapper-module_cardEnd__x4Ye6{margin-bottom:3em;padding-bottom:1.5em}.CardBoxWrapper-module_cardStart__2NywG:before{border-top-left-radius:var(--theme-cards-border-radius,15px);border-top-right-radius:var(--theme-cards-border-radius,15px)}.CardBoxWrapper-module_cardEnd__x4Ye6:before{border-bottom-left-radius:var(--theme-cards-border-radius,15px);border-bottom-right-radius:var(--theme-cards-border-radius,15px)}@media screen{.CardBoxWrapper-module_cardBgWhite__xXhg7:before{background-color:var(--theme-light-content-surface-color,#fff)}.CardBoxWrapper-module_cardBgBlack__Ahp3s:before{background-color:var(--theme-dark-content-surface-color,#101010)}.CardBoxWrapper-module_cardBgWhite__xXhg7{color:var(--theme-dark-content-text-color,#222);--content-text-color:var(--theme-dark-content-text-color,#222);--content-link-color:var(--theme-dark-content-link-color,var(--theme-content-link-color,currentColor))}.CardBoxWrapper-module_cardBgBlack__Ahp3s{color:var(--theme-light-content-text-color,#fff);--content-text-color:var(--theme-light-content-text-color,#fff);--content-link-color:var(--theme-light-content-link-color,var(--theme-content-link-color,currentColor))}}.Backdrop-module_Backdrop__1w4UZ{width:100%;z-index:2}.Backdrop-module_noCompositionLayer__33IlH{visibility:hidden}.Backdrop-module_defaultBackground__1YQQL{background-color:#333}.Backdrop-module_effects__lCEXd{height:100%}@media print{.Backdrop-module_Backdrop__1w4UZ{page-break-inside:avoid}.Backdrop-module_Backdrop__1w4UZ,.Backdrop-module_Backdrop__1w4UZ>div,.Backdrop-module_Backdrop__1w4UZ>div>div{position:static!important;height:auto!important}}.Section-module_section__7UvMm{--backdrop-width:var(--backdrop-w);--backdrop-height:var(--backdrop-h);--motif-left:var(--motif-l);--motif-top:var(--motif-t);--motif-width:var(--motif-w);--motif-height:var(--motif-h)}@media (orientation:portrait){.Section-module_orientation__3-m2N{--backdrop-width:var(--mobile-backdrop-w,var(--backdrop-w));--backdrop-height:var(--mobile-backdrop-h,var(--backdrop-h));--motif-left:var(--mobile-motif-l,var(--motif-l));--motif-top:var(--mobile-motif-t,var(--motif-t));--motif-width:var(--mobile-motif-w,var(--motif-w));--motif-height:var(--mobile-motif-h,var(--motif-h))}}.Section-module_section__7UvMm{--motif-right:calc(100 - var(--motif-width) - var(--motif-left));--motif-bottom:calc(100 - var(--motif-height) - var(--motif-top));--motif-center-x:calc(var(--motif-left, 50) + var(--motif-width, 0)/2);--motif-center-y:calc(var(--motif-top, 50) + var(--motif-height, 0)/2);--backdrop-display-width:calc(var(--backdrop-width)*100*var(--vh)/var(--backdrop-height));--motif-display-center-x:calc(var(--motif-center-x)/100*var(--backdrop-display-width));--backdrop-translate-x:min(0px,max(100 * var(--vw) - var(--backdrop-display-width),var(--motif-display-center-x) * -1 + 50 * var(--vw)));--backdrop-positioner-transform:translateX(var(--backdrop-translate-x));--backdrop-positioner-width:var(--backdrop-display-width);--backdrop-positioner-height:100%;--backdrop-display-height:calc(var(--backdrop-height)*100*var(--vw)/var(--backdrop-width));--motif-display-center-y:calc(var(--motif-center-y)/100*var(--backdrop-display-height));--backdrop-translate-y:min(0px,max(calc(100*var(--vh) - var(--backdrop-display-height)),calc(var(--motif-display-center-y)*-1 + 50*var(--vh))));--backdrop-positioner-min-ar-transform:translateY(var(--backdrop-translate-y));--backdrop-positioner-min-ar-width:calc(100*var(--vw));--backdrop-positioner-min-ar-height:var(--backdrop-display-height);--motif-display-height:calc(var(--motif-height)*var(--vh));--motif-display-min-ar-height:calc(var(--motif-height)/100*var(--backdrop-display-height));--motif-display-top:calc(var(--motif-top)*var(--vh) - var(--foreground-padding-top));--motif-display-min-ar-top:calc(var(--motif-top)/100*var(--backdrop-display-height) + var(--backdrop-translate-y) - var(--foreground-padding-top));--motif-display-bottom:calc(var(--motif-bottom)*var(--vh) + var(--foreground-padding-top));--motif-display-min-ar-bottom:calc(var(--motif-bottom)/100*var(--backdrop-display-height) - var(--backdrop-display-height) + 100*var(--vh) - var(--backdrop-translate-y) + var(--foreground-padding-top));--motif-min-height-reveal-conceal:var(--motif-display-height);--motif-min-height-reveal:calc(var(--motif-display-bottom) + var(--motif-display-height));--motif-min-height-scroll-in:calc(var(--motif-display-top) + var(--motif-display-height))}@supports not (transform:translateX(min(0px,5px))){.Section-module_section__7UvMm{--backdrop-translate-x:calc((100*var(--vw) - var(--backdrop-display-width))*var(--motif-center-x)/100);--backdrop-translate-y:calc((100*var(--vh) - var(--backdrop-display-height))*var(--motif-center-y)/100)}}.Section-module_exposeMotifArea__2rsq_{--inline-content-max-width:calc(100*var(--vw));--motif-placeholder-width:calc(100*var(--vw));--motif-placeholder-min-ar-width:calc(100*var(--vw));--remaining-width:calc(100*var(--vw) - var(--inline-content-max-width) - 8*var(--vw) - var(--motif-placeholder-width));--zero-if-two-column:max(0px,var(--remaining-width) * -10000);--zero-if-motif-intersecting:max(0px,(var(--remaining-width) + 1px) * 10000);--motif-padding-fade-in:min(var(--zero-if-two-column),var(--motif-display-top) * 2/3 + var(--motif-display-height));--motif-padding-reveal:min(var(--zero-if-two-column),var(--motif-display-height));--motif-padding-scroll-in:min(var(--zero-if-two-column),var(--motif-display-top) + var(--motif-display-height))}@supports not (transform:translateX(min(0px,5px))){.Section-module_exposeMotifArea__2rsq_{--zero-if-two-column:none;--zero-if-motif-intersecting:0px;--motif-padding-fade-in:calc(var(--motif-display-top)*2/3 + var(--motif-display-height));--motif-padding-reveal:var(--motif-display-height);--motif-padding-scroll-in:calc(var(--motif-display-top) + var(--motif-display-height))}}.Section-module_layout-left__2IqOD,.Section-module_layout-right__3al0b{--inline-content-max-width:var(--two-column-inline-content-max-width,500px)}.Section-module_layout-left__2IqOD{--backdrop-overflow-h:calc(var(--backdrop-display-width) - 100*var(--vw));--motif-placeholder-width:calc((var(--motif-right) + var(--motif-width))/100*var(--backdrop-display-width) - var(--backdrop-overflow-h) - var(--backdrop-translate-x));--motif-placeholder-min-ar-width:calc((var(--motif-right) + var(--motif-width))*var(--vw))}.Section-module_layout-right__3al0b{--motif-placeholder-width:calc((var(--motif-left) + var(--motif-width))/100*var(--backdrop-display-width) + var(--backdrop-translate-x));--motif-placeholder-min-ar-width:calc((var(--motif-left) + var(--motif-width))*var(--vw))}.SectionDecorator-module_wrapper__3sTk3{position:relative}.SectionDecorator-module_selected__1gcmF>section:before{content:"";display:block;position:absolute;border:1px solid;top:5px;left:5px;right:5px;bottom:5px;z-index:9;pointer-events:none}.SectionDecorator-module_transitionSelected__Wklk6>section:before{content:"";position:absolute;display:block;top:0;width:100%;border-top:2px dotted #fff;z-index:9;background-color:#555;opacity:.7}.SectionDecorator-module_controls__LVEJG{position:absolute;top:-33px;right:0;height:100%;width:50px;padding-left:20px;z-index:10;display:none}.SectionDecorator-module_selected__1gcmF .SectionDecorator-module_controls__LVEJG,.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_controls__LVEJG{display:block}.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_transitionToolbar-after__2_DVO{visibility:hidden}.SectionDecorator-module_toolbar__2Va1D{position:absolute;padding:10px 0 10px 10px;z-index:10;overflow:hidden}.SectionDecorator-module_transitionToolbar-before__KipOO{top:0}.SectionDecorator-module_transitionToolbar-after__2_DVO{bottom:-63px}.ActionButton-module_button__8gy6J{position:absolute;z-index:10;border:0;text-align:center;padding:8px;color:rgba(0,0,0,.8);background:#fff;border-radius:3px;font-size:13px;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.ActionButton-module_button__8gy6J:focus,.ActionButton-module_button__8gy6J:hover{color:#000}.ActionButton-module_button__8gy6J svg{fill:currentColor;vertical-align:bottom;margin-right:8px}.ActionButton-module_position-outside__1E_lp{top:calc(100% + .3em);right:-.8em}.ActionButton-module_position-outsideIndented__3vf-7{top:calc(100% + .3em);right:.5em}.ActionButton-module_position-inside__28_gp{bottom:.5em;right:.5em}.ContentElementMargin-module_wrapper__20kIk{margin:1em 0 0}.index-module_newLine__1QnIs,.index-module_shy__1E2-J [data-slate-string]{position:relative}.index-module_selected__1U9ro.index-module_manualHyphens__16b2t .index-module_shy__1E2-J [data-slate-string]:before{content:" ";position:absolute;display:block;border:5px solid transparent;border-bottom-color:currentcolor;width:0;height:0;bottom:7px;left:-5px;opacity:.7}.index-module_newLine__1QnIs:before{content:"\21B5";position:absolute;display:block;font-size:13px;font-weight:400;bottom:2px;left:2px;opacity:0}.index-module_selected__1U9ro .index-module_newLine__1QnIs:before{opacity:.7}.index-module_shy__1E2-J{overflow-wrap:normal}.index-module_container__3dD9z{position:relative}.index-module_shy__KgWjc{overflow-wrap:normal}.index-module_shy__KgWjc [data-slate-string]{position:relative}.index-module_selected__mE58y .index-module_shy__KgWjc [data-slate-string]:before{content:" ";position:absolute;display:block;border:5px solid transparent;border-bottom-color:currentcolor;width:0;height:0;bottom:1px;left:-5px;opacity:.7}.index-module_hoveringToolbarContainer__3xVEz{position:relative}.index-module_hoveringToolbar__31Xpd{position:absolute;z-index:2;top:-10000px;left:-10000px;opacity:0;white-space:nowrap}.index-module_selection__3dUiD{display:none;position:absolute;z-index:1;width:100%;pointer-events:none}.index-module_linkTooltip__36m1K{background-color:#222;color:#fff;border-radius:4px;font-family:Helvetica,Arial,"Sans-Serif";font-size:13px;line-height:1;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.index-module_linkTooltip__36m1K:before{content:"";display:block;position:absolute;left:20px;border:4px solid transparent}.index-module_linkTooltip-below__1wvl7:before{bottom:100%;border-bottom:4px solid #222}.index-module_linkTooltip-above__P3YfD:before{top:100%;border-top:4px solid #222}.index-module_linkTooltip__36m1K>a,.index-module_linkTooltip__36m1K>span{color:#fff;background-color:transparent;border:0;display:inline-block;padding:10px}.index-module_linkTooltip__36m1K>a svg{padding-left:7px}.index-module_linkTooltipThumbnail__2v-cf{width:200px;height:120px;position:relative;margin:5px}.index-module_linkTooltipThumbnailClickMask__2Z3ff{position:absolute;top:0;left:0;bottom:0;right:0}.index-module_linkTooltipNewTab__4tnLF{opacity:.7;padding:0 10px 10px;text-decoration:none}.index-module_linkTooltipChapterNumber__2CsQA{font-weight:700}.SelectionRect-module_main__3AOhG{position:relative}.SelectionRect-module_main__3AOhG:after,.SelectionRect-module_main__3AOhG:before{content:"";position:absolute;top:-.5em;left:-.5em;right:-.5em;bottom:-.5em;pointer-events:none;opacity:.8}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF):before{top:5px}.SelectionRect-module_full__3tsQF:after,.SelectionRect-module_full__3tsQF:before{left:0;right:0}.SelectionRect-module_selected__1PhM6:before{border-left:1px solid}.SelectionRect-module_selected__1PhM6:after{border-right:1px solid}.SelectionRect-module_toolbar__3nPrd{position:absolute;top:-40px;right:-15px;z-index:2;pointer-events:auto}.SelectionRect-module_insert__w0Tl0{display:none;text-align:center;position:absolute;width:100%;opacity:.8;pointer-events:none;z-index:1}.SelectionRect-module_insertHovered__VTsDD.SelectionRect-module_insert__w0Tl0{opacity:1}.SelectionRect-module_end__3qOoK .SelectionRect-module_insert-after__3FJ4R,.SelectionRect-module_start__3_nAf .SelectionRect-module_insert-before__2Tyq5{display:block}.SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_insert__w0Tl0:before{content:"";position:absolute;top:0;width:calc(50% - 5px);height:0;border-bottom:1px solid}.SelectionRect-module_insert__w0Tl0:before{left:-.5em}.SelectionRect-module_insert__w0Tl0:after{right:-.5em}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF) .SelectionRect-module_insert-before__2Tyq5:before{left:5px;width:calc(50% - 10px - .5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{width:calc(50% - 5px + -.5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{left:0}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after{right:0}.SelectionRect-module_insertButton__1g-ZG{pointer-events:auto;border:0;background:none;color:currentColor;display:inline-block;vertical-align:top;position:relative;top:-9px;padding:2px 10px}.SelectionRect-module_insert-before__2Tyq5{top:-.5em}.SelectionRect-module_insert-after__3FJ4R{top:calc(100% + .5em)}.SelectionRect-module_dragHandle__2vVhP{position:absolute;top:-7px;left:10px;transform:translate(-100%,-50%);z-index:1;visibility:hidden;padding:10px;cursor:move;pointer-events:auto}.SelectionRect-module_selected__1PhM6 .SelectionRect-module_dragHandle__2vVhP{visibility:visible}.SelectionRect-module_full__3tsQF .SelectionRect-module_dragHandle__2vVhP{left:0;top:0;transform:translate(0);background:radial-gradient(rgba(0,0,0,.72),transparent 50%)}.SelectionRect-module_dragHandle__2vVhP svg{display:block;color:currentColor;width:15px;height:15px;opacity:.8}.SelectionRect-module_dragHandle__2vVhP:hover svg{opacity:1}.SelectionRect-module_full__3tsQF .SelectionRect-module_dragHandle__2vVhP svg{color:#fff}.DropTargets-module_target__Z2N2d{position:absolute;height:50%;width:100%;left:-50px;padding-left:50px;padding-bottom:.5em;opacity:.8}.DropTargets-module_target__Z2N2d:before{content:"";position:absolute;display:block;left:50px;right:0}.DropTargets-module_target__Z2N2d.DropTargets-module_isOver__3ksFy:before{border-top:2px solid}.DropTargets-module_before__cAXo1{top:-.5em}.DropTargets-module_before__cAXo1:before{top:-1px}.DropTargets-module_after__2Q8QU{top:50%}.DropTargets-module_after__2Q8QU:before{top:calc(100% - 1px)}.ContentElementInsertButton-module_container__3dvUS{height:0;position:relative;top:1em;opacity:.8;display:flex;justify-content:center}.ContentElementInsertButton-module_hovered__3Pggi{opacity:1}.ContentElementInsertButton-module_container__3dvUS:after,.ContentElementInsertButton-module_container__3dvUS:before{content:"";border-top:1px solid;width:calc(50% - 20px);position:absolute;top:0}.ContentElementInsertButton-module_container__3dvUS:before{left:0}.ContentElementInsertButton-module_container__3dvUS:after{right:0}.ContentElementInsertButton-module_button__2-eE2{border:0;background:none;color:currentColor;position:relative;top:-8px}.Toolbar-module_Toolbar__1INSj{background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);border-radius:3px;overflow:hidden;display:flex;gap:2px}.Toolbar-module_button__de5BW{border:0;background:#fff;padding:10px;opacity:.6}.Toolbar-module_button__de5BW:hover{opacity:1}.Toolbar-module_activeButton__2sOLP{background:#ddd;opacity:1}@media (max-width:460px){.Toolbar-module_collapsible__3sivb .Toolbar-module_button__de5BW{display:none}.Toolbar-module_collapsible__3sivb .Toolbar-module_activeButton__2sOLP,.Toolbar-module_collapsible__3sivb:focus-within .Toolbar-module_button__de5BW,.Toolbar-module_collapsible__3sivb:hover .Toolbar-module_button__de5BW{display:inline-block}}.TextPlaceholder-module_placeholder__sgVwx{pointer-events:none;opacity:.5;height:0}.TextPlaceholder-module_placeholder__sgVwx>div{transform:translateY(-100%)}.DropTargets-module_container__3vudG{position:absolute;top:-.5em;left:-50px;width:100%;height:100%;padding:.5em 0 8px 50px}.DropTargets-module_dropTarget__3mmox{position:absolute;left:0;width:100%;opacity:.8}.DropTargets-module_dropIndicator__2zu4d{position:absolute;left:50px;right:0;border-top:2px solid;opacity:0}.DropTargets-module_isOver__2usWn .DropTargets-module_dropIndicator__2zu4d{opacity:1}.FillColor-module_FillColor__S1uEG{width:100%}@media print{.FillColor-module_FillColor__S1uEG{display:none}}.Positioner-module_wrapper__3iFSg{position:relative;transform:var(--backdrop-positioner-transform);width:var(--backdrop-positioner-width);height:var(--backdrop-positioner-height)}.Picture-module_root__1BCCg{position:absolute;top:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.MotifArea-module_root__1_ACd{position:absolute;background:radial-gradient(transparent,currentColor);z-index:2;opacity:0;-webkit-transform:translateZ(0)}.MotifArea-module_visible__18Kln{opacity:.2}.MotifArea-module_root__2gOCe{left:calc(var(--motif-left)*1%);top:calc(var(--motif-top)*1%);width:calc(var(--motif-width)*1%);height:calc(var(--motif-height)*1%)}.Effects-module_effects__MDZRR{height:100%;filter:var(--filter)}@media (orientation:portrait){.Effects-module_effects__MDZRR{filter:var(--mobile-filter)}}.globalNotices{z-index:100000000;position:fixed;bottom:10px;left:10px}@supports not (old:ie){.unsupported{display:none}}.globalNotices div{background:#fff;padding:20px;max-width:240px;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);font-family:Source Sans Pro;border-top:2px solid #a50e0e;margin-top:10px}:root{--vw:1vw;--vh:1vh;--root-light-content-surface-color:var(--theme-light-content-surface-color,#fff);--root-dark-content-surface-color:var(--theme-dark-content-surface-color,#101010);--root-light-content-text-color:var(--theme-light-content-text-color,#fff);--root-dark-content-text-color:var(--theme-dark-content-text-color,#222)}body{margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.colors-module_contentColorScope__2Zizr{--theme-light-content-surface-color:var(--root-light-content-surface-color);--theme-dark-content-surface-color:var(--root-dark-content-surface-color);--theme-light-content-text-color:var(--root-light-content-text-color);--theme-dark-content-text-color:var(--root-dark-content-text-color)}.Figure-module_root__3FC-x{margin:0}.Figure-module_root__3FC-x>figcaption{padding:3px 10px 5px;background-color:var(--theme-light-content-surface-color,#fff);color:var(--theme-dark-content-text-color,#222)}.Figure-module_root__3FC-x>figcaption p{margin:0}.Figure-module_root__3FC-x>figcaption a{color:var(--content-link-color)}.Figure-module_invert___0BJP>figcaption{background-color:var(--theme-dark-content-surface-color,#101010);color:var(--theme-light-content-text-color,#fff)}.ContentElementBox-module_wrapper__3wZgP{overflow:hidden;border-radius:var(--theme-content-element-box-border-radius)}.Waveform-module_container__1Dxdv{position:relative;z-index:1;width:100%;min-height:140px;height:100%}.Waveform-module_clickMask__3LYAT{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer}.Waveform-module_menuBar__342n-{position:absolute;bottom:0;right:0;width:100%;height:40px;z-index:2;display:flex;align-items:center;justify-content:flex-end}.Waveform-module_timeDisplay__1v4Tl{position:relative;bottom:20px}.Waveform-module_playControl__QWTsJ{color:#fff;z-index:1;position:absolute;bottom:78px;left:30px}.Waveform-module_playControl__QWTsJ svg{transform:scale(2)}.Waveform-module_waveWrapper__3gamc{position:absolute;bottom:48px;width:98%;margin:0 1%;height:90px;z-index:1}.TimeDisplay-module_timeDisplay__2UwqM{margin:0 2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.TimeDisplay-module_time__li1ZU{line-height:24px;font-size:15px;padding:0 4px;color:currentColor}.MenuBarButton-module_icon__2h8__{width:25px;height:25px;fill:currentColor}.MenuBarButton-module_subMenuItemAnnotation__32Quc{color:red;font-size:70%;vertical-align:5px;padding-left:3px}.MenuBarButton-module_subMenu__f-E-X{visibility:hidden;opacity:0;pointer-events:none;transition:opacity .5s,visibility .5s;position:absolute;right:0;bottom:39px;margin:0;padding:5px;background-color:rgba(17,17,17,.9);border-radius:2px}.MenuBarButton-module_subMenuExpanded__2UvkJ .MenuBarButton-module_subMenu__f-E-X{visibility:visible;opacity:1;pointer-events:auto;transition:none}.MenuBarButton-module_subMenuItem__1pyn_{position:relative;list-style:none}.MenuBarButton-module_subMenuItemIcon__3iaB-{position:absolute;top:8px;left:5px;width:12px;height:12px;fill:#fff}.MenuBarButton-module_subMenuItemButton__2QnUz{width:100%;color:#fff;cursor:pointer;white-space:nowrap}button.MenuBarButton-module_subMenuItemButton__2QnUz{padding:5px 10px 5px 25px}.ControlBar-module_container__1GH64{position:relative;height:100%}.ControlBar-module_transparent__eS4af{opacity:0}.ControlBar-module_lightBackground__3-tGf{background:hsla(0,0%,100%,.2)}.ControlBar-module_darkBackground__31Wv7{background:rgba(0,0,0,.2)}.ControlBar-module_controlBarContainer__1cxRO{width:100%;display:flex;align-items:center;transition:opacity .2s ease}.ControlBar-module_inset__JvBh9{position:absolute;bottom:0;color:#fff;background:linear-gradient(0deg,rgba(0,0,0,.8),transparent)}.ControlBar-module_button___4aXE{width:40px;height:40px;margin:0 2px;display:flex;align-items:center;justify-content:center;color:currentColor;cursor:pointer}.ControlBar-module_button___4aXE svg{fill:currentColor;width:30px;height:30px}.utils-module_clip__34eot{-webkit-clip-path:polygon(0 0,100% 0,100% 110%,0 110%);clip-path:polygon(0 0,100% 0,100% 110%,0 110%)}.utils-module_unstyledButton__3rgne{border:0;padding:0;background-color:transparent;text-align:initial}.BigPlayPauseButton-module_container__19sKj{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.BigPlayPauseButton-module_pointerCursor__2A55P{cursor:pointer}.BigPlayPauseButton-module_hideCursor__2Hyys{cursor:none}.BigPlayPauseButton-module_button__10g4Q{background:radial-gradient(rgba(0,0,0,.5),transparent 60%);width:64px;height:64px;display:flex;align-items:center;justify-content:center;-webkit-animation-duration:.7s;animation-duration:.7s;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.BigPlayPauseButton-module_button__10g4Q svg{fill:#fff;width:56px;height:56px}.BigPlayPauseButton-module_hidden__1KUzr{opacity:0}.BigPlayPauseButton-module_animated__1MMNq{-webkit-animation-name:BigPlayPauseButton-module_fadeOut__2vcA_;animation-name:BigPlayPauseButton-module_fadeOut__2vcA_}.BigPlayPauseButton-module_fadeIn__1Ge1-{-webkit-animation-name:BigPlayPauseButton-module_fadeIn__1Ge1-;animation-name:BigPlayPauseButton-module_fadeIn__1Ge1-}@-webkit-keyframes BigPlayPauseButton-module_fadeOut__2vcA_{to{opacity:0;transform:scale(1.5)}}@keyframes BigPlayPauseButton-module_fadeOut__2vcA_{to{opacity:0;transform:scale(1.5)}}@-webkit-keyframes BigPlayPauseButton-module_fadeIn__1Ge1-{0%{opacity:0;transform:scale(1.3)}}@keyframes BigPlayPauseButton-module_fadeIn__1Ge1-{0%{opacity:0;transform:scale(1.3)}}.ProgressIndicators-module_container__1QiQJ{flex-grow:1}.ProgressIndicators-module_wrapper__2PCVv{margin:0 10px;position:relative}.ProgressIndicators-module_draggable__1iAE8{height:32px;padding:13px 0;box-sizing:border-box;cursor:pointer}.ProgressIndicators-module_bars__2-ddd{position:relative;height:6px;border-radius:3.5px}.ProgressIndicators-module_progressBar__2PYn-{position:absolute;left:0;height:6px;border-radius:2.5px;background:currentColor}.ProgressIndicators-module_background__-x5f_{opacity:.1;width:100%}.ProgressIndicators-module_loadingProgressBar__YD2GH{opacity:.1}.ProgressIndicators-module_sliderHandle__3ArIf{width:14px;height:14px;margin-left:-6.5px;border-radius:6.5px;position:absolute;top:-4px;background:currentColor;opacity:0;transition:opacity .1s}.ProgressIndicators-module_container__1QiQJ:hover .ProgressIndicators-module_sliderHandle__3ArIf,.ProgressIndicators-module_dragging__3yY3t .ProgressIndicators-module_sliderHandle__3ArIf{opacity:1}.FitViewport-module_container__-awVj{width:100%;margin:0 auto}.FitViewport-module_content__1_K5a{position:relative}.FitViewport-module_inner__3psd1{position:absolute;top:0;left:0;right:0;bottom:0}.FitViewport-module_opaque__3EE3o .FitViewport-module_inner__3psd1{background-color:#000;color:#fff}@media print{.FitViewport-module_container__-awVj{page-break-inside:avoid}}.Tooltip-module_container__3V63U{position:relative;display:inline-block}.Tooltip-module_bubble__FIL1C{position:absolute;top:100%;left:50%;opacity:0;visibility:hidden;z-index:1;border-radius:5px;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);font-size:13px;width:180px;transform-origin:50% 0;transform:translateX(-50%);transition:visibility .1s linear,opacity .1s linear}.Tooltip-module_container__3V63U:focus-within .Tooltip-module_bubble__FIL1C,.Tooltip-module_fixed__3NGyG .Tooltip-module_bubble__FIL1C,.Tooltip-module_openOnHover__1EeI5:hover .Tooltip-module_bubble__FIL1C{-webkit-animation:Tooltip-module_fadeIn__3g9QH .1s ease-out 0s 1 alternate;animation:Tooltip-module_fadeIn__3g9QH .1s ease-out 0s 1 alternate;opacity:1;visibility:visible}.Tooltip-module_openOnHover__1EeI5 .Tooltip-module_bubble__FIL1C{pointer-events:none}@-webkit-keyframes Tooltip-module_fadeIn__3g9QH{0%{transform:translateX(-50%) scale(.9)}to{transform:translateX(-50%) scale(1)}}@keyframes Tooltip-module_fadeIn__3g9QH{0%{transform:translateX(-50%) scale(.9)}to{transform:translateX(-50%) scale(1)}}.Tooltip-module_inner__E2hsp{position:relative;z-index:2;background:var(--theme-widget-surface-color);color:var(--theme-widget-on-surface-color);border-radius:5px;padding:10px}.Tooltip-module_highlight__2NpuQ .Tooltip-module_inner__E2hsp{border-bottom:3px solid var(--theme-accent-color)}.Tooltip-module_arrow__3LxXo{position:absolute;width:5px;height:5px;background:var(--theme-widget-surface-color);box-shadow:1px 1px 3px 0 rgba(0,0,0,.2),1px 1px 4px 0 rgba(0,0,0,.14),0 0 8px 0 rgba(0,0,0,.12);border:4px solid transparent;z-index:1;transform:translateX(-50%) translateY(50%) rotate(45deg);bottom:100%;left:50%}