pageflow 15.7.1 → 15.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (137) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +103 -216
  3. data/README.md +1 -9
  4. data/Rakefile +4 -1
  5. data/admins/pageflow/entry.rb +32 -6
  6. data/admins/pageflow/user.rb +7 -0
  7. data/app/assets/javascripts/pageflow/admin/entries.js +40 -0
  8. data/app/assets/stylesheets/pageflow/admin/permalink_input.scss +65 -0
  9. data/app/assets/stylesheets/pageflow/admin.scss +1 -0
  10. data/app/assets/stylesheets/pageflow/editor/base.scss +2 -6
  11. data/app/assets/stylesheets/pageflow/editor/dialogs.scss +2 -0
  12. data/app/assets/stylesheets/pageflow/editor/drop_down_button.scss +9 -0
  13. data/app/assets/stylesheets/pageflow/editor/info_box.scss +13 -3
  14. data/app/assets/stylesheets/pageflow/mixins/buttons.scss +1 -0
  15. data/app/assets/stylesheets/pageflow/page.scss +0 -2
  16. data/app/assets/stylesheets/pageflow/themes/default/page.scss +1 -1
  17. data/app/assets/stylesheets/pageflow/ui/forms.scss +4 -1
  18. data/app/controllers/pageflow/editor/file_import_controller.rb +32 -42
  19. data/app/controllers/pageflow/entries_controller.rb +25 -1
  20. data/app/helpers/pageflow/admin/permalinks_helper.rb +15 -0
  21. data/app/helpers/pageflow/entries_helper.rb +9 -1
  22. data/app/helpers/pageflow/themings_helper.rb +1 -1
  23. data/app/inputs/pageflow_permalink_input.rb +47 -0
  24. data/app/models/concerns/pageflow/permalinkable.rb +12 -0
  25. data/app/models/concerns/pageflow/reusable_file.rb +5 -0
  26. data/app/models/concerns/pageflow/uploadable_file.rb +4 -0
  27. data/app/models/pageflow/customized_theme.rb +4 -2
  28. data/app/models/pageflow/entry.rb +5 -0
  29. data/app/models/pageflow/entry_at_revision.rb +2 -1
  30. data/app/models/pageflow/entry_duplicate.rb +7 -0
  31. data/app/models/pageflow/image_file_url_templates.rb +2 -2
  32. data/app/models/pageflow/permalink.rb +39 -0
  33. data/app/models/pageflow/permalink_directory.rb +10 -0
  34. data/app/models/pageflow/published_entry.rb +17 -0
  35. data/app/models/pageflow/revision.rb +1 -1
  36. data/app/models/pageflow/theme_customization_file.rb +6 -1
  37. data/app/models/pageflow/theming.rb +1 -0
  38. data/app/views/admin/entries/_form.html.erb +9 -1
  39. data/app/views/admin/entries/_permalink_inputs.html.erb +6 -0
  40. data/app/views/admin/entries/permalink_inputs.html.erb +7 -0
  41. data/app/views/pageflow/editor/file_import/start_import_job.json.jbuilder +10 -0
  42. data/app/views/pageflow/files/_file.json.jbuilder +1 -0
  43. data/config/initializers/mime_types.rb +1 -0
  44. data/config/routes.rb +8 -5
  45. data/db/migrate/20221024100724_create_pageflow_permalink_directories.rb +10 -0
  46. data/db/migrate/20221025074049_add_permalink_attributes_to_entries.rb +5 -0
  47. data/db/migrate/20221027065022_create_pageflow_permalinks.rb +12 -0
  48. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/editor.js +166 -169
  49. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/frontend.js +44 -2
  50. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/react-client.js +5 -5
  51. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/react-server.js +1 -1
  52. data/entry_types/paged/config/initializers/features.rb +2 -0
  53. data/entry_types/paged/config/locales/{new/help.de.yml → de.yml} +74 -65
  54. data/entry_types/paged/config/locales/{new/help.en.yml → en.yml} +66 -56
  55. data/entry_types/scrolled/app/helpers/pageflow_scrolled/favicon_helper.rb +39 -13
  56. data/entry_types/scrolled/app/helpers/pageflow_scrolled/generated_media_queries_helper.rb +55 -0
  57. data/entry_types/scrolled/app/helpers/pageflow_scrolled/themes_helper.rb +6 -2
  58. data/entry_types/scrolled/app/views/pageflow_scrolled/editor/entries/_head.html.erb +2 -0
  59. data/entry_types/scrolled/app/views/pageflow_scrolled/entries/_manifest.json.jbuilder +16 -0
  60. data/entry_types/scrolled/app/views/pageflow_scrolled/entries/show.html.erb +9 -3
  61. data/entry_types/scrolled/app/views/pageflow_scrolled/favicons/_entry.html.erb +16 -10
  62. data/entry_types/scrolled/config/locales/de.yml +265 -76
  63. data/entry_types/scrolled/config/locales/en.yml +266 -77
  64. data/entry_types/scrolled/lib/pageflow_scrolled/configuration.rb +3 -3
  65. data/entry_types/scrolled/lib/pageflow_scrolled/plugin.rb +14 -0
  66. data/entry_types/scrolled/lib/pageflow_scrolled/react_widget_type.rb +1 -1
  67. data/entry_types/scrolled/lib/pageflow_scrolled/web_app_manifest.rb +11 -0
  68. data/entry_types/scrolled/lib/pageflow_scrolled.rb +39 -1
  69. data/entry_types/scrolled/lib/tasks/pageflow_scrolled/storybook.rake +3 -2
  70. data/entry_types/scrolled/package/contentElements-editor.js +124 -38
  71. data/entry_types/scrolled/package/contentElements-frontend.css +1 -1
  72. data/entry_types/scrolled/package/contentElements-frontend.js +321 -27
  73. data/entry_types/scrolled/package/editor.js +1345 -739
  74. data/entry_types/scrolled/package/frontend/EditableInlineText.module-c6672f27.js +5314 -0
  75. data/entry_types/scrolled/package/frontend/{PhonePlatformContext-9fb97827.js → PhonePlatformContext-22e65f92.js} +40 -4
  76. data/entry_types/scrolled/package/frontend/{Viewer-e2290ea0.js → Viewer-6b05522f.js} +6 -40
  77. data/entry_types/scrolled/package/frontend/arrowRight-7e3d9dd5.js +42 -0
  78. data/entry_types/scrolled/package/frontend/{components-6ab26015.js → components-487daafa.js} +546 -361
  79. data/entry_types/scrolled/package/frontend/index.css +1 -1
  80. data/entry_types/scrolled/package/frontend/index.js +197 -3674
  81. data/entry_types/scrolled/package/package.json +3 -2
  82. data/entry_types/scrolled/package/testHelpers.js +12 -2
  83. data/entry_types/scrolled/package/widgets/defaultNavigation.css +1 -1
  84. data/entry_types/scrolled/package/widgets/defaultNavigation.js +35 -32
  85. data/entry_types/scrolled/spec/fixtures/image.ico +0 -0
  86. data/lib/pageflow/entry_type.rb +6 -2
  87. data/lib/pageflow/version.rb +1 -1
  88. data/package/editor.js +122 -149
  89. data/package/frontend.js +19 -2
  90. data/package/testHelpers.js +39 -6
  91. data/spec/factories/entries.rb +17 -0
  92. data/spec/factories/permalink_directory.rb +6 -0
  93. data/spec/factories/permalinks.rb +4 -0
  94. data/spec/factories/published_entries.rb +2 -0
  95. metadata +31 -52
  96. data/app/assets/javascripts/pageflow/dist/editor.js +0 -11890
  97. data/app/assets/javascripts/pageflow/dist/frontend.js +0 -5800
  98. data/app/assets/javascripts/pageflow/dist/react-client.js +0 -22
  99. data/app/assets/javascripts/pageflow/dist/react-server.js +0 -19
  100. data/entry_types/paged/config/locales/new/video_contain.de.yml +0 -7
  101. data/entry_types/paged/config/locales/new/video_contain.en.yml +0 -7
  102. data/entry_types/scrolled/config/locales/new/before_after_slider.de.yml +0 -8
  103. data/entry_types/scrolled/config/locales/new/before_after_slider.en.yml +0 -8
  104. data/entry_types/scrolled/config/locales/new/center_ragged.de.yml +0 -8
  105. data/entry_types/scrolled/config/locales/new/center_ragged.en.yml +0 -9
  106. data/entry_types/scrolled/config/locales/new/consent.de.yml +0 -25
  107. data/entry_types/scrolled/config/locales/new/consent.en.yml +0 -24
  108. data/entry_types/scrolled/config/locales/new/content_element_categories.de.yml +0 -39
  109. data/entry_types/scrolled/config/locales/new/content_element_categories.en.yml +0 -39
  110. data/entry_types/scrolled/config/locales/new/default_transition.de.yml +0 -14
  111. data/entry_types/scrolled/config/locales/new/default_transition.en.yml +0 -14
  112. data/entry_types/scrolled/config/locales/new/header_line_breaks.de.yml +0 -28
  113. data/entry_types/scrolled/config/locales/new/header_line_breaks.en.yml +0 -27
  114. data/entry_types/scrolled/config/locales/new/header_size.de.yml +0 -17
  115. data/entry_types/scrolled/config/locales/new/header_size.en.yml +0 -17
  116. data/entry_types/scrolled/config/locales/new/iframe_embed.de.yml +0 -39
  117. data/entry_types/scrolled/config/locales/new/iframe_embed.en.yml +0 -39
  118. data/entry_types/scrolled/config/locales/new/inline_loops.de.yml +0 -26
  119. data/entry_types/scrolled/config/locales/new/inline_loops.en.yml +0 -26
  120. data/entry_types/scrolled/config/locales/new/portrait_inline_image.de.yml +0 -9
  121. data/entry_types/scrolled/config/locales/new/portrait_inline_image.en.yml +0 -9
  122. data/entry_types/scrolled/config/locales/new/section_width.de.yml +0 -10
  123. data/entry_types/scrolled/config/locales/new/section_width.en.yml +0 -10
  124. data/entry_types/scrolled/config/locales/new/typography_variants.de.yml +0 -7
  125. data/entry_types/scrolled/config/locales/new/typography_variants.en.yml +0 -7
  126. data/entry_types/scrolled/config/locales/new/video_embed_poster.de.yml +0 -8
  127. data/entry_types/scrolled/config/locales/new/video_embed_poster.en.yml +0 -8
  128. data/entry_types/scrolled/config/locales/new/waveform_styles.de.yml +0 -11
  129. data/entry_types/scrolled/config/locales/new/waveform_styles.en.yml +0 -12
  130. data/entry_types/scrolled/config/locales/new/widgets.de.yml +0 -6
  131. data/entry_types/scrolled/config/locales/new/widgets.en.yml +0 -6
  132. data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/browserconfig.xml +0 -9
  133. data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/mstile-150x150.png +0 -0
  134. data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/safari-pinned-tab.svg +0 -46
  135. data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/site.webmanifest +0 -19
  136. data/entry_types/scrolled/package/frontend/EditableInlineText.module-b9923660.js +0 -993
  137. data/entry_types/scrolled/package/frontend/usePhonePlatform-2857c22b.js +0 -34
@@ -1 +1 @@
1
- .useScrollPositionLifecycle-module_wrapper__1a6Kr{position:relative}.useScrollPositionLifecycle-module_isActiveProbe__3VKB5{position:absolute;top:0;left:0;bottom:2px;width:1px}.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{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}@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}}.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_manualHyphens__r4suO{-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;word-wrap:break-word}.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}.Foreground-module_fullFadeHeight__2p9dx{min-height:51vh}.Foreground-module_fullHeight__1vMXb{min-height:100vh}.Foreground-module_inFirstSection__1r-_i{padding-top:var(--theme-widget-margin-top,58px)}.Foreground-module_paddingBottom__3OtY4{padding-bottom:3em}@media print{.Foreground-module_Foreground__13ODU{min-height:auto;margin-top:0!important}}.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)}}.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)}}.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}.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}}.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}.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}.index-module_container__3dD9z{position:relative}.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;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,.index-module_linkTooltip__36m1K button,.index-module_linkTooltip__36m1K input{color:#fff;background-color:transparent;border:0;display:inline-block;padding:10px}.index-module_linkTooltip__36m1K input{outline:none}.index-module_linkTooltip__36m1K button{border:0;cursor:pointer}.index-module_linkTooltip__36m1K svg{padding-left:7px}.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}.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}}.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}.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;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}.ContentElement-module_missing__2_1j9{color:#000;background-color:#fff;border-left:5px solid #f44336;padding:.5em;margin:1em 0 0}.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}.ContentElementMargin-module_wrapper__20kIk{margin:1em 0 0}.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}.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)}.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}}.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}.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}.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}.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}.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}.Fullscreen-module_root__1N3CI{width:100%;height:100vh;position:relative;overflow:hidden}@media print{.Fullscreen-module_root__1N3CI{height:400px}}.FillColor-module_FillColor__S1uEG{width:100%}@media print{.FillColor-module_FillColor__S1uEG{display:none}}.Image-module_root__1ef3j{background-size:cover;position:absolute;top:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.Backdrop-module_Backdrop__1w4UZ{width:100%;z-index:2}.Backdrop-module_defaultBackground__1YQQL{background-color:#333}@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__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)}.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)}}.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,visibility .5s}.fadeInBgConceal-module_backdrop-below__3E6Uk{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,.fadeInBgFadeOut-module_foreground__Q2vkT{transition:opacity .5s ease,visibility .5s}.fadeInBgFadeOut-module_backdrop-below__2G-Ic .fadeInBgFadeOut-module_backdropInner__IQp87,.fadeInBgFadeOut-module_foreground-above__3pmz9{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,visibility .5s}.fadeInBgFadeOutBg-module_backdrop-below__1rDT6 .fadeInBgFadeOutBg-module_backdropInner__sAnz6,.fadeInBgFadeOutBg-module_boxShadow-above__2bY0E{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,visibility .5s}.fadeInBgScrollOut-module_backdrop-below__2Dbkr{opacity:0;visibility:hidden}.fadeInConceal-module_backdrop__1zaRO{position:absolute;height:100%}.fadeInConceal-module_backdropInner__1AIvq{position:fixed;top:0;height:100vh;width:100%}.fadeInConceal-module_backdrop__1zaRO,.fadeInConceal-module_foreground__3giM9{transition:opacity .5s ease,visibility .5s}.fadeInConceal-module_backdrop-below__AWyQe,.fadeInConceal-module_foreground-below__2z5Op{opacity:0;visibility:hidden}.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,.fadeInFadeOut-module_foreground__1eleZ{transition:opacity .5s ease,visibility .5s}.fadeInFadeOut-module_backdrop-below__1h2I4 .fadeInFadeOut-module_backdropInner__1oRfP,.fadeInFadeOut-module_foreground-above__249wa,.fadeInFadeOut-module_foreground-below__3mE6f{opacity:0;visibility:hidden}.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,.fadeInFadeOutBg-module_foreground__24f_M{transition:opacity .5s ease,visibility .5s}.fadeInFadeOutBg-module_backdrop-below__4Ys_2 .fadeInFadeOutBg-module_backdropInner__3r_bo,.fadeInFadeOutBg-module_boxShadow-above__3T2K5,.fadeInFadeOutBg-module_foreground-below__3pTRc{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}.fadeInScrollOut-module_backdrop__2FhBb,.fadeInScrollOut-module_foreground__3h0EX{transition:opacity .5s ease,visibility .5s}.fadeInScrollOut-module_backdrop-below__3cRLH,.fadeInScrollOut-module_foreground-below__1Jcql{opacity:0;visibility:hidden}.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}.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,visibility 1s}.revealFadeOutBg-module_boxShadow-above__2r4ov{opacity:0;visibility:hidden}.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%}.scrollInConceal-module_backdrop__2OJJC,.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,visibility .5s}.scrollInFadeOutBg-module_boxShadow-above__3kfau{opacity:0;visibility:hidden}.scrollInScrollOut-module_backdrop__XzCge{position:sticky;top:0;height:100vh}.scrollInScrollOut-module_foreground__1yyY8{margin-top:-100vh}.GradientShadow-module_shadow__2UiDH{position:absolute;top:0;left:0;width:100%;z-index:1;transition:opacity 1s ease;will-change:opacity}.GradientShadow-module_align-left__3qcNM .GradientShadow-module_shadowBlack__cSr14,.GradientShadow-module_align-right__3iXZs .GradientShadow-module_shadowBlack__cSr14{background:linear-gradient(90deg,#000 0,transparent)}@media (min-width:950px){.GradientShadow-module_align-right__3iXZs .GradientShadow-module_shadowBlack__cSr14{background:linear-gradient(270deg,#000 0,transparent)}}.GradientShadow-module_align-center__2C7cl .GradientShadow-module_shadowBlack__cSr14,.GradientShadow-module_align-centerRagged__2-iv8 .GradientShadow-module_shadowBlack__cSr14,.GradientShadow-module_intersecting__h6vpz .GradientShadow-module_shadowBlack__cSr14{background:rgba(0,0,0,.9)}.GradientShadow-module_align-left__3qcNM .GradientShadow-module_shadowWhite__3Xw2q,.GradientShadow-module_align-right__3iXZs .GradientShadow-module_shadowWhite__3Xw2q{background:linear-gradient(90deg,#fff 0,hsla(0,0%,100%,0))}@media (min-width:950px){.GradientShadow-module_align-right__3iXZs .GradientShadow-module_shadowWhite__3Xw2q{background:linear-gradient(270deg,#fff 0,hsla(0,0%,100%,0))}}.GradientShadow-module_align-center__2C7cl .GradientShadow-module_shadowWhite__3Xw2q,.GradientShadow-module_align-centerRagged__2-iv8 .GradientShadow-module_shadowWhite__3Xw2q,.GradientShadow-module_intersecting__h6vpz .GradientShadow-module_shadowWhite__3Xw2q{background:hsla(0,0%,100%,.9)}@media print{.GradientShadow-module_shadow__2UiDH{display:none}}.InvisibleBoxWrapper-module_start__F1nZ7{margin-top:1.375em}.InvisibleBoxWrapper-module_end__nphD-{margin-bottom:1.375em}.GradientBox-module_content__96lDk{position:relative}.GradientBox-module_shadow__2XilX{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none}.GradientBox-module_long__10s6v .GradientBox-module_shadow__2XilX{bottom:-100vh}.GradientBox-module_gradient__31tJ- .GradientBox-module_withShadow__3mhPR{text-shadow:0 1px 5px #000}.GradientBox-module_gradient__31tJ- .GradientBox-module_shadowDark__3Tv0L{background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.5) 100px,rgba(0,0,0,.5))}.GradientBox-module_gradient__31tJ- .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}}.CardBox-module_content__36v7J{position:relative}@media print{.CardBox-module_wrapper__3vnaH{padding-top:0!important}}.CardBoxWrapper-module_card__hvRUa{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:15px;border-top-right-radius:15px}.CardBoxWrapper-module_cardEnd__x4Ye6:before{border-bottom-left-radius:15px;border-bottom-right-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)}.CardBoxWrapper-module_cardBgBlack__Ahp3s{color:var(--theme-light-content-text-color,#fff)}}.Content-module_Content__m7urk{font-family:var(--theme-entry-font-family)}@media screen{.Content-module_Content__m7urk{background-color:#000;color:#fff}}body{margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[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}.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_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}.SectionThumbnail-module_crop__Q1nZj{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%}.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_root__1ef3j{background-size:cover;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}@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}}.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%}.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}.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}}.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}.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}.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}.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}.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}.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}.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}.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}.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%}.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}.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}.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)}}.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}.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}}.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}.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}.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)}}.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)}}.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}.InvisibleBoxWrapper-module_start__F1nZ7{margin-top:1.375em}.InvisibleBoxWrapper-module_end__nphD-{margin-bottom:1.375em}.CardBox-module_content__36v7J{position:relative}@media print{.CardBox-module_wrapper__3vnaH{padding-top:0!important}}.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}}.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))}.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}}.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_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_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}.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}.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)}.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%}