pageflow 17.0.5 → 17.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +362 -35
- data/README.md +0 -1
- data/admins/pageflow/accounts.rb +16 -14
- data/admins/pageflow/entry.rb +68 -20
- data/admins/pageflow/entry_templates.rb +10 -9
- data/admins/pageflow/folder.rb +1 -1
- data/admins/pageflow/membership.rb +4 -4
- data/admins/pageflow/revisions.rb +5 -5
- data/admins/pageflow/site_root_entry.rb +64 -0
- data/admins/pageflow/sites.rb +12 -3
- data/admins/pageflow/translations.rb +75 -0
- data/admins/pageflow/user.rb +21 -35
- data/app/assets/javascripts/pageflow/admin/entries.js +30 -5
- data/app/assets/javascripts/pageflow/dist/ui.js +2865 -257
- data/app/assets/stylesheets/pageflow/admin/entries/index_table.scss +2 -1
- data/app/assets/stylesheets/pageflow/admin/permalink_input.scss +2 -1
- data/app/assets/stylesheets/pageflow/editor/background_positioning.scss +6 -0
- data/app/assets/stylesheets/pageflow/editor/base.scss +2 -0
- data/app/assets/stylesheets/pageflow/editor/drop_down_button.scss +7 -1
- data/app/assets/stylesheets/pageflow/editor/file_meta_data.scss +5 -1
- data/app/assets/stylesheets/pageflow/editor/files.scss +28 -16
- data/app/assets/stylesheets/pageflow/editor/filtered_files.scss +24 -0
- data/app/assets/stylesheets/pageflow/editor/info_box.scss +11 -3
- data/app/assets/stylesheets/pageflow/editor/list.scss +6 -4
- data/app/assets/stylesheets/pageflow/editor/list_search_field.scss +52 -0
- data/app/assets/stylesheets/pageflow/editor/outline.scss +0 -13
- data/app/assets/stylesheets/pageflow/editor/select_button.scss +1 -1
- data/app/assets/stylesheets/pageflow/editor/sortable.scss +12 -0
- data/app/assets/stylesheets/pageflow/mixins/buttons.scss +4 -4
- data/app/assets/stylesheets/pageflow/ui/forms.scss +4 -0
- data/app/assets/stylesheets/pageflow/ui/input/color_input.scss +8 -0
- data/app/assets/stylesheets/pageflow/ui/input/file_name_input.scss +37 -0
- data/app/assets/stylesheets/pageflow/ui/properties.scss +5 -0
- data/app/assets/stylesheets/pageflow/ui.scss +1 -0
- data/app/controllers/concerns/pageflow/controller_delegation.rb +1 -1
- data/app/controllers/concerns/pageflow/edit_locking.rb +17 -10
- data/app/controllers/concerns/pageflow/entry_password_protection.rb +1 -0
- data/app/controllers/concerns/pageflow/public_https_mode.rb +2 -1
- data/app/controllers/concerns/pageflow/quota_verification.rb +5 -4
- data/app/controllers/pageflow/admin/initial_passwords_controller.rb +1 -0
- data/app/controllers/pageflow/application_controller.rb +19 -19
- data/app/controllers/pageflow/chapters_controller.rb +3 -2
- data/app/controllers/pageflow/edit_locks_controller.rb +3 -2
- data/app/controllers/pageflow/editor/encoding_confirmations_controller.rb +1 -0
- data/app/controllers/pageflow/editor/entries_controller.rb +2 -1
- data/app/controllers/pageflow/editor/entry_publications_controller.rb +1 -0
- data/app/controllers/pageflow/editor/file_import_controller.rb +3 -3
- data/app/controllers/pageflow/editor/files_controller.rb +7 -6
- data/app/controllers/pageflow/editor/widgets_controller.rb +1 -0
- data/app/controllers/pageflow/entries_controller.rb +77 -17
- data/app/controllers/pageflow/feeds_controller.rb +1 -1
- data/app/controllers/pageflow/files_controller.rb +1 -0
- data/app/controllers/pageflow/pages_controller.rb +4 -2
- data/app/controllers/pageflow/revisions_controller.rb +2 -1
- data/app/controllers/pageflow/sitemaps_controller.rb +1 -1
- data/app/controllers/pageflow/storylines_controller.rb +1 -0
- data/app/helpers/pageflow/admin/cutoff_modes_helper.rb +12 -0
- data/app/helpers/pageflow/admin/entries_helper.rb +1 -1
- data/app/helpers/pageflow/admin/entry_translations_helper.rb +18 -0
- data/app/helpers/pageflow/admin/features_helper.rb +1 -1
- data/app/helpers/pageflow/admin/form_helper.rb +3 -3
- data/app/helpers/pageflow/admin/locales_helper.rb +10 -2
- data/app/helpers/pageflow/admin/memberships_helper.rb +32 -32
- data/app/helpers/pageflow/admin/revisions_helper.rb +1 -1
- data/app/helpers/pageflow/admin/sites_helper.rb +22 -0
- data/app/helpers/pageflow/admin/users_helper.rb +7 -5
- data/app/helpers/pageflow/admin/widgets_helper.rb +3 -3
- data/app/helpers/pageflow/asset_urls_helper.rb +1 -1
- data/app/helpers/pageflow/audio_files_helper.rb +5 -2
- data/app/helpers/pageflow/background_image_helper.rb +7 -6
- data/app/helpers/pageflow/common_entry_seed_helper.rb +2 -4
- data/app/helpers/pageflow/editor/config_helper.rb +1 -1
- data/app/helpers/pageflow/editor/files_helper.rb +1 -1
- data/app/helpers/pageflow/embed_code_helper.rb +3 -3
- data/app/helpers/pageflow/entries_helper.rb +58 -34
- data/app/helpers/pageflow/entry_json_seed_helper.rb +3 -2
- data/app/helpers/pageflow/feeds_helper.rb +2 -2
- data/app/helpers/pageflow/file_background_images_helper.rb +2 -2
- data/app/helpers/pageflow/file_thumbnails_helper.rb +4 -3
- data/app/helpers/pageflow/files_helper.rb +5 -4
- data/app/helpers/pageflow/folders_helper.rb +8 -5
- data/app/helpers/pageflow/help_entries_helper.rb +2 -2
- data/app/helpers/pageflow/hreflang_links_helper.rb +37 -0
- data/app/helpers/pageflow/info_box_helper.rb +7 -11
- data/app/helpers/pageflow/media_query_helper.rb +3 -3
- data/app/helpers/pageflow/navigation_bar_helper.rb +1 -1
- data/app/helpers/pageflow/overview_helper.rb +1 -1
- data/app/helpers/pageflow/page_types_helper.rb +5 -5
- data/app/helpers/pageflow/pages_helper.rb +29 -15
- data/app/helpers/pageflow/public_i18n_helper.rb +1 -1
- data/app/helpers/pageflow/quota_helper.rb +4 -4
- data/app/helpers/pageflow/render_json_helper.rb +6 -3
- data/app/helpers/pageflow/revision_file_helper.rb +2 -1
- data/app/helpers/pageflow/sites_helper.rb +3 -3
- data/app/helpers/pageflow/social_share_helper.rb +24 -10
- data/app/helpers/pageflow/social_share_links_helper.rb +12 -9
- data/app/helpers/pageflow/structured_data_helper.rb +1 -1
- data/app/helpers/pageflow/stub_page_configuration.rb +7 -3
- data/app/helpers/pageflow/text_direction_helper.rb +1 -1
- data/app/helpers/pageflow/themes_helper.rb +1 -1
- data/app/helpers/pageflow/video_files_helper.rb +29 -13
- data/app/helpers/pageflow/widgets_helper.rb +7 -6
- data/app/inputs/pageflow_permalink_input.rb +3 -2
- data/app/jobs/pageflow/application_job.rb +1 -0
- data/app/jobs/pageflow/entry_export_import/upload_and_publish_file_job.rb +1 -1
- data/app/jobs/pageflow/poll_meta_data_from_zencoder_job.rb +1 -0
- data/app/jobs/pageflow/poll_zencoder_job.rb +3 -2
- data/app/jobs/pageflow/process_image_or_text_track_job.rb +1 -0
- data/app/jobs/pageflow/prune_auto_snapshots_job.rb +1 -0
- data/app/jobs/pageflow/request_meta_data_from_zencoder_job.rb +1 -0
- data/app/jobs/pageflow/submit_file_to_zencoder_job.rb +1 -0
- data/app/mailers/pageflow/user_mailer.rb +1 -0
- data/app/models/concerns/pageflow/auto_generated_perma_id.rb +13 -1
- data/app/models/concerns/pageflow/entry_publication_states.rb +7 -3
- data/app/models/concerns/pageflow/feature_target.rb +8 -4
- data/app/models/concerns/pageflow/output_source.rb +3 -3
- data/app/models/concerns/pageflow/permalinkable.rb +2 -1
- data/app/models/concerns/pageflow/reusable_file.rb +23 -23
- data/app/models/concerns/pageflow/serialization_blacklist.rb +1 -1
- data/app/models/concerns/pageflow/suspendable.rb +5 -3
- data/app/models/concerns/pageflow/theme_referencer.rb +1 -1
- data/app/models/concerns/pageflow/translatable.rb +62 -0
- data/app/models/concerns/pageflow/uploadable_file.rb +6 -6
- data/app/models/pageflow/account.rb +6 -5
- data/app/models/pageflow/account_member_query.rb +1 -1
- data/app/models/pageflow/account_role_query.rb +1 -1
- data/app/models/pageflow/application_query.rb +1 -1
- data/app/models/pageflow/application_record.rb +1 -1
- data/app/models/pageflow/audio_file.rb +4 -4
- data/app/models/pageflow/audio_file_url_templates.rb +1 -1
- data/app/models/pageflow/authentication_token.rb +2 -2
- data/app/models/pageflow/chapter.rb +6 -1
- data/app/models/pageflow/chapter_scaffold.rb +2 -4
- data/app/models/pageflow/cname_site_request_scope.rb +1 -1
- data/app/models/pageflow/customized_theme.rb +6 -6
- data/app/models/pageflow/draft_entry.rb +37 -9
- data/app/models/pageflow/edit_lock.rb +19 -21
- data/app/models/pageflow/encoding_confirmation.rb +2 -2
- data/app/models/pageflow/entries_feed.rb +2 -2
- data/app/models/pageflow/entry.rb +44 -30
- data/app/models/pageflow/entry_at_revision.rb +5 -1
- data/app/models/pageflow/entry_duplicate.rb +8 -5
- data/app/models/pageflow/entry_publication.rb +2 -2
- data/app/models/pageflow/entry_role_query.rb +4 -4
- data/app/models/pageflow/entry_template.rb +4 -4
- data/app/models/pageflow/entry_title_or_account_name_query.rb +2 -2
- data/app/models/pageflow/entry_translation_group.rb +42 -0
- data/app/models/pageflow/file_reuse.rb +2 -2
- data/app/models/pageflow/file_usage.rb +10 -3
- data/app/models/pageflow/folder.rb +2 -2
- data/app/models/pageflow/home_button.rb +7 -7
- data/app/models/pageflow/image_file.rb +20 -5
- data/app/models/pageflow/image_file_url_templates.rb +1 -1
- data/app/models/pageflow/invitation_form.rb +2 -1
- data/app/models/pageflow/managed_user_query.rb +1 -1
- data/app/models/pageflow/membership.rb +5 -5
- data/app/models/pageflow/nested_revision_component_copy.rb +263 -0
- data/app/models/pageflow/null_user.rb +1 -1
- data/app/models/pageflow/overview_button.rb +1 -1
- data/app/models/pageflow/page.rb +7 -3
- data/app/models/pageflow/permalink.rb +23 -2
- data/app/models/pageflow/permalink_directory.rb +7 -0
- data/app/models/pageflow/permalink_redirect.rb +7 -0
- data/app/models/pageflow/positioned_file.rb +5 -5
- data/app/models/pageflow/potential_entry_translations.rb +55 -0
- data/app/models/pageflow/potential_memberships.rb +5 -4
- data/app/models/pageflow/published_entry.rb +62 -11
- data/app/models/pageflow/revision.rb +24 -15
- data/app/models/pageflow/roles.rb +14 -18
- data/app/models/pageflow/site.rb +36 -3
- data/app/models/pageflow/site_root_entry_form.rb +27 -0
- data/app/models/pageflow/sitemaps.rb +10 -1
- data/app/models/pageflow/storyline.rb +5 -2
- data/app/models/pageflow/storyline_scaffold.rb +1 -1
- data/app/models/pageflow/text_track_file.rb +1 -1
- data/app/models/pageflow/text_track_file_url_templates.rb +1 -1
- data/app/models/pageflow/theme_customization_file.rb +3 -2
- data/app/models/pageflow/thumbnail_file_resolver.rb +1 -1
- data/app/models/pageflow/url_template.rb +1 -1
- data/app/models/pageflow/used_file.rb +7 -3
- data/app/models/pageflow/user_name_query.rb +2 -2
- data/app/models/pageflow/video_file.rb +22 -15
- data/app/models/pageflow/video_file_url_templates.rb +6 -4
- data/app/models/pageflow/widget.rb +4 -3
- data/app/models/pageflow/with_file_usage_extension.rb +1 -1
- data/app/models/pageflow/zencoder_attachment.rb +8 -8
- data/app/policies/pageflow/account_policy.rb +3 -1
- data/app/policies/pageflow/admin/admin_only_tab_policy.rb +1 -0
- data/app/policies/pageflow/admin/entry_tab_policy.rb +1 -0
- data/app/policies/pageflow/application_policy.rb +2 -0
- data/app/policies/pageflow/entry_policy.rb +7 -1
- data/app/policies/pageflow/entry_template_policy.rb +2 -1
- data/app/policies/pageflow/file_policy.rb +4 -7
- data/app/policies/pageflow/folder_policy.rb +18 -8
- data/app/policies/pageflow/membership_policy.rb +6 -4
- data/app/policies/pageflow/site_policy.rb +10 -3
- data/app/policies/pageflow/user_policy.rb +6 -4
- data/app/state_machines/pageflow/image_and_text_track_processing_state_machine.rb +3 -2
- data/app/state_machines/pageflow/media_encoding_state_machine.rb +5 -4
- data/app/views/admin/accounts/_entry_template_details.html.arb +2 -2
- data/app/views/admin/entries/_attributes_table.html.arb +6 -5
- data/app/views/admin/entries/_form.html.erb +2 -1
- data/app/views/admin/entries/_permalink_inputs.html.erb +9 -2
- data/app/views/admin/entry_templates/_form.html.erb +1 -3
- data/app/views/admin/site_root_entry/choose.html.erb +19 -0
- data/app/views/admin/sites/_fields.html.erb +14 -1
- data/app/views/admin/translations/_form.html.erb +31 -0
- data/app/views/admin/users/_attributes_table.html.arb +13 -0
- data/app/views/components/pageflow/admin/add_membership_button.rb +13 -12
- data/app/views/components/pageflow/admin/custom_scopes_renderer.rb +1 -0
- data/app/views/components/pageflow/admin/embed_code_field.rb +1 -0
- data/app/views/components/pageflow/admin/embedded_index_table.rb +9 -10
- data/app/views/components/pageflow/admin/entries_tab.rb +1 -0
- data/app/views/components/pageflow/admin/entry_publication_state_indicator.rb +6 -5
- data/app/views/components/pageflow/admin/entry_templates_tab.rb +2 -1
- data/app/views/components/pageflow/admin/entry_translations_tab.rb +102 -0
- data/app/views/components/pageflow/admin/entry_user_badge_list.rb +1 -0
- data/app/views/components/pageflow/admin/extensible_attributes_table.rb +9 -8
- data/app/views/components/pageflow/admin/features_tab.rb +1 -0
- data/app/views/components/pageflow/admin/grouped_folder_list.rb +1 -0
- data/app/views/components/pageflow/admin/icon_link_to.rb +1 -0
- data/app/views/components/pageflow/admin/members_tab.rb +4 -3
- data/app/views/components/pageflow/admin/membership_role_with_tooltip.rb +3 -2
- data/app/views/components/pageflow/admin/revisions_tab.rb +14 -10
- data/app/views/components/pageflow/admin/sites_tab.rb +1 -0
- data/app/views/components/pageflow/admin/tabs_view.rb +1 -0
- data/app/views/components/pageflow/admin/timestamp.rb +6 -5
- data/app/views/components/pageflow/admin/user_account_badge_list.rb +2 -3
- data/app/views/components/pageflow/admin/user_accounts_tab.rb +1 -0
- data/app/views/components/pageflow/admin/user_entries_tab.rb +1 -0
- data/app/views/components/pageflow/admin/users_tab.rb +1 -0
- data/app/views/pageflow/editor/config/_seeds.json.jbuilder +1 -1
- data/app/views/pageflow/editor/entries/index.json.jbuilder +1 -1
- data/app/views/pageflow/editor/entries/show.json.jbuilder +1 -1
- data/app/views/pageflow/editor/entry_publications/check.json.jbuilder +2 -2
- data/app/views/pageflow/editor/files/_file.json.jbuilder +5 -13
- data/app/views/pageflow/editor/files/create.json.jbuilder +1 -1
- data/app/views/pageflow/editor/files/index.json.jbuilder +1 -1
- data/app/views/pageflow/editor/sites/_site.json.jbuilder +1 -0
- data/app/views/pageflow/editor/video_files/_video_file.json.jbuilder +1 -3
- data/app/views/pageflow/entries/share_menu/_bluesky_link.html.erb +8 -0
- data/app/views/pageflow/entries/share_menu/_threads_link.html.erb +8 -0
- data/app/views/pageflow/files/_file.json.jbuilder +3 -3
- data/app/views/pageflow/sitemaps/index.xml.builder +9 -1
- data/app/views/pageflow/social_share/_entry_meta_tags.html.erb +1 -1
- data/app/views/pageflow/social_share/_page_meta_tags.html.erb +1 -1
- data/config/initializers/active_admin_patches.rb +3 -6
- data/config/initializers/admin_resource_tabs.rb +3 -0
- data/config/initializers/paperclip.rb +1 -0
- data/config/initializers/symmetric_encryption.rb +1 -1
- data/config/initializers/zencoder.rb +24 -13
- data/config/locales/de.yml +110 -4
- data/config/locales/en.yml +109 -7
- data/config/routes.rb +15 -13
- data/config/spring.rb +2 -1
- data/db/migrate/20140418225525_setup_schema.rb +2 -2
- data/db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb +2 -2
- data/db/migrate/20190820152900_drop_accounts_themes.rb +2 -1
- data/db/migrate/20191202145757_create_pageflow_scrolled_sections.rb +11 -11
- data/db/migrate/20191202150657_create_pageflow_scrolled_chapters.rb +1 -1
- data/db/migrate/20191202154723_create_pageflow_scrolled_content_elements.rb +9 -9
- data/db/migrate/20191219143450_add_position_to_content_elements.rb +2 -1
- data/db/migrate/20200117133200_change_revision_appearance_option_default_and_null.rb +2 -1
- data/db/migrate/20200122115400_create_pageflow_entry_templates.rb +25 -25
- data/db/migrate/20200206134400_convert_legacy_scrolled_content_element_types.rb +3 -3
- data/db/migrate/20221215120856_associate_entry_templates_with_sites.rb +2 -2
- data/db/migrate/20230120092923_create_other_files.rb +2 -1
- data/db/migrate/20230419083307_create_pageflow_entry_translation_group.rb +9 -0
- data/db/migrate/20240612110434_add_cutoff_mode_name_to_sites.rb +5 -0
- data/db/migrate/20240918084059_create_pageflow_permalink_redirects.rb +14 -0
- data/db/migrate/20250508172234_ensure_scrolled_entries_have_main_storyline.rb +14 -0
- data/db/migrate/20250617090048_add_custom404_entry_to_sites.rb +5 -0
- data/db/migrate/20250617100000_add_perma_id_counter_to_entries.rb +28 -0
- data/db/migrate/20250722174123_add_perma_id_to_chapters.rb +10 -0
- data/db/migrate/20250725080603_add_perma_id_indexes_to_revision_components.rb +13 -0
- data/db/migrate/20250726000000_add_display_name_to_file_usages.rb +5 -0
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/editor.js +3912 -1486
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/frontend.js +468 -1161
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/react-client.js +28125 -22
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/react-server.js +26589 -19
- data/entry_types/paged/app/controllers/pageflow_paged/entries_controller.rb +1 -0
- data/entry_types/paged/app/helpers/pageflow_paged/page_background_asset_helper.rb +1 -1
- data/entry_types/paged/app/helpers/pageflow_paged/third_party_embed_consent_helper.rb +7 -7
- data/entry_types/paged/app/views/pageflow_paged/editor/entries/_seed.json.jbuilder +1 -0
- data/entry_types/paged/app/views/pageflow_paged/entries/show.html.erb +1 -0
- data/entry_types/paged/lib/pageflow_paged/plugin.rb +4 -0
- data/entry_types/paged/lib/pageflow_paged/react/page_type.rb +1 -1
- data/entry_types/paged/lib/pageflow_paged/react/widget_type.rb +3 -3
- data/entry_types/paged/lib/pageflow_paged.rb +1 -1
- data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/chapters_controller.rb +5 -3
- data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/content_elements_controller.rb +2 -2
- data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/sections_controller.rb +2 -2
- data/entry_types/scrolled/app/controllers/pageflow_scrolled/entries_controller.rb +2 -1
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/cache_helper.rb +2 -2
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/entry_json_seed_helper.rb +1 -0
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/seed_html_helper.rb +2 -1
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/entry_json_seed_helper.rb +60 -6
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/packs_helper.rb +16 -2
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/react_server_side_rendering_helper.rb +21 -23
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/themes_helper.rb +16 -1
- data/entry_types/scrolled/app/models/pageflow_scrolled/chapter.rb +15 -14
- data/entry_types/scrolled/app/models/pageflow_scrolled/content_element.rb +12 -0
- data/entry_types/scrolled/app/models/pageflow_scrolled/section.rb +12 -1
- data/entry_types/scrolled/app/models/pageflow_scrolled/storyline.rb +19 -1
- data/entry_types/scrolled/app/views/pageflow_scrolled/editor/entries/_head.html.erb +1 -0
- data/entry_types/scrolled/app/views/pageflow_scrolled/editor/sections/_section_with_content_elements.json.jbuilder +2 -2
- data/entry_types/scrolled/app/views/pageflow_scrolled/entries/show.html.erb +2 -0
- data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_entry.json.jbuilder +17 -9
- data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_entry_translations.json.jbuilder +14 -0
- data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_theme.json.jbuilder +25 -5
- data/entry_types/scrolled/app/views/pageflow_scrolled/storylines/_storyline.json.jbuilder +7 -0
- data/entry_types/scrolled/config/locales/de.yml +614 -45
- data/entry_types/scrolled/config/locales/en.yml +586 -47
- data/entry_types/scrolled/config/routes.rb +18 -8
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/install_generator.rb +11 -11
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/logoDarkVariantDesktop.svg +56 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/logoDarkVariantMobile.svg +22 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/themes_plugin.rb.tt +26 -11
- data/entry_types/scrolled/lib/pageflow_scrolled/additional_packs.rb +27 -8
- data/entry_types/scrolled/lib/pageflow_scrolled/additional_seed_data.rb +1 -1
- data/entry_types/scrolled/lib/pageflow_scrolled/additional_theme_assets.rb +27 -0
- data/entry_types/scrolled/lib/pageflow_scrolled/configuration.rb +16 -4
- data/entry_types/scrolled/lib/pageflow_scrolled/content_element_consent_vendors.rb +1 -1
- data/entry_types/scrolled/lib/pageflow_scrolled/plugin.rb +24 -4
- data/entry_types/scrolled/lib/pageflow_scrolled/seeds.rb +24 -22
- data/entry_types/scrolled/lib/pageflow_scrolled.rb +1 -1
- data/entry_types/scrolled/lib/tasks/pageflow_scrolled/storybook.rake +6 -5
- data/entry_types/scrolled/package/config/webpack.js +22 -0
- data/entry_types/scrolled/package/contentElements/hotspots-frontend.css +1 -0
- data/entry_types/scrolled/package/contentElements/hotspots-frontend.js +1529 -0
- data/entry_types/scrolled/package/contentElements/tikTokEmbed-frontend.css +1 -0
- data/entry_types/scrolled/package/contentElements/tikTokEmbed-frontend.js +59 -0
- data/entry_types/scrolled/package/contentElements-editor.js +2075 -321
- data/entry_types/scrolled/package/contentElements-frontend.css +1 -1
- data/entry_types/scrolled/package/contentElements-frontend.js +1019 -643
- data/entry_types/scrolled/package/editor.js +2086 -1091
- data/entry_types/scrolled/package/frontend/{EditableInlineText.module-ebd22921.js → FloatingPortalRootProvider-51914be7.js} +1200 -1258
- data/entry_types/scrolled/package/frontend/{PhonePlatformContext-4ec6b2de.js → PhonePlatformContext-9f76033e.js} +7 -8
- data/entry_types/scrolled/package/frontend/ThemeIcon-81f2f066.js +1932 -0
- data/entry_types/scrolled/package/frontend/ToggleFullscreenCornerButton-788e9cdb.js +39 -0
- data/entry_types/scrolled/package/frontend/{Viewer-1bb5597c.js → Viewer-0345ce57.js} +36 -63
- data/entry_types/scrolled/package/frontend/{Viewer-1ecf3375.js → Viewer-cdc549cc.js} +15 -22
- data/entry_types/scrolled/package/frontend/{Wavesurfer-7d9cf1b7.js → Wavesurfer-1cdc3925.js} +54 -74
- data/entry_types/scrolled/package/frontend/{components-024a9893.js → components-96660ffd.js} +1791 -841
- data/entry_types/scrolled/package/frontend/{index-11f32f10.js → index-eb670c2f.js} +11 -18
- data/entry_types/scrolled/package/frontend/index.css +1 -1
- data/entry_types/scrolled/package/frontend/index.js +517 -903
- data/entry_types/scrolled/package/frontend/{createSuper-d0f30da3.js → inherits-539844a6.js} +40 -56
- data/entry_types/scrolled/package/frontend/{useContentElementEditorState-4f4c3cf6.js → useContentElementEditorState-77fe6c79.js} +7 -8
- data/entry_types/scrolled/package/frontend/usePhonePlatform-c2ba875d.js +8 -0
- data/entry_types/scrolled/package/frontend-server.js +0 -1
- data/entry_types/scrolled/package/package.json +18 -10
- data/entry_types/scrolled/package/testHelpers.js +306 -70
- data/entry_types/scrolled/package/values/widgets.module.css +18 -0
- data/entry_types/scrolled/package/widgets/consentBar.css +1 -1
- data/entry_types/scrolled/package/widgets/consentBar.js +47 -66
- data/entry_types/scrolled/package/widgets/defaultNavigation.css +2 -2
- data/entry_types/scrolled/package/widgets/defaultNavigation.js +177 -207
- data/entry_types/scrolled/package/widgets/excursionDialog.css +1 -0
- data/entry_types/scrolled/package/widgets/excursionDialog.js +109 -0
- data/entry_types/scrolled/package/widgets/excursionSheet.css +1 -0
- data/entry_types/scrolled/package/widgets/excursionSheet.js +262 -0
- data/entry_types/scrolled/package/widgets/iconInlineFileRights.css +1 -1
- data/entry_types/scrolled/package/widgets/iconInlineFileRights.js +6 -9
- data/entry_types/scrolled/package/widgets/iconScrollIndicator.css +1 -0
- data/entry_types/scrolled/package/widgets/iconScrollIndicator.js +48 -0
- data/entry_types/scrolled/package/widgets/mainStorylineSheet.css +1 -0
- data/entry_types/scrolled/package/widgets/mainStorylineSheet.js +144 -0
- data/entry_types/scrolled/package/widgets/textInlineFileRights.css +1 -1
- data/entry_types/scrolled/package/widgets/textInlineFileRights.js +26 -9
- data/entry_types/scrolled/package/widgets-server.js +1 -0
- data/entry_types/scrolled/spec/factories/chapters.rb +14 -1
- data/entry_types/scrolled/spec/factories/content_elements.rb +1 -1
- data/lib/generators/pageflow/active_admin_initializer/active_admin_initializer_generator.rb +5 -3
- data/lib/generators/pageflow/assets/assets_generator.rb +7 -5
- data/lib/generators/pageflow/cancan/cancan_generator.rb +2 -1
- data/lib/generators/pageflow/cancan/templates/ability.rb +1 -1
- data/lib/generators/pageflow/error_pages/error_pages_generator.rb +2 -1
- data/lib/generators/pageflow/initializer/initializer_generator.rb +3 -2
- data/lib/generators/pageflow/install/install_generator.rb +2 -2
- data/lib/generators/pageflow/procfile/procfile_generator.rb +2 -1
- data/lib/generators/pageflow/resque/resque_generator.rb +6 -4
- data/lib/generators/pageflow/resque/templates/resque.rake +1 -1
- data/lib/generators/pageflow/routes/routes_generator.rb +4 -2
- data/lib/generators/pageflow/seeds/seeds_generator.rb +3 -2
- data/lib/generators/pageflow/seeds/templates/seeds.rb +6 -6
- data/lib/generators/pageflow/theme/theme_generator.rb +2 -1
- data/lib/generators/pageflow/user/user_generator.rb +2 -1
- data/lib/pageflow/ability_mixin.rb +25 -15
- data/lib/pageflow/active_admin_patches/views/attributes_table.rb +1 -0
- data/lib/pageflow/active_admin_patches/views/pages/base.rb +3 -2
- data/lib/pageflow/active_admin_patches/views/table_for.rb +1 -0
- data/lib/pageflow/additional_headers.rb +27 -0
- data/lib/pageflow/admin/attributes_table_rows.rb +3 -3
- data/lib/pageflow/admin/tabs.rb +1 -1
- data/lib/pageflow/built_in_file_type.rb +1 -1
- data/lib/pageflow/built_in_page_types_plugin.rb +1 -1
- data/lib/pageflow/built_in_widget_type.rb +2 -2
- data/lib/pageflow/built_in_widget_types_plugin.rb +2 -1
- data/lib/pageflow/configuration.rb +141 -18
- data/lib/pageflow/cutoff_modes.rb +39 -0
- data/lib/pageflow/editor_controller.rb +6 -10
- data/lib/pageflow/engine.rb +4 -5
- data/lib/pageflow/entry_export_import/attachment_files.rb +1 -1
- data/lib/pageflow/entry_export_import/entry_serialization.rb +5 -4
- data/lib/pageflow/entry_export_import/file_mappings.rb +1 -0
- data/lib/pageflow/entry_export_import/revision_serialization/import.rb +1 -1
- data/lib/pageflow/entry_export_import.rb +3 -3
- data/lib/pageflow/entry_types.rb +2 -2
- data/lib/pageflow/feature.rb +1 -1
- data/lib/pageflow/features.rb +4 -6
- data/lib/pageflow/file_importers.rb +4 -4
- data/lib/pageflow/file_type.rb +3 -3
- data/lib/pageflow/file_types.rb +3 -3
- data/lib/pageflow/global_config_api.rb +5 -6
- data/lib/pageflow/help_entries.rb +7 -7
- data/lib/pageflow/help_entry.rb +1 -1
- data/lib/pageflow/hooks.rb +1 -1
- data/lib/pageflow/nested_revision_component.rb +9 -27
- data/lib/pageflow/news_item_api.rb +1 -1
- data/lib/pageflow/page_type.rb +2 -3
- data/lib/pageflow/page_types.rb +3 -3
- data/lib/pageflow/paperclip_interpolations/support.rb +1 -1
- data/lib/pageflow/paperclip_processors/vtt.rb +1 -0
- data/lib/pageflow/paperclip_processors/webp.rb +2 -2
- data/lib/pageflow/partial_editor_fragment_renderer.rb +2 -2
- data/lib/pageflow/plugin.rb +1 -2
- data/lib/pageflow/quota.rb +9 -5
- data/lib/pageflow/quotas.rb +1 -1
- data/lib/pageflow/rails_version.rb +1 -0
- data/lib/pageflow/react.rb +1 -1
- data/lib/pageflow/revision_component.rb +8 -40
- data/lib/pageflow/revision_components.rb +16 -6
- data/lib/pageflow/seeds.rb +12 -16
- data/lib/pageflow/theme.rb +1 -1
- data/lib/pageflow/theme_customizations.rb +10 -10
- data/lib/pageflow/themes.rb +3 -3
- data/lib/pageflow/user_mixin.rb +6 -6
- data/lib/pageflow/version.rb +1 -1
- data/lib/pageflow/widget_type.rb +4 -4
- data/lib/pageflow/widget_types.rb +9 -9
- data/lib/pageflow/zencoder_api.rb +32 -42
- data/lib/pageflow/zencoder_audio_output_definition.rb +14 -13
- data/lib/pageflow/zencoder_meta_data_output_definition.rb +3 -2
- data/lib/pageflow/zencoder_output_definition.rb +16 -14
- data/lib/pageflow/zencoder_video_output_definition.rb +140 -88
- data/lib/pageflow.rb +7 -2
- data/lib/tasks/pageflow_tasks.rake +1 -1
- data/package/editor.js +954 -868
- data/package/frontend.js +113 -387
- data/package/package.json +2 -1
- data/package/testHelpers.js +10 -56
- data/package/ui.js +209 -251
- data/spec/factories/accounts.rb +37 -22
- data/spec/factories/audio_files.rb +2 -2
- data/spec/factories/authentication_tokens.rb +4 -4
- data/spec/factories/chapters.rb +4 -4
- data/spec/factories/draft_entries.rb +14 -6
- data/spec/factories/edit_locks.rb +1 -1
- data/spec/factories/entries.rb +28 -19
- data/spec/factories/entry_translation_groups.rb +6 -0
- data/spec/factories/file_usages.rb +2 -1
- data/spec/factories/folders.rb +1 -1
- data/spec/factories/image_files.rb +2 -2
- data/spec/factories/pages.rb +3 -3
- data/spec/factories/published_entries.rb +26 -8
- data/spec/factories/revisions.rb +1 -1
- data/spec/factories/sites.rb +6 -0
- data/spec/factories/test_multi_attachment_files.rb +1 -1
- data/spec/factories/text_track_files.rb +1 -1
- data/spec/factories/uploadable_files.rb +1 -1
- data/spec/factories/users.rb +6 -6
- data/spec/factories/video_files.rb +2 -2
- data/spec/factories/widgets.rb +1 -1
- data/spec/fixtures/7x15_rotated.jpg +0 -0
- data/vendor/assets/javascripts/wysihtml-toolbar.js +19288 -0
- metadata +98 -45
- data/config/initializers/revision_components.rb +0 -5
- data/config/locales/twitter_to_x.de.yml +0 -6
- data/config/locales/twitter_to_x.en.yml +0 -6
- data/entry_types/scrolled/config/locales/twitter_to_x.de.yml +0 -12
- data/entry_types/scrolled/config/locales/twitter_to_x.en.yml +0 -12
- data/entry_types/scrolled/config/locales/vr_image_projection.de.yml +0 -24
- data/entry_types/scrolled/config/locales/vr_image_projection.en.yml +0 -24
- data/entry_types/scrolled/package/frontend/ToggleFullscreenCornerButton-b79159cc.js +0 -107
- data/entry_types/scrolled/package/frontend/arrowRight-62998af9.js +0 -77
- data/entry_types/scrolled/package/frontend/i18n-ce13a8bf.js +0 -1129
@@ -1,9 +1,9 @@
|
|
1
1
|
import React, { useMemo, useEffect, useState, useCallback } from 'react';
|
2
2
|
import ReactDOM from 'react-dom';
|
3
|
-
import { _ as _slicedToArray, b as _defineProperty } from './
|
3
|
+
import { _ as _slicedToArray, b as _defineProperty } from './ThemeIcon-81f2f066.js';
|
4
4
|
import classNames from 'classnames';
|
5
|
-
import { u as useDelayedBoolean } from './useContentElementEditorState-
|
6
|
-
import { T as ToggleFullscreenCornerButton } from './ToggleFullscreenCornerButton-
|
5
|
+
import { u as useDelayedBoolean } from './useContentElementEditorState-77fe6c79.js';
|
6
|
+
import { T as ToggleFullscreenCornerButton } from './ToggleFullscreenCornerButton-788e9cdb.js';
|
7
7
|
|
8
8
|
var styles = {"wrapper":"Fullscreen-module_wrapper__2MP7f"};
|
9
9
|
|
@@ -26,9 +26,10 @@ function Fullscreen(_ref) {
|
|
26
26
|
return ReactDOM.createPortal( /*#__PURE__*/React.createElement("div", {
|
27
27
|
className: styles.wrapper
|
28
28
|
}, children), root);
|
29
|
-
}
|
30
|
-
// https://github.com/tailwindlabs/headlessui/blob/9dff5456fa196cdc304e2ed17ef47962a9364ce7/packages/%40headlessui-react/src/hooks/document-overflow/adjust-scrollbar-padding.ts
|
29
|
+
}
|
31
30
|
|
31
|
+
// Adapted from
|
32
|
+
// https://github.com/tailwindlabs/headlessui/blob/9dff5456fa196cdc304e2ed17ef47962a9364ce7/packages/%40headlessui-react/src/hooks/document-overflow/adjust-scrollbar-padding.ts
|
32
33
|
function adjustScrollbarPadding(hideScrollbar) {
|
33
34
|
var documentElement = document.documentElement;
|
34
35
|
var ownerWindow = document.defaultView || window;
|
@@ -46,14 +47,12 @@ var styles$1 = {"wrapper":"index-module_wrapper__ilo7n","visible":"index-module_
|
|
46
47
|
|
47
48
|
function FullscreenViewer(_ref) {
|
48
49
|
var contentElementId = _ref.contentElementId,
|
49
|
-
|
50
|
-
|
51
|
-
|
50
|
+
renderChildren = _ref.renderChildren,
|
51
|
+
renderFullscreenChildren = _ref.renderFullscreenChildren;
|
52
52
|
var _useState = useState(false),
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
53
|
+
_useState2 = _slicedToArray(_useState, 2),
|
54
|
+
isFullscreen = _useState2[0],
|
55
|
+
setIsFullscreen = _useState2[1];
|
57
56
|
var isRendered = useDelayedBoolean(isFullscreen, {
|
58
57
|
fromTrueToFalse: 200
|
59
58
|
});
|
@@ -63,10 +62,8 @@ function FullscreenViewer(_ref) {
|
|
63
62
|
useEffect(function () {
|
64
63
|
function handlePopState() {
|
65
64
|
var _window$history$state;
|
66
|
-
|
67
65
|
setIsFullscreen(((_window$history$state = window.history.state) === null || _window$history$state === void 0 ? void 0 : _window$history$state.fullscreenContentElementId) === contentElementId);
|
68
66
|
}
|
69
|
-
|
70
67
|
window.addEventListener('popstate', handlePopState);
|
71
68
|
return function () {
|
72
69
|
return window.removeEventListener('popstate', handlePopState);
|
@@ -74,7 +71,6 @@ function FullscreenViewer(_ref) {
|
|
74
71
|
});
|
75
72
|
var enterFullscreen = useCallback(function () {
|
76
73
|
setIsFullscreen(true);
|
77
|
-
|
78
74
|
if (window.parent === window) {
|
79
75
|
window.history.pushState({
|
80
76
|
fullscreenContentElementId: contentElementId
|
@@ -83,9 +79,7 @@ function FullscreenViewer(_ref) {
|
|
83
79
|
}, [contentElementId]);
|
84
80
|
var exitFullscreen = useCallback(function () {
|
85
81
|
var _window$history$state2;
|
86
|
-
|
87
82
|
setIsFullscreen(false);
|
88
|
-
|
89
83
|
if (((_window$history$state2 = window.history.state) === null || _window$history$state2 === void 0 ? void 0 : _window$history$state2.fullscreenContentElementId) === contentElementId && window.parent === window) {
|
90
84
|
window.history.back();
|
91
85
|
}
|
@@ -96,7 +90,6 @@ function FullscreenViewer(_ref) {
|
|
96
90
|
exitFullscreen();
|
97
91
|
}
|
98
92
|
}
|
99
|
-
|
100
93
|
window.addEventListener('keydown', handleKeyDown);
|
101
94
|
return function () {
|
102
95
|
return window.removeEventListener('keydown', handleKeyDown);
|
@@ -1 +1 @@
|
|
1
|
-
.GradientBox-module_content__96lDk{position:relative}.GradientBox-module_shadow__2XilX{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none;max-height:var(--zero-if-two-column,0)}.GradientBox-module_gradient__31tJ- .GradientBox-module_shadow__2XilX{max-height:none}.GradientBox-module_long__10s6v .GradientBox-module_shadow__2XilX{bottom:-100vh}.GradientBox-module_root__8Xn9W .GradientBox-module_withShadow__3mhPR{text-shadow:0 1px min(5px,var(--zero-if-two-column)) #000}.GradientBox-module_gradient__31tJ- .GradientBox-module_withShadow__3mhPR{text-shadow:0 1px 5px #000}.GradientBox-module_shadowDark__3Tv0L{background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.5) 100px,rgba(0,0,0,.5))}.GradientBox-module_shadowLight__Bieg6{background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.5) 100px,hsla(0,0%,100%,.5))}@media print{.GradientBox-module_root__8Xn9W{padding-top:0!important}.GradientBox-module_shadow__2XilX{display:none}}.Image-module_fill__1D1wH{position:absolute;top:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.Text-module_heading-lg__FKxzu{font-size:110px;line-height:1}.Text-module_heading-md__1q5Ss{font-size:88px;line-height:1}.Text-module_heading-sm__2awaz{font-size:66px;font-weight:700;line-height:1}.Text-module_heading-xs__21nHy{font-size:33px;margin-top:1em;margin-bottom:0}.Text-module_headingTagline-lg__1O2TQ,.Text-module_headingTagline-md__2hrVS{font-size:33px;line-height:1.2}.Text-module_headingTagline-sm__1Fw2J{font-size:22px;line-height:1.4}.Text-module_headingSubtitle-lg__15kj0,.Text-module_headingSubtitle-md__2_qtz{font-size:44px;line-height:1.2}.Text-module_headingSubtitle-sm__MOc_6{font-size:26px;line-height:1.2}.Text-module_body__4oWD-{font-size:22px;line-height:1.4}.Text-module_caption__3_6Au{font-size:20px;line-height:1.4}.Text-module_question__ByVAq{font-size:22px;line-height:1.4;font-weight:700}.Text-module_quoteText-lg__3ZnZi{font-size:50px;line-height:1.1}.Text-module_quoteText-md__2eooO{font-size:40px;line-height:1.1}.Text-module_quoteText-sm__5nKex{font-size:33px;line-height:1.2}.Text-module_quoteText-xs__2p5on{font-size:26px;line-height:1.2}.Text-module_quoteAttribution__VBqLw{font-size:22px;line-height:1.4}.Text-module_counterNumber-lg__2myJg{font-size:350px;line-height:1;font-weight:700}.Text-module_counterNumber-md__1NC3q{font-size:200px;line-height:1;font-weight:700}.Text-module_counterNumber-sm__2SwHQ{font-size:110px;line-height:1;font-weight:700}.Text-module_counterNumber-xs__1D-YR{font-size:66px;line-height:1;font-weight:700}.Text-module_counterDescription__34NjQ{font-size:22px;line-height:1.4}@media (max-width:600px){.Text-module_heading-lg__FKxzu{font-size:66px;line-height:1.1}.Text-module_heading-md__1q5Ss{font-size:50px;line-height:1.1}.Text-module_heading-sm__2awaz{font-size:40px}.Text-module_headingTagline-lg__1O2TQ{font-size:26px;line-height:1.2}.Text-module_headingTagline-md__2hrVS,.Text-module_headingTagline-sm__1Fw2J{font-size:22px;line-height:1.4}.Text-module_headingSubtitle-lg__15kj0{font-size:33px;line-height:1.2}.Text-module_headingSubtitle-md__2_qtz,.Text-module_headingSubtitle-sm__MOc_6{font-size:26px;line-height:1.2}.Text-module_quoteText-lg__3ZnZi{font-size:40px;line-height:1.1}.Text-module_quoteText-md__2eooO{font-size:33px;line-height:1.2}.Text-module_quoteText-sm__5nKex,.Text-module_quoteText-xs__2p5on{font-size:22px;line-height:1.4}.Text-module_counterNumber-lg__2myJg{font-size:200px;line-height:1}.Text-module_counterNumber-md__1NC3q{font-size:110px;line-height:1}.Text-module_counterNumber-sm__2SwHQ{font-size:66px;line-height:1.1}.Text-module_counterNumber-xs__1D-YR{font-size:40px;line-height:1.1}}.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}.Content-module_Content__m7urk{font-family:var(--theme-entry-font-family)}@media screen{.Content-module_Content__m7urk{background-color:#000;color:#fff}}.SectionThumbnail-module_crop__Q1nZj{pointer-events:none;position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}.SectionThumbnail-module_scale__2tKDG{transform:scale(.2);transform-origin:0 0;width:500%}.ToggleFullscreenCornerButton-module_corner__CxAAH{position:absolute;right:0;top:0;color:#fff}.ToggleFullscreenCornerButton-module_corner__CxAAH svg{filter:drop-shadow(0 1px 4px #000)}.InlineFileRights-module_list__2OuO5,.InlineFileRights-module_list__2OuO5>li{text-align:left;padding:0;margin:0;list-style:none}.InlineFileRights-module_list__2OuO5>li{white-space:nowrap}.useScrollPositionLifecycle-module_wrapper__1a6Kr{position:relative}.useScrollPositionLifecycle-module_isActiveProbe__3VKB5{position:absolute;top:0;left:0;bottom:2px;width:1px}.EditableText-module_root__2v1tU{white-space:pre-line}.EditableText-module_light__2c29h{color:var(--theme-light-content-text-color,#fff)}.EditableText-module_dark__2ym90{color:var(--theme-dark-content-text-color,#222)}.AudioPlayer-module_spaceForTextTracks__169MK{height:100%}.AudioPlayer-module_spaceForTextTracksActive__99m7R{height:90px}.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}.index-module_wrapper__ilo7n{height:100%;width:100%;background-color:rgba(0,0,0,.9);opacity:0;transition:opacity .2s linear;font-family:var(--theme-entry-font-family)}.index-module_visible__6QUDn{opacity:1}@supports (-webkit-touch-callout:none){.index-module_wrapper__ilo7n{transform:scale(1);height:calc(var(--vh)*100)}}.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}.scrollInScrollOut-module_backdrop__XzCge{position:sticky;top:0;height:100vh}.scrollInScrollOut-module_foreground__1yyY8{margin-top:-100vh}.scrollInConceal-module_backdrop__2OJJC{position:sticky;top:0;height:0}body>#root [tabindex]:focus,body>#root a:focus,body>#root button:focus{outline:3px solid #518ad2}.focusOutline-module_focusOutlineDisabled__KV7d->#root [tabindex]:focus,.focusOutline-module_focusOutlineDisabled__KV7d->#root a:focus,.focusOutline-module_focusOutlineDisabled__KV7d->#root button:focus{outline:none}.Fullscreen-module_root__1N3CI{width:100%;height:calc(var(--vh)*100);position:relative;overflow:hidden}@media print{.Fullscreen-module_root__1N3CI{height:400px}}.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}.fadeInFadeOut-module_backdrop__Y4xOA{position:absolute;height:100%}.fadeInFadeOut-module_backdropInner__1oRfP{position:fixed;top:0;height:100vh;width:100%}.fadeInFadeOut-module_backdrop__Y4xOA .fadeInFadeOut-module_backdropInner__1oRfP{transition:opacity .5s ease}.fadeInFadeOut-module_backdrop-below__1h2I4 .fadeInFadeOut-module_backdropInner__1oRfP{opacity:0}.fadeInFadeOut-module_foreground__1eleZ{transition:opacity .5s ease,visibility .5s}.fadeInFadeOut-module_foreground-above__249wa,.fadeInFadeOut-module_foreground-below__3mE6f{opacity:0;visibility:hidden}.fadeInBgConceal-module_backdrop__11JGO{position:absolute;height:100%}.fadeInBgConceal-module_backdropInner__1IAYD{position:fixed;top:0;height:100vh;width:100%}.fadeInBgConceal-module_backdrop__11JGO{transition:opacity .5s ease}.fadeInBgConceal-module_backdrop-below__3E6Uk{opacity:0}.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}.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}.fadeInBgFadeOutBg-module_backdrop__15ocl{position:absolute;height:100%}.fadeInBgFadeOutBg-module_backdropInner__sAnz6{position:fixed;top:0;height:100vh;width:100%}.fadeInBgFadeOutBg-module_backdrop__15ocl .fadeInBgFadeOutBg-module_backdropInner__sAnz6,.fadeInBgFadeOutBg-module_boxShadow__xUKyj{transition:opacity .5s ease}.fadeInBgFadeOutBg-module_backdrop-below__1rDT6 .fadeInBgFadeOutBg-module_backdropInner__sAnz6,.fadeInBgFadeOutBg-module_boxShadow-above__2bY0E{opacity:0!important}.fadeInBgFadeOut-module_backdrop__r0YXp{position:absolute;height:100%}.fadeInBgFadeOut-module_backdropInner__IQp87{position:fixed;top:0;height:100vh;width:100%}.fadeInBgFadeOut-module_backdrop__r0YXp .fadeInBgFadeOut-module_backdropInner__IQp87{transition:opacity .5s ease}.fadeInBgFadeOut-module_backdrop-below__2G-Ic .fadeInBgFadeOut-module_backdropInner__IQp87{opacity:0}.fadeInBgFadeOut-module_foreground__Q2vkT{transition:opacity .5s ease,visibility .5s}.fadeInBgFadeOut-module_foreground-above__3pmz9{opacity:0;visibility:hidden}.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}.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}.revealFadeOutBg-module_backdrop__30OCF{position:absolute;height:calc(100% + 100vh)}.revealFadeOutBg-module_backdropInner__3v3tM{position:fixed;top:0;height:100vh;width:100%;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.revealFadeOutBg-module_boxShadow__1NZRz{transition:opacity 1s ease}.revealFadeOutBg-module_boxShadow-above__2r4ov{opacity:0!important}.revealConceal-module_backdrop__dLUhU{position:absolute;height:100%}.revealConceal-module_backdropInner__2k1Z-{position:fixed;top:0;height:100vh;width:100%;transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.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%}.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}.Section-module_Section__Yo58b{position:relative;--section-max-width:var(--theme-section-max-width);--two-column-inline-content-max-width:var(--theme-two-column-inline-content-max-width);--two-column-inline-lg-content-max-width:var(--theme-two-column-inline-lg-content-max-width);--two-column-inline-xl-content-max-width:var(--theme-two-column-inline-xl-content-max-width);--two-column-sticky-content-max-width:var(--theme-two-column-sticky-content-max-width);--two-column-sticky-lg-content-max-width:var(--theme-two-column-sticky-lg-content-max-width);--two-column-sticky-xl-content-max-width:var(--theme-two-column-sticky-xl-content-max-width);--centered-inline-content-max-width:var(--theme-centered-inline-content-max-width);--centered-inline-lg-content-max-width:var(--theme-centered-inline-lg-content-max-width);--centered-inline-xl-content-max-width:var(--theme-centered-inline-xl-content-max-width);--foreground-padding-top:0px}.Section-module_first__1vLBH{--foreground-padding-top:var(--theme-widget-margin-top,58px)}.Section-module_narrow__3Dawu{--section-max-width:var(--theme-narrow-section-max-width);--two-column-inline-content-max-width:var(--theme-narrow-section-two-column-inline-content-max-width);--two-column-inline-lg-content-max-width:var(--theme-narrow-section-two-column-inline-lg-content-max-width);--two-column-inline-xl-content-max-width:var(--theme-narrow-section-two-column-inline-xl-content-max-width);--two-column-sticky-content-max-width:var(--theme-narrow-section-two-column-sticky-content-max-width);--two-column-sticky-lg-content-max-width:var(--theme-narrow-section-two-column-sticky-lg-content-max-width);--two-column-sticky-xl-content-max-width:var(--theme-narrow-section-two-column-sticky-xl-content-max-width);--centered-inline-content-max-width:var(--theme-narrow-section-centered-inline-content-max-width);--centered-inline-lg-content-max-width:var(--theme-narrow-section-centered-inline-lg-content-max-width);--centered-inline-xl-content-max-width:var(--theme-narrow-section-centered-inline-xl-content-max-width)}@media screen{.Section-module_Section__Yo58b{color:var(--theme-light-content-text-color,#fff);--content-text-color:var(--theme-light-content-text-color,#fff);--content-link-color:var(--theme-light-content-link-color,var(--theme-content-link-color,currentColor));background-color:#000}.Section-module_invert__3_p7F{background-color:#fff;color:var(--theme-dark-content-text-color,#222);--content-text-color:var(--theme-dark-content-text-color,#222);--content-link-color:var(--theme-dark-content-link-color,var(--theme-content-link-color,currentColor))}}.ToggleFullscreenButton-module_button__2n69-{width:40px;height:40px;margin:0 2px;display:flex;align-items:center;justify-content:center;color:currentColor;cursor:pointer}.ToggleFullscreenButton-module_button__2n69- svg{fill:currentColor;width:21px;height:21px}.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}.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}.Fullscreen-module_wrapper__2MP7f{position:fixed;top:0;left:0;width:100%;height:100%;z-index:20000}.Center-module_outer__3Rr0H{padding-left:8%;padding-right:8%;margin-left:auto;margin-right:auto;max-width:var(--section-max-width,none)}.Center-module_customMargin__1es3t,.Center-module_outer-full__3dknO{padding-left:0;padding-right:0;max-width:none;width:100%}.Center-module_item__1KSs3{--content-margin:8%;--content-max-width:var(--centered-inline-content-max-width,700px);margin-left:auto;margin-right:auto;max-width:var(--content-max-width)}.Center-module_customMargin__1es3t .Center-module_item__1KSs3{max-width:calc(var(--content-margin)*2 + var(--content-max-width))}.Center-module_item-inline-lg__DGjXl{--content-max-width:var(--centered-inline-lg-content-max-width,950px)}.Center-module_item-inline-xl__2McfB{--content-max-width:var(--centered-inline-xl-content-max-width,1200px)}.Center-module_item-inline-full__l-6kG{--content-margin:0;--content-max-width:none;margin-left:0;margin-right:0;max-width:none}.Center-module_clear__jJEap{clear:both}.Center-module_inner-sm__-oQ0E,.Center-module_inner-xs__3FRT8,.Center-module_inner-xxs__1oroz{margin:0 auto}.Center-module_inner-xxs__1oroz{width:30%}.Center-module_inner-xs__3FRT8{width:50%}.Center-module_inner-sm__-oQ0E{width:70%}.Center-module_inner-left__2z9Ea,.Center-module_inner-right__KBkVt{--inlined-float:none;--inlined-margin:0;margin-top:var(--inlined-margin,.375em);margin-bottom:var(--inlined-margin,1em);clear:both;position:relative;z-index:1}.Center-module_inner-sm__-oQ0E,.Center-module_inner-xs__3FRT8,.Center-module_inner-xxs__1oroz{--inlined-margin:auto}.Center-module_inner-left__2z9Ea{float:var(--inlined-float,left);margin-left:var(--inlined-margin,calc(var(--floated-indent) - 1em));margin-right:var(--inlined-margin,1em)}.Center-module_inner-right__KBkVt{float:var(--inlined-float,right);margin-right:var(--inlined-margin,calc(var(--floated-indent) - 1em));margin-left:var(--inlined-margin,1em)}.Center-module_inner-xs__3FRT8.Center-module_sideBySide__-YsP0{--inlined-float:initial;--inlined-margin:initial;--floated-indent:25%;clear:none;width:25%}@media (min-width:950px){.Center-module_inner-md__3dLC3.Center-module_inner-left__2z9Ea,.Center-module_inner-md__3dLC3.Center-module_inner-right__KBkVt,.Center-module_inner-sm__-oQ0E.Center-module_inner-left__2z9Ea,.Center-module_inner-sm__-oQ0E.Center-module_inner-right__KBkVt,.Center-module_inner-xs__3FRT8.Center-module_inner-left__2z9Ea,.Center-module_inner-xs__3FRT8.Center-module_inner-right__KBkVt{--inlined-float:initial;--inlined-margin:initial;--floated-indent:-10%;clear:none}.Center-module_inner-xs__3FRT8.Center-module_inner-left__2z9Ea,.Center-module_inner-xs__3FRT8.Center-module_inner-right__KBkVt{width:25%}.Center-module_inner-xs__3FRT8.Center-module_sideBySide__-YsP0{--floated-indent:25%}.Center-module_inner-sm__-oQ0E.Center-module_inner-left__2z9Ea,.Center-module_inner-sm__-oQ0E.Center-module_inner-right__KBkVt{width:40%}.Center-module_inner-md__3dLC3.Center-module_inner-left__2z9Ea,.Center-module_inner-md__3dLC3.Center-module_inner-right__KBkVt{width:60%}}@media (min-width:700px){.Center-module_inner-sm__-oQ0E.Center-module_sideBySide__-YsP0{--inlined-float:initial;--inlined-margin:initial;clear:none;width:40%;--floated-indent:10%}}@media (min-width:1100px){.Center-module_inner-lg__2GQbs.Center-module_inner-left__2z9Ea,.Center-module_inner-lg__2GQbs.Center-module_inner-right__KBkVt{--inlined-float:initial;--inlined-margin:initial;clear:none;width:70%;--floated-indent:-20%}}@media (min-width:1300px){.Center-module_inner-xl__3dOME.Center-module_inner-left__2z9Ea,.Center-module_inner-xl__3dOME.Center-module_inner-right__KBkVt{--inlined-float:initial;--inlined-margin:initial;clear:none;width:80%;--floated-indent:-30%}}.TwoColumn-module_group__3Hg2y{--content-margin-fraction:0.08;--content-margin:calc(var(--content-margin-fraction)*100%);padding-left:var(--content-margin);padding-right:var(--content-margin);margin-left:auto;margin-right:auto;max-width:var(--section-max-width,none)}.TwoColumn-module_group-full__2OT4o{padding-left:0;padding-right:0;max-width:none;width:100%}.TwoColumn-module_box__1Nils{max-width:var(--content-max-width)}.TwoColumn-module_inline__1fPfM{--content-max-width:var(--two-column-inline-content-max-width,500px)}.TwoColumn-module_inline__1fPfM.TwoColumn-module_width-lg__2MD35{--content-max-width:var(--two-column-inline-lg-content-max-width,700px)}.TwoColumn-module_inline__1fPfM.TwoColumn-module_width-xl__3Bxet{--content-max-width:var(--two-column-inline-xl-content-max-width,1200px)}.TwoColumn-module_inline__1fPfM.TwoColumn-module_width-full__1QWYO{--content-margin-fraction:0;--content-max-width:none}.TwoColumn-module_restrict-sm__2rKty,.TwoColumn-module_restrict-xs__AOezq,.TwoColumn-module_restrict-xxs__6il-H{margin:0 auto}.TwoColumn-module_restrict-xxs__6il-H{width:30%}.TwoColumn-module_restrict-xs__AOezq{width:50%}.TwoColumn-module_restrict-sm__2rKty{width:70%}.TwoColumn-module_customMargin__o0uxH{--f:calc(1/(1 - var(--content-margin-fraction)*2));margin-left:calc(-100%*var(--content-margin-fraction)*var(--f));margin-right:calc(-100%*var(--content-margin-fraction)*var(--f));max-width:calc(var(--content-margin)*var(--f)*2 + var(--content-max-width))}.TwoColumn-module_right__Fr52a .TwoColumn-module_inline__1fPfM{margin-left:auto}.TwoColumn-module_sticky__4LCDO{--content-width:var(--theme-two-column-sticky-content-width,25vw);--content-max-width:min(var(--content-width),var(--two-column-sticky-content-max-width,600px));position:sticky;float:right;clear:both;top:33%;width:var(--content-width)}.TwoColumn-module_right__Fr52a .TwoColumn-module_sticky__4LCDO{float:left}.TwoColumn-module_sticky__4LCDO.TwoColumn-module_width-lg__2MD35{--content-width:var(--theme-two-column-sticky-lg-content-width,35vw);--content-max-width:min(var(--content-width),var(--two-column-sticky-lg-content-max-width,700px))}.TwoColumn-module_sticky__4LCDO.TwoColumn-module_width-xl__3Bxet{--content-width:var(--theme-two-column-sticky-xl-content-width,45vw);--content-max-width:min(var(--content-width),var(--two-column-sticky-xl-content-max-width,1000px))}.TwoColumn-module_sticky__4LCDO.TwoColumn-module_customMargin__o0uxH{width:100%}.Viewer-module_full__1q18y{height:100%}.Viewer-module_container__3eJ34{background-color:#000;color:#fff;cursor:move}.Viewer-module_spinner__2oRve{-webkit-animation:Viewer-module_spin__3jBR2 .75s linear infinite;animation:Viewer-module_spin__3jBR2 .75s linear infinite;width:40px;height:40px;position:absolute;top:50%;left:50%;margin:-20px;display:none}.Viewer-module_spinner__2oRve.Viewer-module_isLoading__sQuGw{display:block}@-webkit-keyframes Viewer-module_spin__3jBR2{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Viewer-module_spin__3jBR2{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.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}.SectionInlineFileRights-module_wrapper__1l6rr{z-index:3;position:relative}.SectionInlineFileRights-module_fade__1Snfk{transition:opacity .5s ease,visibility .5s}.SectionInlineFileRights-module_fade__1Snfk.SectionInlineFileRights-module_inactive__1VpQh{opacity:0;visibility:hidden}.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)}}.ZoomableImage-module_full__1YJoO{height:100%;width:100%}.ZoomableImage-module_container__RTuPI{height:100%}.ZoomableImage-module_img__3Vnst{max-width:100%;height:auto;visibility:hidden}.ZoomableImage-module_visible__2ez0D{visibility:visible}.Fullscreen-module_wrapper__300hJ{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:20000}.ContentElement-module_missing__2_1j9{color:#000;background-color:#fff;border-left:5px solid #f44336;padding:.5em;margin:1em 0 0}.ContentElementScrollSpace-module_wrapper__2ZBwZ{height:130vh}.ContentElementScrollSpace-module_inner__1FBgh{position:sticky;top:calc(50% - var(--height)*1px)}@supports (height:100lvh){.ContentElementScrollSpace-module_wrapper__2ZBwZ{height:130lvh}.ContentElementScrollSpace-module_inner__1FBgh{top:calc(50lvh - var(--height)*1px)}}.CardBox-module_content__36v7J{position:relative}@media print{.CardBox-module_wrapper__3vnaH{padding-top:0!important}}.InvisibleBoxWrapper-module_start__F1nZ7{margin-top:1.375em}.InvisibleBoxWrapper-module_end__nphD-{margin-bottom:1.375em}.GradientShadow-module_dynamic__2v2JU,.GradientShadow-module_static__rXNpZ{position:absolute;top:0;left:0;width:100%;z-index:1;transition:opacity 1s ease;will-change:opacity}.GradientShadow-module_static__rXNpZ{max-width:var(--zero-if-motif-intersecting)}.GradientShadow-module_dynamic__2v2JU{max-width:var(--zero-if-two-column)}.GradientShadow-module_align-left__3qcNM.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-right__3iXZs.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ{background:linear-gradient(90deg,#000 0,transparent)}@media (min-width:950px){.GradientShadow-module_align-right__3iXZs.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ{background:linear-gradient(270deg,#000 0,transparent)}}.GradientShadow-module_align-center__2C7cl.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-centerRagged__2-iv8.GradientShadow-module_dark__1YuV5 .GradientShadow-module_static__rXNpZ,.GradientShadow-module_dark__1YuV5 .GradientShadow-module_dynamic__2v2JU{background:rgba(0,0,0,.9)}.GradientShadow-module_align-left__3qcNM.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-right__3iXZs.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ{background:linear-gradient(90deg,#fff 0,hsla(0,0%,100%,0))}@media (min-width:950px){.GradientShadow-module_align-right__3iXZs.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ{background:linear-gradient(270deg,#fff 0,hsla(0,0%,100%,0))}}.GradientShadow-module_align-center__2C7cl.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ,.GradientShadow-module_align-centerRagged__2-iv8.GradientShadow-module_light__Vn92v .GradientShadow-module_static__rXNpZ,.GradientShadow-module_light__Vn92v .GradientShadow-module_dynamic__2v2JU{background:hsla(0,0%,100%,.9)}@media print{.GradientShadow-module_shadow__2UiDH{display:none}}.SwipeToClose-module_inner__NOg1v,.SwipeToClose-module_outer__1fl2h{height:100%}.colors-module_contentColorScope__LQsqm{--theme-light-content-surface-color:var(--root-light-content-surface-color);--theme-dark-content-surface-color:var(--root-dark-content-surface-color);--theme-light-content-text-color:var(--root-light-content-text-color);--theme-dark-content-text-color:var(--root-dark-content-text-color)}.CardBoxWrapper-module_card__hvRUa{--theme-first-heading-landscape-padding-top:0;position:relative;margin-top:-1px;padding:1px 1.5em 0}.CardBoxWrapper-module_card__hvRUa:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1}.CardBoxWrapper-module_selfClear-both__2hwB7:after,.CardBoxWrapper-module_selfClear-left__2Dd26:after,.CardBoxWrapper-module_selfClear-right__9kgvN:after{content:"";display:block}.CardBoxWrapper-module_selfClear-left__2Dd26:after{clear:left}.CardBoxWrapper-module_selfClear-right__9kgvN:after{clear:right}.CardBoxWrapper-module_selfClear-both__2hwB7:after{clear:both}.CardBoxWrapper-module_cardStart__2NywG{margin-top:3em}.CardBoxWrapper-module_cardEnd__x4Ye6{margin-bottom:3em;padding-bottom:1.5em}.CardBoxWrapper-module_cardStart__2NywG:before{border-top-left-radius:var(--theme-cards-border-radius,15px);border-top-right-radius:var(--theme-cards-border-radius,15px)}.CardBoxWrapper-module_cardEnd__x4Ye6:before{border-bottom-left-radius:var(--theme-cards-border-radius,15px);border-bottom-right-radius:var(--theme-cards-border-radius,15px)}@media screen{.CardBoxWrapper-module_cardBgWhite__xXhg7:before{background-color:var(--theme-light-content-surface-color,#fff)}.CardBoxWrapper-module_cardBgBlack__Ahp3s:before{background-color:var(--theme-dark-content-surface-color,#101010)}.CardBoxWrapper-module_cardBgWhite__xXhg7{color:var(--theme-dark-content-text-color,#222);--content-text-color:var(--theme-dark-content-text-color,#222);--content-link-color:var(--theme-dark-content-link-color,var(--theme-content-link-color,currentColor))}.CardBoxWrapper-module_cardBgBlack__Ahp3s{color:var(--theme-light-content-text-color,#fff);--content-text-color:var(--theme-light-content-text-color,#fff);--content-link-color:var(--theme-light-content-link-color,var(--theme-content-link-color,currentColor))}}.Backdrop-module_Backdrop__1w4UZ{width:100%;z-index:2}.Backdrop-module_noCompositionLayer__33IlH{visibility:hidden}.Backdrop-module_defaultBackground__1YQQL{background-color:#333}.Backdrop-module_effects__lCEXd{height:100%}@media print{.Backdrop-module_Backdrop__1w4UZ{page-break-inside:avoid}.Backdrop-module_Backdrop__1w4UZ,.Backdrop-module_Backdrop__1w4UZ>div,.Backdrop-module_Backdrop__1w4UZ>div>div{position:static!important;height:auto!important}}.Section-module_section__7UvMm{--backdrop-width:var(--backdrop-w);--backdrop-height:var(--backdrop-h);--motif-left:var(--motif-l);--motif-top:var(--motif-t);--motif-width:var(--motif-w);--motif-height:var(--motif-h)}@media (orientation:portrait){.Section-module_orientation__3-m2N{--backdrop-width:var(--mobile-backdrop-w,var(--backdrop-w));--backdrop-height:var(--mobile-backdrop-h,var(--backdrop-h));--motif-left:var(--mobile-motif-l,var(--motif-l));--motif-top:var(--mobile-motif-t,var(--motif-t));--motif-width:var(--mobile-motif-w,var(--motif-w));--motif-height:var(--mobile-motif-h,var(--motif-h))}}.Section-module_section__7UvMm{--motif-right:calc(100 - var(--motif-width) - var(--motif-left));--motif-bottom:calc(100 - var(--motif-height) - var(--motif-top));--motif-center-x:calc(var(--motif-left, 50) + var(--motif-width, 0)/2);--motif-center-y:calc(var(--motif-top, 50) + var(--motif-height, 0)/2);--backdrop-display-width:calc(var(--backdrop-width)*100*var(--vh)/var(--backdrop-height));--motif-display-center-x:calc(var(--motif-center-x)/100*var(--backdrop-display-width));--backdrop-translate-x:min(0px,max(100 * var(--vw) - var(--backdrop-display-width),var(--motif-display-center-x) * -1 + 50 * var(--vw)));--backdrop-positioner-transform:translateX(var(--backdrop-translate-x));--backdrop-positioner-width:var(--backdrop-display-width);--backdrop-positioner-height:100%;--backdrop-display-height:calc(var(--backdrop-height)*100*var(--vw)/var(--backdrop-width));--motif-display-center-y:calc(var(--motif-center-y)/100*var(--backdrop-display-height));--backdrop-translate-y:min(0px,max(calc(var(--vh)*100 - var(--backdrop-display-height)),calc(var(--motif-display-center-y)*-1 + var(--vh)*50)));--backdrop-positioner-min-ar-transform:translateY(var(--backdrop-translate-y));--backdrop-positioner-min-ar-width:calc(var(--vw)*100);--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) + var(--vh)*100 - 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((var(--vw)*100 - var(--backdrop-display-width))*var(--motif-center-x)/100);--backdrop-translate-y:calc((var(--vh)*100 - var(--backdrop-display-height))*var(--motif-center-y)/100)}}.Section-module_exposeMotifArea__2rsq_{--inline-content-max-width:calc(var(--vw)*100);--motif-placeholder-width:calc(var(--vw)*100);--motif-placeholder-min-ar-width:calc(var(--vw)*100);--remaining-width:calc(var(--vw)*100 - var(--inline-content-max-width) - var(--vw)*8 - 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) - var(--vw)*100);--motif-placeholder-width:calc((var(--motif-right)/100 + 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)/100 + var(--motif-width)/100)*var(--backdrop-display-width) + var(--backdrop-translate-x));--motif-placeholder-min-ar-width:calc((var(--motif-left) + var(--motif-width))*var(--vw))}.SectionDecorator-module_wrapper__3sTk3{position:relative}.SectionDecorator-module_selected__1gcmF>section:before{content:"";display:block;position:absolute;border:1px solid;top:5px;left:5px;right:5px;bottom:5px;z-index:9;pointer-events:none}.SectionDecorator-module_transitionSelected__Wklk6>section:before{content:"";position:absolute;display:block;top:0;width:100%;border-top:2px dotted #fff;z-index:9;background-color:#555;opacity:.7}.SectionDecorator-module_controls__LVEJG{position:absolute;top:-33px;right:0;height:100%;width:50px;padding-left:20px;z-index:10;display:none}.SectionDecorator-module_selected__1gcmF .SectionDecorator-module_controls__LVEJG,.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_controls__LVEJG{display:block}.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_transitionToolbar-after__2_DVO{visibility:hidden}.SectionDecorator-module_toolbar__2Va1D{position:absolute;padding:10px 0 10px 10px;z-index:10;overflow:hidden}.SectionDecorator-module_transitionToolbar-before__KipOO{top:0}.SectionDecorator-module_transitionToolbar-after__2_DVO{bottom:-63px}.ActionButton-module_button__8gy6J{position:absolute;z-index:10;border:0;text-align:center;padding:8px;color:rgba(0,0,0,.8);background:#fff;border-radius:3px;font-size:13px;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.ActionButton-module_button__8gy6J:focus,.ActionButton-module_button__8gy6J:hover{color:#000}.ActionButton-module_button__8gy6J svg{fill:currentColor;vertical-align:bottom;margin-right:8px}.ActionButton-module_position-outside__1E_lp{top:calc(100% + .3em);right:-.8em}.ActionButton-module_position-outsideIndented__3vf-7{top:calc(100% + .3em);right:.5em}.ActionButton-module_position-inside__28_gp{bottom:.5em;right:.5em}.ContentElementMargin-module_wrapper__20kIk{margin:1em 0 0}.index-module_newLine__1QnIs,.index-module_shy__1E2-J [data-slate-string]{position:relative}.index-module_selected__1U9ro.index-module_manualHyphens__16b2t .index-module_shy__1E2-J [data-slate-string]:before{content:" ";position:absolute;display:block;border:5px solid transparent;border-bottom-color:currentcolor;width:0;height:0;bottom:7px;left:-5px;opacity:.7}.index-module_newLine__1QnIs:before{content:"\21B5";position:absolute;display:block;font-size:13px;font-weight:400;bottom:2px;left:2px;opacity:0}.index-module_selected__1U9ro .index-module_newLine__1QnIs:before{opacity:.7}.index-module_shy__1E2-J{overflow-wrap:normal}.index-module_container__3dD9z{position:relative}.index-module_shy__KgWjc{overflow-wrap:normal}.index-module_shy__KgWjc [data-slate-string]{position:relative}.index-module_selected__mE58y .index-module_shy__KgWjc [data-slate-string]:before{content:" ";position:absolute;display:block;border:5px solid transparent;border-bottom-color:currentcolor;width:0;height:0;bottom:1px;left:-5px;opacity:.7}.index-module_hoveringToolbarContainer__3xVEz{position:relative}.index-module_hoveringToolbar__31Xpd{position:absolute;z-index:2;top:-10000px;left:-10000px;opacity:0;white-space:nowrap}.index-module_selection__3dUiD{display:none;position:absolute;z-index:1;width:100%;pointer-events:none}.index-module_linkTooltip__36m1K{background-color:#222;color:#fff;border-radius:4px;font-family:Helvetica,Arial,"Sans-Serif";font-size:13px;line-height:1;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.index-module_linkTooltip__36m1K:before{content:"";display:block;position:absolute;left:20px;border:4px solid transparent}.index-module_linkTooltip-below__1wvl7:before{bottom:100%;border-bottom:4px solid #222}.index-module_linkTooltip-above__P3YfD:before{top:100%;border-top:4px solid #222}.index-module_linkTooltip__36m1K>a,.index-module_linkTooltip__36m1K>span{color:#fff;background-color:transparent;border:0;display:inline-block;padding:10px}.index-module_linkTooltip__36m1K>a svg{padding-left:7px}.index-module_linkTooltipThumbnail__2v-cf{width:200px;height:120px;position:relative;margin:5px}.index-module_linkTooltipThumbnailClickMask__2Z3ff{position:absolute;top:0;left:0;bottom:0;right:0}.index-module_linkTooltipNewTab__4tnLF{opacity:.7;padding:0 10px 10px;text-decoration:none}.index-module_linkTooltipChapterNumber__2CsQA{font-weight:700}.SelectionRect-module_main__3AOhG{position:relative}.SelectionRect-module_main__3AOhG:after,.SelectionRect-module_main__3AOhG:before{content:"";position:absolute;top:-.5em;left:-.5em;right:-.5em;bottom:-.5em;pointer-events:none;opacity:.8}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF):before{top:5px}.SelectionRect-module_full__3tsQF:after,.SelectionRect-module_full__3tsQF:before{left:0;right:0}.SelectionRect-module_selected__1PhM6:before{border-left:1px solid}.SelectionRect-module_selected__1PhM6:after{border-right:1px solid}.SelectionRect-module_toolbar__3nPrd{position:absolute;top:-40px;right:-15px;z-index:2;pointer-events:auto}.SelectionRect-module_insert__w0Tl0{display:none;text-align:center;position:absolute;width:100%;opacity:.8;pointer-events:none;z-index:1}.SelectionRect-module_insertHovered__VTsDD.SelectionRect-module_insert__w0Tl0{opacity:1}.SelectionRect-module_end__3qOoK .SelectionRect-module_insert-after__3FJ4R,.SelectionRect-module_start__3_nAf .SelectionRect-module_insert-before__2Tyq5{display:block}.SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_insert__w0Tl0:before{content:"";position:absolute;top:0;width:calc(50% - 5px);height:0;border-bottom:1px solid}.SelectionRect-module_insert__w0Tl0:before{left:-.5em}.SelectionRect-module_insert__w0Tl0:after{right:-.5em}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF) .SelectionRect-module_insert-before__2Tyq5:before{left:5px;width:calc(50% - 10px - .5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{width:calc(50% - 5px - .5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{left:0}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after{right:0}.SelectionRect-module_insertButton__1g-ZG{pointer-events:auto;border:0;background:none;color:currentColor;display:inline-block;vertical-align:top;position:relative;top:-9px;padding:2px 10px}.SelectionRect-module_insert-before__2Tyq5{top:-.5em}.SelectionRect-module_insert-after__3FJ4R{top:calc(100% + .5em)}.SelectionRect-module_dragHandle__2vVhP{position:absolute;top:-7px;left:10px;transform:translate(-100%,-50%);z-index:1;visibility:hidden;padding:10px;cursor:move;pointer-events:auto}.SelectionRect-module_selected__1PhM6 .SelectionRect-module_dragHandle__2vVhP{visibility:visible}.SelectionRect-module_full__3tsQF .SelectionRect-module_dragHandle__2vVhP{left:0;top:0;transform:translate(0);background:radial-gradient(rgba(0,0,0,.72),transparent 50%)}.SelectionRect-module_dragHandle__2vVhP svg{display:block;color:currentColor;width:15px;height:15px;opacity:.8}.SelectionRect-module_dragHandle__2vVhP:hover svg{opacity:1}.SelectionRect-module_full__3tsQF .SelectionRect-module_dragHandle__2vVhP svg{color:#fff}.DropTargets-module_target__Z2N2d{position:absolute;height:50%;width:100%;left:-50px;padding-left:50px;padding-bottom:.5em;opacity:.8}.DropTargets-module_target__Z2N2d:before{content:"";position:absolute;display:block;left:50px;right:0}.DropTargets-module_target__Z2N2d.DropTargets-module_isOver__3ksFy:before{border-top:2px solid}.DropTargets-module_before__cAXo1{top:-.5em}.DropTargets-module_before__cAXo1:before{top:-1px}.DropTargets-module_after__2Q8QU{top:50%}.DropTargets-module_after__2Q8QU:before{top:calc(100% - 1px)}.Toolbar-module_Toolbar__1INSj{background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);border-radius:3px;overflow:hidden;display:flex;gap:2px}.Toolbar-module_button__de5BW{border:0;background:#fff;padding:10px;opacity:.6}.Toolbar-module_button__de5BW:hover{opacity:1}.Toolbar-module_activeButton__2sOLP{background:#ddd;opacity:1}@media (max-width:460px){.Toolbar-module_collapsible__3sivb .Toolbar-module_button__de5BW{display:none}.Toolbar-module_collapsible__3sivb .Toolbar-module_activeButton__2sOLP,.Toolbar-module_collapsible__3sivb:focus-within .Toolbar-module_button__de5BW,.Toolbar-module_collapsible__3sivb:hover .Toolbar-module_button__de5BW{display:inline-block}}.ContentElementInsertButton-module_container__3dvUS{height:0;position:relative;top:1em;opacity:.8;display:flex;justify-content:center}.ContentElementInsertButton-module_hovered__3Pggi{opacity:1}.ContentElementInsertButton-module_container__3dvUS:after,.ContentElementInsertButton-module_container__3dvUS:before{content:"";border-top:1px solid;width:calc(50% - 20px);position:absolute;top:0}.ContentElementInsertButton-module_container__3dvUS:before{left:0}.ContentElementInsertButton-module_container__3dvUS:after{right:0}.ContentElementInsertButton-module_button__2-eE2{border:0;background:none;color:currentColor;position:relative;top:-8px}.TextPlaceholder-module_placeholder__sgVwx{pointer-events:none;opacity:.5;height:0}.TextPlaceholder-module_placeholder__sgVwx>div{transform:translateY(-100%)}.DropTargets-module_container__3vudG{position:absolute;top:-.5em;left:-50px;width:100%;height:100%;padding:.5em 0 8px 50px}.DropTargets-module_dropTarget__3mmox{position:absolute;left:0;width:100%;opacity:.8}.DropTargets-module_dropIndicator__2zu4d{position:absolute;left:50px;right:0;border-top:2px solid;opacity:0}.DropTargets-module_isOver__2usWn .DropTargets-module_dropIndicator__2zu4d{opacity:1}.FillColor-module_FillColor__S1uEG{width:100%}@media print{.FillColor-module_FillColor__S1uEG{display:none}}.Positioner-module_wrapper__3iFSg{position:relative;transform:var(--backdrop-positioner-transform);width:var(--backdrop-positioner-width);height:var(--backdrop-positioner-height)}.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}.Picture-module_root__1BCCg{position:absolute;top:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.MotifArea-module_root__2gOCe{left:calc(var(--motif-left)*1%);top:calc(var(--motif-top)*1%);width:calc(var(--motif-width)*1%);height:calc(var(--motif-height)*1%)}.Effects-module_effects__MDZRR{height:100%;filter:var(--filter)}@media (orientation:portrait){.Effects-module_effects__MDZRR{filter:var(--mobile-filter)}}.globalNotices{z-index:100000000;position:fixed;bottom:10px;left:10px}@supports not (old:ie){.unsupported{display:none}}.globalNotices div{background:#fff;padding:20px;max-width:240px;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);font-family:Source Sans Pro;border-top:2px solid #a50e0e;margin-top:10px}:root{--vw:1vw;--vh:1vh;--root-light-content-surface-color:var(--theme-light-content-surface-color,#fff);--root-dark-content-surface-color:var(--theme-dark-content-surface-color,#101010);--root-light-content-text-color:var(--theme-light-content-text-color,#fff);--root-dark-content-text-color:var(--theme-dark-content-text-color,#222)}body{margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.colors-module_contentColorScope__2Zizr{--theme-light-content-surface-color:var(--root-light-content-surface-color);--theme-dark-content-surface-color:var(--root-dark-content-surface-color);--theme-light-content-text-color:var(--root-light-content-text-color);--theme-dark-content-text-color:var(--root-dark-content-text-color)}.Figure-module_root__3FC-x{margin:0}.Figure-module_root__3FC-x>figcaption{padding:3px 10px 5px;background-color:var(--theme-light-content-surface-color,#fff);color:var(--theme-dark-content-text-color,#222)}.Figure-module_root__3FC-x>figcaption p{margin:0}.Figure-module_root__3FC-x>figcaption a{color:var(--content-link-color)}.Figure-module_invert___0BJP>figcaption{background-color:var(--theme-dark-content-surface-color,#101010);color:var(--theme-light-content-text-color,#fff)}.ContentElementBox-module_wrapper__3wZgP{overflow:hidden;border-radius:var(--theme-content-element-box-border-radius)}.Waveform-module_container__1Dxdv{position:relative;z-index:1;width:100%;min-height:140px;height:100%}.Waveform-module_clickMask__3LYAT{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer}.Waveform-module_menuBar__342n-{position:absolute;bottom:0;right:0;width:100%;height:40px;z-index:2;display:flex;align-items:flex-end;justify-content:flex-end}.Waveform-module_menuBarInner__3wjQs{display:flex;align-items:center;justify-content:flex-end;height:100%}.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_wrapper__2lFoI{position:relative}.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 .2s,visibility .2s;position:absolute;right:5px;bottom:38px;margin:0;padding:5px;background-color:rgba(17,17,17,.9);border-radius:3px}.MenuBarButton-module_subMenu__f-E-X:after{content:"";display:block;border:5px solid transparent;border-top-color:rgba(17,17,17,.9);position:absolute;right:11px;top:100%}.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_lightBackground__3-tGf{background:hsla(0,0%,100%,.2)}.ControlBar-module_darkBackground__31Wv7{background:rgba(0,0,0,.2)}.ControlBar-module_controlBarContainer__1cxRO{box-sizing:border-box;width:100%;display:flex;align-items:flex-end}.ControlBar-module_inset__JvBh9{position:absolute;bottom:0;color:#fff;background:transparent;z-index:3}.ControlBar-module_controlBarInner__39fE9,.ControlBar-module_inset__JvBh9:before{transition:opacity .2s ease}.ControlBar-module_inset__JvBh9:before{content:"";position:absolute;width:100%;height:100%;background:linear-gradient(0deg,rgba(0,0,0,.8),transparent);z-index:-1}.ControlBar-module_controlBarInner__39fE9{display:flex;align-items:center;flex:1}.ControlBar-module_transparent__eS4af .ControlBar-module_controlBarInner__39fE9,.ControlBar-module_transparent__eS4af.ControlBar-module_inset__JvBh9:before{opacity:0}.ControlBar-module_button___4aXE{width:40px;height:40px;margin:0 2px;display:flex;align-items:center;justify-content:center;color:currentColor;cursor:pointer}.ControlBar-module_button___4aXE svg{fill:currentColor;width:30px;height:30px}.utils-module_clip__34eot{-webkit-clip-path:polygon(0 0,100% 0,100% 110%,0 110%);clip-path:polygon(0 0,100% 0,100% 110%,0 110%)}.utils-module_unstyledButton__3rgne{border:0;padding:0;background-color:transparent;text-align:initial}.BigPlayPauseButton-module_container__19sKj{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.BigPlayPauseButton-module_pointerCursor__2A55P{cursor:pointer}.BigPlayPauseButton-module_hideCursor__2Hyys{cursor:none}.BigPlayPauseButton-module_button__10g4Q{background:radial-gradient(rgba(0,0,0,.5),transparent 60%);width:64px;height:64px;display:flex;align-items:center;justify-content:center;-webkit-animation-duration:.7s;animation-duration:.7s;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.BigPlayPauseButton-module_button__10g4Q svg{fill:#fff;width:56px;height:56px}.BigPlayPauseButton-module_hidden__1KUzr{opacity:0}.BigPlayPauseButton-module_animated__1MMNq{-webkit-animation-name:BigPlayPauseButton-module_fadeOut__2vcA_;animation-name:BigPlayPauseButton-module_fadeOut__2vcA_}.BigPlayPauseButton-module_fadeIn__1Ge1-{-webkit-animation-name:BigPlayPauseButton-module_fadeIn__1Ge1-;animation-name:BigPlayPauseButton-module_fadeIn__1Ge1-}@-webkit-keyframes BigPlayPauseButton-module_fadeOut__2vcA_{to{opacity:0;transform:scale(1.5)}}@keyframes BigPlayPauseButton-module_fadeOut__2vcA_{to{opacity:0;transform:scale(1.5)}}@-webkit-keyframes BigPlayPauseButton-module_fadeIn__1Ge1-{0%{opacity:0;transform:scale(1.3)}}@keyframes BigPlayPauseButton-module_fadeIn__1Ge1-{0%{opacity:0;transform:scale(1.3)}}.ProgressIndicators-module_container__1QiQJ{flex-grow:1}.ProgressIndicators-module_wrapper__2PCVv{margin:0 10px;position:relative}.ProgressIndicators-module_draggable__1iAE8{height:32px;padding:13px 0;box-sizing:border-box;cursor:pointer}.ProgressIndicators-module_bars__2-ddd{position:relative;height:6px;border-radius:3.5px}.ProgressIndicators-module_progressBar__2PYn-{position:absolute;left:0;height:6px;border-radius:2.5px;background:currentColor}.ProgressIndicators-module_background__-x5f_{opacity:.1;width:100%}.ProgressIndicators-module_loadingProgressBar__YD2GH{opacity:.1}.ProgressIndicators-module_sliderHandle__3ArIf{width:14px;height:14px;margin-left:-6.5px;border-radius:6.5px;position:absolute;top:-4px;background:currentColor;opacity:0;transition:opacity .1s}.ProgressIndicators-module_container__1QiQJ:hover .ProgressIndicators-module_sliderHandle__3ArIf,.ProgressIndicators-module_dragging__3yY3t .ProgressIndicators-module_sliderHandle__3ArIf{opacity:1}.FitViewport-module_container__-awVj{width:100%;margin:0 auto}.FitViewport-module_content__1_K5a{position:relative}.FitViewport-module_inner__3psd1{position:absolute;top:0;left:0;right:0;bottom:0}.FitViewport-module_opaque__3EE3o .FitViewport-module_inner__3psd1{background-color:#000;color:#fff}@media print{.FitViewport-module_container__-awVj{page-break-inside:avoid}}.Tooltip-module_container__3V63U{position:relative;display:inline-block}.Tooltip-module_bubble__FIL1C{position:absolute;top:100%;left:50%;opacity:0;visibility:hidden;z-index:1;border-radius:5px;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);font-size:13px;width:180px;transform-origin:50% 0;transform:translateX(-50%);transition:visibility .1s linear,opacity .1s linear}.Tooltip-module_container__3V63U:focus-within .Tooltip-module_bubble__FIL1C,.Tooltip-module_fixed__3NGyG .Tooltip-module_bubble__FIL1C,.Tooltip-module_openOnHover__1EeI5:hover .Tooltip-module_bubble__FIL1C{-webkit-animation:Tooltip-module_fadeIn__3g9QH .1s ease-out 0s 1 alternate;animation:Tooltip-module_fadeIn__3g9QH .1s ease-out 0s 1 alternate;opacity:1;visibility:visible}.Tooltip-module_openOnHover__1EeI5 .Tooltip-module_bubble__FIL1C{pointer-events:none}@-webkit-keyframes Tooltip-module_fadeIn__3g9QH{0%{transform:translateX(-50%) scale(.9)}to{transform:translateX(-50%) scale(1)}}@keyframes Tooltip-module_fadeIn__3g9QH{0%{transform:translateX(-50%) scale(.9)}to{transform:translateX(-50%) scale(1)}}.Tooltip-module_inner__E2hsp{position:relative;z-index:2;background:var(--theme-widget-surface-color);color:var(--theme-widget-on-surface-color);border-radius:5px;padding:10px}.Tooltip-module_highlight__2NpuQ .Tooltip-module_inner__E2hsp{border-bottom:3px solid var(--theme-accent-color)}.Tooltip-module_arrow__3LxXo{position:absolute;width:5px;height:5px;background:var(--theme-widget-surface-color);box-shadow:1px 1px 3px 0 rgba(0,0,0,.2),1px 1px 4px 0 rgba(0,0,0,.14),0 0 8px 0 rgba(0,0,0,.12);border:4px solid transparent;z-index:1;transform:translateX(-50%) translateY(50%) rotate(45deg);bottom:100%;left:50%}
|
1
|
+
.GradientBox-module_content__96lDk{position:relative;pointer-events:auto}.GradientBox-module_shadow__2XilX{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none;max-height:var(--zero-if-two-column,0)}.GradientBox-module_gradient__31tJ- .GradientBox-module_shadow__2XilX{max-height:none}.GradientBox-module_long__10s6v .GradientBox-module_shadow__2XilX{bottom:-100vh}.GradientBox-module_root__8Xn9W .GradientBox-module_withShadow__3mhPR{text-shadow:0 1px min(5px,var(--zero-if-two-column)) #000}.GradientBox-module_gradient__31tJ- .GradientBox-module_withShadow__3mhPR{text-shadow:0 1px 5px #000}.GradientBox-module_shadowDark__3Tv0L{background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.5) 100px,rgba(0,0,0,.5))}.GradientBox-module_shadowLight__Bieg6{background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.5) 100px,hsla(0,0%,100%,.5))}@media print{.GradientBox-module_root__8Xn9W{padding-top:0!important}.GradientBox-module_shadow__2XilX{display:none}}.Image-module_fill__1D1wH{position:absolute;top:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.Image-module_contain__3_XWB{-o-object-fit:contain;object-fit:contain}.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_headingTagline-lg__1O2TQ,.Text-module_headingTagline-md__2hrVS{font-size:33px;line-height:1.2}.Text-module_headingTagline-sm__1Fw2J{font-size:22px;line-height:1.4}.Text-module_headingSubtitle-lg__15kj0,.Text-module_headingSubtitle-md__2_qtz{font-size:44px;line-height:1.2}.Text-module_headingSubtitle-sm__MOc_6{font-size:26px;line-height:1.2}.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-weight:700}.Text-module_question__ByVAq,.Text-module_questionAnswer__2Hdmc{font-size:22px;line-height:1.4}.Text-module_quoteText-lg__3ZnZi{font-size:50px;line-height:1.1}.Text-module_quoteText-md__2eooO{font-size:40px;line-height:1.1}.Text-module_quoteText-sm__5nKex{font-size:33px;line-height:1.2}.Text-module_quoteText-xs__2p5on{font-size:26px;line-height:1.2}.Text-module_quoteAttribution__VBqLw{font-size:22px;line-height:1.4}.Text-module_counterNumber-lg__2myJg{font-size:350px;line-height:1;font-weight:700}.Text-module_counterNumber-md__1NC3q{font-size:200px;line-height:1;font-weight:700}.Text-module_counterNumber-sm__2SwHQ{font-size:110px;line-height:1;font-weight:700}.Text-module_counterNumber-xs__1D-YR{font-size:66px;line-height:1;font-weight:700}.Text-module_counterDescription__34NjQ{font-size:22px;line-height:1.4}.Text-module_hotspotsTooltipTitle__2KROf{font-size:18px;line-height:1.4;font-weight:700}.Text-module_hotspotsTooltipDescription__2l9v5{font-size:18px;line-height:1.4}.Text-module_hotspotsTooltipLink__2F2aj{font-size:16px;line-height:1.4;font-weight:700}.Text-module_teaserTitle-lg__K3MFG{line-height:1.3;font-weight:700;font-size:20px}.Text-module_teaserTitle-md__tBZIn{line-height:1.3;font-weight:700;font-size:19.8px}.Text-module_teaserTitle-sm__ZXQCr{line-height:1.3;font-weight:700;font-size:19.2px}.Text-module_teaserTagline-lg__8JW7Z{line-height:1.3;font-size:20px;margin-bottom:.25rem}.Text-module_teaserTagline-md__45HLL{line-height:1.3;font-size:18px;margin-bottom:.25rem}.Text-module_teaserTagline-sm__1vzOr{line-height:1.3;font-size:16px;margin-bottom:.25rem}.Text-module_teaserDescription-lg__1ysIZ{line-height:1.3;font-size:20px}.Text-module_teaserDescription-md__1JtRs{line-height:1.3;font-size:18px}.Text-module_teaserDescription-sm__2VRao{line-height:1.3;font-size:16px}.Text-module_infoTableLabel__w9kbv{font-size:20px;line-height:1.4;font-weight:600}.Text-module_infoTableValue__2elOY{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}.Text-module_headingTagline-lg__1O2TQ{font-size:26px;line-height:1.2}.Text-module_headingTagline-md__2hrVS,.Text-module_headingTagline-sm__1Fw2J{font-size:22px;line-height:1.4}.Text-module_headingSubtitle-lg__15kj0{font-size:33px;line-height:1.2}.Text-module_headingSubtitle-md__2_qtz,.Text-module_headingSubtitle-sm__MOc_6{font-size:26px;line-height:1.2}.Text-module_quoteText-lg__3ZnZi{font-size:40px;line-height:1.1}.Text-module_quoteText-md__2eooO{font-size:33px;line-height:1.2}.Text-module_quoteText-sm__5nKex,.Text-module_quoteText-xs__2p5on{font-size:22px;line-height:1.4}.Text-module_counterNumber-lg__2myJg{font-size:200px;line-height:1}.Text-module_counterNumber-md__1NC3q{font-size:110px;line-height:1}.Text-module_counterNumber-sm__2SwHQ{font-size:66px;line-height:1.1}.Text-module_counterNumber-xs__1D-YR{font-size:40px;line-height:1.1}.Text-module_teaserTitle-md__tBZIn{font-size:18px}.Text-module_teaserTitle-sm__ZXQCr{font-size:16px}}.ToggleFullscreenCornerButton-module_corner__CxAAH{position:absolute;right:0;top:0;color:#fff}.ToggleFullscreenCornerButton-module_corner__CxAAH svg{filter:drop-shadow(0 1px 4px #000)}.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%}x.EditableTable-module_table__uncog{white-space:pre-line}.EditableTable-module_table__uncog[data-stacked] td,.EditableTable-module_table__uncog[data-stacked] tr{display:block}.Content-module_Content__m7urk{font-family:var(--theme-entry-font-family);overflow:clip}@media screen{.Content-module_Content__m7urk{background-color:#000;color:#fff}}.EditableInlineText-module_root__3eA-J{-webkit-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;hyphens:manual;word-wrap:break-word}.EditableInlineText-module_hyphens-none__1UvNH{-webkit-hyphens:none;hyphens:none;word-wrap:normal}.EditableInlineText-module_textEffects__Wqvj0{padding:var(--text-highlight-padding);line-height:var(--text-highlight-line-height);-webkit-box-decoration-break:clone;box-decoration-break:clone}.EditableInlineText-module_textEffects__Wqvj0:not(:has([data-slate-zero-width=n])){background-color:var(--text-highlight-background-color)}.EditableInlineText-module_textEffects__Wqvj0>span{color:var(--background-clip-text-fallback-color);padding:var(--background-clip-text-padding);-webkit-box-decoration-break:clone;box-decoration-break:clone}@supports (((-webkit-background-clip:text) or (background-clip:text)) or (-webkit-background-clip:text)){.EditableInlineText-module_textEffects__Wqvj0>span{background:var(--background-clip-text-background);background-clip:var(--background-clip-text-background-clip);color:var(--background-clip-text-color);caret-color:var(--background-clip-text-fallback-color)}}.useScrollPositionLifecycle-module_wrapper__1a6Kr{position:relative}.useScrollPositionLifecycle-module_isActiveProbe__3VKB5{position:absolute;top:0;left:0;bottom:2px;width:1px}.InlineFileRights-module_list__2OuO5,.InlineFileRights-module_list__2OuO5>li{text-align:left;padding:0;margin:0;list-style:none}.EditableText-module_root__2v1tU{white-space:pre-line}.EditableText-module_justify__1pNdv{text-align:justify}ol.EditableText-module_justify__1pNdv,ul.EditableText-module_justify__1pNdv{list-style-position:outside!important}.EditableText-module_light__2c29h{color:var(--theme-light-content-text-color,#fff)}.EditableText-module_dark__2ym90{color:var(--theme-dark-content-text-color,#222)}.EditableText-module_link__3vDbl{color:var(--content-link-color)}.EditableText-module_bold__tGw26{font-weight:var(--theme-editable-text-bold-font-weight,bold)}.AudioPlayer-module_spaceForTextTracks__169MK{height:100%}.AudioPlayer-module_spaceForTextTracksActive__99m7R{height:90px}.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}.video-js{font-family:inherit!important}.vjs-text-track-display{z-index:2}.textTracks-module_inset__K7DIL .vjs-text-track-display{bottom:40px}.vjs-text-track-display div{font-family:inherit!important;font-size:20px!important}.vjs-text-track-display>div>div>div{padding:0 4px 2px}.vjs-paused .vjs-text-track-display div{transition:opacity .2s,visibility .2s;opacity:0;visibility:hidden!important}.index-module_wrapper__ilo7n{height:100%;width:100%;background-color:rgba(0,0,0,.9);opacity:0;transition:opacity .2s linear;font-family:var(--theme-entry-font-family)}.index-module_visible__6QUDn{opacity:1}@supports (-webkit-touch-callout:none){.index-module_wrapper__ilo7n{transform:scale(1);height:calc(var(--vh)*100)}}.scrollInConceal-module_backdrop__2OJJC{position:sticky;top:0;height:0}.scrollInScrollOut-module_backdrop__XzCge{position:absolute;top:0;bottom:0}.scrollInScrollOut-module_backdropInner__1ftIm{position:sticky;top:0;height:calc(var(--vh)*100)}.fadeInBgFadeOut-module_backdrop__r0YXp{position:absolute;height: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;pointer-events:none}.fadeInBgFadeOut-module_foreground__Q2vkT{transition:opacity .5s ease,visibility .5s}.fadeInBgFadeOut-module_foreground-above__3pmz9{opacity:0;visibility:hidden}.fadeInBgScrollOut-module_backdrop__1bSsb{position:absolute;top:0;bottom:0;display:flex;flex-direction:column;justify-content:flex-end}.fadeInBgScrollOut-module_backdropInner__3JZBG{position:sticky;bottom:0;width:100%}.fadeInBgScrollOut-module_backdropInner2__q-00L{position:absolute;bottom:0;width:100%}.fadeInBgScrollOut-module_foreground__1ODH9{min-height:100vh}.fadeInBgScrollOut-module_backdrop__1bSsb{transition:opacity .5s ease}.fadeInBgScrollOut-module_backdrop-below__2Dbkr{opacity:0;pointer-events:none}.fadeInBgConceal-module_backdrop__11JGO{position:absolute;height:100%}.fadeInBgConceal-module_backdrop__11JGO{transition:opacity .5s ease}.fadeInBgConceal-module_backdrop-below__3E6Uk{opacity:0;pointer-events:none}.fadeInBgFadeOutBg-module_backdrop__15ocl{position:absolute;height: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;pointer-events:none}.fadeInFadeOutBg-module_backdrop__2-IF3{position:absolute;height: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;pointer-events:none}.fadeInFadeOutBg-module_foreground__24f_M{transition:opacity .5s ease,visibility .5s}.fadeInFadeOutBg-module_foreground-below__3pTRc{opacity:0;visibility:hidden}.revealFadeOut-module_backdrop___Q1QF{position:absolute;height:calc(100% + 100vh)}.revealFadeOut-module_backdropInner__17qRn{transform:translateZ(0);backface-visibility:hidden}.revealFadeOut-module_foreground__1GzBs{transition:opacity .5s ease,visibility .5s}.revealFadeOut-module_foreground-above__3GxOf{opacity:0;visibility:hidden}.fadeInFadeOut-module_backdrop__Y4xOA{position:absolute;height:100%}.fadeInFadeOut-module_backdrop__Y4xOA .fadeInFadeOut-module_backdropInner__1oRfP{transition:opacity .5s ease}.fadeInFadeOut-module_backdrop-below__1h2I4 .fadeInFadeOut-module_backdropInner__1oRfP{opacity:0;pointer-events:none}.fadeInFadeOut-module_foreground__1eleZ{transition:opacity .5s ease,visibility .5s}.fadeInFadeOut-module_foreground-above__249wa,.fadeInFadeOut-module_foreground-below__3mE6f{opacity:0;visibility:hidden}.fadeInConceal-module_backdrop__1zaRO{position:absolute;height:100%}.fadeInConceal-module_backdrop__1zaRO{transition:opacity .5s ease}.fadeInConceal-module_backdrop-below__AWyQe{opacity:0;pointer-events:none}.fadeInConceal-module_foreground__3giM9{transition:opacity .5s ease,visibility .5s}.fadeInConceal-module_foreground-below__2z5Op{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;pointer-events:none}.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);backface-visibility:hidden}.revealScrollOut-module_backdropInner2__v6WqM{position:absolute;bottom:0;width:100%}.revealConceal-module_backdrop__dLUhU{position:absolute;height:100%}.revealConceal-module_backdropInner__2k1Z-{transform:translateZ(0);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}.revealFadeOutBg-module_backdrop__30OCF{position:absolute;height:calc(100% + 100vh)}.revealFadeOutBg-module_backdropInner__3v3tM{transform:translateZ(0);backface-visibility:hidden}.revealFadeOutBg-module_boxShadow__1NZRz{transition:opacity 1s ease}.revealFadeOutBg-module_boxShadow-above__2r4ov{opacity:0!important;pointer-events:none}.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;pointer-events:none}body>#root [tabindex]:focus,body>#root a:focus,body>#root button:focus{outline:3px solid #518ad2}.focusOutline-module_focusOutlineDisabled__KV7d->#root [tabindex]:focus,.focusOutline-module_focusOutlineDisabled__KV7d->#root a:focus,.focusOutline-module_focusOutlineDisabled__KV7d->#root button:focus{outline:none}.Fullscreen-module_root__1N3CI{width:100%;height:calc(var(--vh)*100);position:relative;overflow:clip}@media print{.Fullscreen-module_root__1N3CI{height:400px}}.ToggleFullscreenButton-module_button__2n69-{width:40px;height:40px;margin:0 2px;display:flex;align-items:center;justify-content:center;color:currentColor;cursor:pointer}.ToggleFullscreenButton-module_button__2n69- svg{fill:currentColor;width:21px;height:21px}.Section-module_Section__Yo58b{position:relative;--section-max-width:var(--theme-section-max-width);--content-margin-fraction:var(--theme-content-margin-fraction,0.08);--content-margin:var(--theme-content-margin,calc(var(--content-margin-fraction)*100%));--two-column-inline-content-max-width:var(--theme-two-column-inline-content-max-width);--two-column-inline-lg-content-max-width:var(--theme-two-column-inline-lg-content-max-width);--two-column-inline-xl-content-max-width:var(--theme-two-column-inline-xl-content-max-width);--two-column-sticky-content-max-width:var(--theme-two-column-sticky-content-max-width);--two-column-sticky-lg-content-max-width:var(--theme-two-column-sticky-lg-content-max-width);--two-column-sticky-xl-content-max-width:var(--theme-two-column-sticky-xl-content-max-width);--centered-inline-content-max-width:var(--theme-centered-inline-content-max-width);--centered-inline-lg-content-max-width:var(--theme-centered-inline-lg-content-max-width);--centered-inline-xl-content-max-width:var(--theme-centered-inline-xl-content-max-width);--foreground-padding-top:0px}.Section-module_first__1vLBH{--foreground-padding-top:var(--theme-widget-margin-top,58px)}.Section-module_narrow__3Dawu{--section-max-width:var(--theme-narrow-section-max-width);--content-margin-fraction:var(--theme-narrow-section-content-margin-fraction,var(--theme-content-margin-fraction,0.08));--content-margin:var(--theme-narrow-section-content-margin,calc(var(--content-margin-fraction)*100%));--two-column-inline-content-max-width:var(--theme-narrow-section-two-column-inline-content-max-width);--two-column-inline-lg-content-max-width:var(--theme-narrow-section-two-column-inline-lg-content-max-width);--two-column-inline-xl-content-max-width:var(--theme-narrow-section-two-column-inline-xl-content-max-width);--two-column-sticky-content-max-width:var(--theme-narrow-section-two-column-sticky-content-max-width);--two-column-sticky-lg-content-max-width:var(--theme-narrow-section-two-column-sticky-lg-content-max-width);--two-column-sticky-xl-content-max-width:var(--theme-narrow-section-two-column-sticky-xl-content-max-width);--centered-inline-content-max-width:var(--theme-narrow-section-centered-inline-content-max-width);--centered-inline-lg-content-max-width:var(--theme-narrow-section-centered-inline-lg-content-max-width);--centered-inline-xl-content-max-width:var(--theme-narrow-section-centered-inline-xl-content-max-width)}@media screen{.Section-module_lightContent__1hqim{color:var(--theme-light-content-text-color,#fff);--content-text-color:var(--theme-light-content-text-color,#fff);--content-link-color:var(--theme-light-content-link-color,var(--theme-content-link-color,currentColor));background-color:#000}.Section-module_darkContent__20cnO{background-color:#fff;color:var(--theme-dark-content-text-color,#222);--content-text-color:var(--theme-dark-content-text-color,#222);--content-link-color:var(--theme-dark-content-link-color,var(--theme-content-link-color,currentColor))}}.OptIn-module_optIn__3nHo1{padding:15px;display:flex;flex-direction:column;width:100%;height:100%;text-align:center;align-items:center;justify-content:center;box-sizing:border-box}.OptIn-module_optInIcon__3-81I svg{fill:currentColor;height:90px}.OptIn-module_optInMessage__1OfTR{margin:1em 0 1.5em}@media (max-width:600px){.OptIn-module_optInIcon__3-81I svg{height:50px}.OptIn-module_optInMessage__1OfTR{margin:.5em 0 1em}}@media (max-width:400px){.OptIn-module_optInIcon__3-81I{display:none}}.OptIn-module_optInButton__1LhtX{padding:10px;background-color:transparent;color:currentColor;border:1px solid;border-radius:4px;cursor:pointer}.video-js{display:block;vertical-align:top;box-sizing:border-box;color:#fff;position:relative;padding:0;font-size:10px;line-height:1;font-weight:400;font-style:normal;font-family:Arial,Helvetica,sans-serif;-webkit-user-select:none;-moz-user-select:none;user-select:none}.video-js:-moz-full-screen{position:absolute}.video-js:-webkit-full-screen{width:100%!important;height:100%!important}.video-js *,.video-js :after,.video-js :before{box-sizing:inherit}.video-js ul{font-family:inherit;font-size:inherit;line-height:inherit;list-style-position:outside;margin:0}.video-js .vjs-tech{position:absolute;top:0;left:0;width:100%;height:100%}body.vjs-full-window{padding:0;margin:0;height:100%;overflow-y:auto}.vjs-full-window .video-js.vjs-fullscreen{position:fixed;overflow:hidden;z-index:1000;left:0;top:0;bottom:0;right:0}.video-js.vjs-fullscreen{width:100%!important;height:100%!important;padding-top:0!important}.video-js.vjs-fullscreen.vjs-user-inactive{cursor:none}.vjs-hidden{display:none!important}.vjs-disabled{opacity:.5;cursor:default}.video-js .vjs-offscreen{height:1px;left:-9999px;position:absolute;top:0;width:1px}.vjs-lock-showing{display:block!important;opacity:1;visibility:visible}.vjs-no-js{padding:20px;color:#fff;background-color:#000;font-size:18px;font-family:Arial,Helvetica,sans-serif;text-align:center;width:300px;height:150px;margin:0 auto}.vjs-no-js a,.vjs-no-js a:visited{color:#66a8cc}.vjs-poster{display:inline-block;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;background-color:#000;cursor:pointer;margin:0;position:absolute;top:0;right:0;bottom:0;left:0;height:100%}.vjs-poster,.vjs-poster img{vertical-align:middle;padding:0}.vjs-poster img{display:block;margin:0 auto;max-height:100%;width:100%}.vjs-has-started .vjs-poster{display:none}.vjs-audio.vjs-has-started .vjs-poster{display:block}.vjs-using-native-controls .vjs-poster{display:none}.vjs-text-track-display{position:absolute;bottom:0;left:0;right:0;top:0;pointer-events:none}.video-js .vjs-text-track{font-size:17px;text-align:center;margin-bottom:.1em;background-color:#000;background-color:rgba(0,0,0,.5)}.vjs-subtitles{color:#fff}.vjs-captions{color:#fc6}.vjs-tt-cue{display:block}@media print{.video-js>:not(.vjs-tech):not(.vjs-poster){visibility:hidden}}.vjs-resize-manager{border:none}.Viewer-module_full__1q18y{height:100%}.Viewer-module_container__3eJ34{background-color:#000;color:#fff;cursor:move}.Viewer-module_spinner__2oRve{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}@keyframes Viewer-module_spin__3jBR2{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.Fullscreen-module_wrapper__2MP7f{position:fixed;top:0;left:0;width:100%;height:100%;z-index:20000}.TwoColumn-module_root__37EqL{--layout-inline-content-max-width:var(--two-column-inline-content-max-width,500px);--layout-inline-lg-content-max-width:var(--two-column-inline-lg-content-max-width,700px);--layout-inline-xl-content-max-width:var(--two-column-inline-xl-content-max-width,1200px)}.TwoColumn-module_group__3Hg2y{padding-left:var(--content-margin);padding-right:var(--content-margin);margin-left:auto;margin-right:auto;max-width:var(--section-max-width,none)}.TwoColumn-module_group-full__2OT4o{padding-left:0;padding-right:0;max-width:none;width:100%}.TwoColumn-module_box__1Nils{max-width:var(--content-max-width)}.TwoColumn-module_inline__1fPfM{--content-max-width:var(--layout-inline-content-max-width)}.TwoColumn-module_inline__1fPfM.TwoColumn-module_width-lg__2MD35{--content-max-width:var(--layout-inline-lg-content-max-width)}.TwoColumn-module_inline__1fPfM.TwoColumn-module_width-xl__3Bxet{--content-max-width:var(--layout-inline-xl-content-max-width)}.TwoColumn-module_inline__1fPfM.TwoColumn-module_width-full__1QWYO{--content-max-width:unset}.TwoColumn-module_restrict-sm__2rKty,.TwoColumn-module_restrict-xs__AOezq,.TwoColumn-module_restrict-xxs__6il-H{margin:0 auto}.TwoColumn-module_align-left__QSe2G{margin-left:0}.TwoColumn-module_align-right__3Dn4i{margin-right:0}.TwoColumn-module_restrict-xxs__6il-H{width:30%}.TwoColumn-module_restrict-xs__AOezq{width:50%}.TwoColumn-module_restrict-sm__2rKty{width:70%}.TwoColumn-module_customMargin__o0uxH{--f:calc(1/(1 - var(--content-margin-fraction)*2));--margin-to-undo:var(--theme-content-margin,calc(100%*var(--content-margin-fraction)*var(--f)));margin-left:calc(var(--margin-to-undo)*-1);margin-right:calc(var(--margin-to-undo)*-1);max-width:calc(var(--margin-to-undo)*2 + var(--content-max-width))}.TwoColumn-module_right__Fr52a .TwoColumn-module_inline__1fPfM{margin-left:auto}.TwoColumn-module_side__2xx0s{--content-width:var(--theme-two-column-sticky-content-width,25vw);--content-max-width:min(var(--content-width),var(--two-column-sticky-content-max-width,600px));float:right;clear:both;top:33%;width:var(--content-width)}.TwoColumn-module_sticky__4LCDO{position:sticky}.TwoColumn-module_right__Fr52a .TwoColumn-module_side__2xx0s{float:left}.TwoColumn-module_side__2xx0s.TwoColumn-module_width-lg__2MD35{--content-width:var(--theme-two-column-sticky-lg-content-width,35vw);--content-max-width:min(var(--content-width),var(--two-column-sticky-lg-content-max-width,700px))}.TwoColumn-module_side__2xx0s.TwoColumn-module_width-xl__3Bxet{--content-width:var(--theme-two-column-sticky-xl-content-width,45vw);--content-max-width:min(var(--content-width),var(--two-column-sticky-xl-content-max-width,1000px))}.TwoColumn-module_side__2xx0s.TwoColumn-module_customMargin__o0uxH{width:100%}.Center-module_outer__3Rr0H{--layout-inline-content-max-width:var(--centered-inline-content-max-width,700px);--layout-inline-lg-content-max-width:var(--centered-inline-lg-content-max-width,950px);--layout-inline-xl-content-max-width:var(--centered-inline-xl-content-max-width,1200px);padding-left:var(--content-margin);padding-right:var(--content-margin);margin-left:auto;margin-right:auto;max-width:var(--section-max-width,none)}.Center-module_customMargin__1es3t,.Center-module_outer-full__3dknO{padding-left:0;padding-right:0;max-width:none;width:100%}.Center-module_item__1KSs3{--content-max-width:var(--layout-inline-content-max-width);margin-left:auto;margin-right:auto;max-width:var(--content-max-width)}.Center-module_customMargin__1es3t .Center-module_item__1KSs3{max-width:calc(var(--content-margin)*2 + var(--content-max-width))}.Center-module_item-inline-lg__DGjXl{--content-max-width:var(--layout-inline-lg-content-max-width)}.Center-module_item-inline-xl__2McfB{--content-max-width:var(--layout-inline-xl-content-max-width)}.Center-module_item-inline-full__l-6kG{--content-max-width:unset;margin-left:0;margin-right:0}.Center-module_clear__jJEap{clear:both}.Center-module_inner-sm__-oQ0E,.Center-module_inner-xs__3FRT8,.Center-module_inner-xxs__1oroz{margin:0 auto}.Center-module_align-left__1rYBX{margin-left:0}.Center-module_align-right__1uglq{margin-right:0}.Center-module_inner-xxs__1oroz{width:30%}.Center-module_inner-xs__3FRT8{width:50%}.Center-module_inner-sm__-oQ0E{width:70%}.Center-module_inner-left__2z9Ea,.Center-module_inner-right__KBkVt{--inlined-float:none;--inlined-margin:0;margin-top:var(--inlined-margin,.375em);margin-bottom:var(--inlined-margin,1em);clear:both;position:relative;z-index:1}.Center-module_inner-sm__-oQ0E,.Center-module_inner-xs__3FRT8,.Center-module_inner-xxs__1oroz{--inlined-margin:auto}.Center-module_inner-left__2z9Ea{float:var(--inlined-float,left);margin-left:var(--inlined-margin,calc(var(--floated-indent) - 1em));margin-right:var(--inlined-margin,1em)}.Center-module_inner-right__KBkVt{float:var(--inlined-float,right);margin-right:var(--inlined-margin,calc(var(--floated-indent) - 1em));margin-left:var(--inlined-margin,1em)}.Center-module_inner-xs__3FRT8.Center-module_sideBySide__-YsP0{--inlined-float:initial;--inlined-margin:initial;--floated-indent:25%;clear:none;width:25%}@media (min-width:950px){.Center-module_inner-md__3dLC3.Center-module_inner-left__2z9Ea,.Center-module_inner-md__3dLC3.Center-module_inner-right__KBkVt,.Center-module_inner-sm__-oQ0E.Center-module_inner-left__2z9Ea,.Center-module_inner-sm__-oQ0E.Center-module_inner-right__KBkVt,.Center-module_inner-xs__3FRT8.Center-module_inner-left__2z9Ea,.Center-module_inner-xs__3FRT8.Center-module_inner-right__KBkVt{--inlined-float:initial;--inlined-margin:initial;--floated-indent:-10%;clear:none}.Center-module_inner-xs__3FRT8.Center-module_inner-left__2z9Ea,.Center-module_inner-xs__3FRT8.Center-module_inner-right__KBkVt{width:25%}.Center-module_inner-xs__3FRT8.Center-module_sideBySide__-YsP0{--floated-indent:25%}.Center-module_inner-sm__-oQ0E.Center-module_inner-left__2z9Ea,.Center-module_inner-sm__-oQ0E.Center-module_inner-right__KBkVt{width:40%}.Center-module_inner-md__3dLC3.Center-module_inner-left__2z9Ea,.Center-module_inner-md__3dLC3.Center-module_inner-right__KBkVt{width:60%}}@media (min-width:700px){.Center-module_inner-sm__-oQ0E.Center-module_sideBySide__-YsP0{--inlined-float:initial;--inlined-margin:initial;clear:none;width:40%;--floated-indent:10%}}@media (min-width:1100px){.Center-module_inner-lg__2GQbs.Center-module_inner-left__2z9Ea,.Center-module_inner-lg__2GQbs.Center-module_inner-right__KBkVt{--inlined-float:initial;--inlined-margin:initial;clear:none;width:70%;--floated-indent:-20%}}@media (min-width:1300px){.Center-module_inner-xl__3dOME.Center-module_inner-left__2z9Ea,.Center-module_inner-xl__3dOME.Center-module_inner-right__KBkVt{--inlined-float:initial;--inlined-margin:initial;clear:none;width:80%;--floated-indent:-30%}}.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{color:#c2c2c2;fill:currentColor;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}.Foreground-module_Foreground__13ODU{pointer-events:none;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:var(--foreground-padding-bottom,3em)}@media print{.Foreground-module_Foreground__13ODU{min-height:auto;margin-top:0!important}}.BackdropFrameEffect-module_outer__1Od-V{--frame-width:1rem;--frame-radius:0.625rem;z-index:3;position:absolute;inset:0;box-shadow:inset var(--frame-color) 0 0 0 var(--frame-width)}.BackdropFrameEffect-module_inner__n74el{height:100%;border-radius:calc(var(--frame-width) + var(--frame-radius));box-shadow:inset var(--frame-color) 0 0 0 var(--frame-width)}@media (min-width:768px){.BackdropFrameEffect-module_outer__1Od-V{--frame-width:2.5rem;--frame-radius:1.25rem}}.SectionInlineFileRights-module_wrapper__1l6rr{z-index:3;position:relative}.SectionInlineFileRights-module_fade__1Snfk{transition:opacity .5s ease,visibility .5s}.SectionInlineFileRights-module_fade__1Snfk.SectionInlineFileRights-module_inactive__1VpQh{opacity:0;visibility:hidden}.Fullscreen-module_wrapper__300hJ{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:20000}.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_icons__3-Xm6 svg{width:50px;height:50px;filter:drop-shadow(0 1px 4px #000)}.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{animation:FullscreenIndicator-module_pulse__1qujU 4s ease infinite}.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}@keyframes FullscreenIndicator-module_pulse__1qujU{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}.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{animation:PanoramaIndicator-module_nudgeLeft__IU_Iy 4s ease infinite}.PanoramaIndicator-module_arrowRight__ZZBtO div{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;width:40px;height:40px;filter:drop-shadow(0 1px 4px #000)}:hover>.PanoramaIndicator-module_indicator__3A90v svg{transform:scale(1.2)}@keyframes PanoramaIndicator-module_nudgeLeft__IU_Iy{50%{transform:translateX(-10px)}}@keyframes PanoramaIndicator-module_nudgeRight__3XzNu{50%{transform:translateX(10px)}}.ZoomableImage-module_full__1YJoO{height:100%;width:100%}.ZoomableImage-module_container__RTuPI{height:100%}.ZoomableImage-module_img__3Vnst{max-width:100%;height:auto;visibility:hidden}.ZoomableImage-module_visible__2ez0D{visibility:visible}.ContentElement-module_missing__2_1j9{color:#000;background-color:#fff;border-left:5px solid #f44336;padding:.5em;margin:1em 0 0}.ContentElementScrollSpace-module_wrapper__2ZBwZ{min-height:130vh}.ContentElementScrollSpace-module_inner__1FBgh{position:sticky;top:calc(50% - var(--height)*1px)}@supports (height:100lvh){.ContentElementScrollSpace-module_wrapper__2ZBwZ{min-height:130lvh}.ContentElementScrollSpace-module_inner__1FBgh{top:calc(50lvh - var(--height)*1px)}}.SwipeToClose-module_inner__NOg1v,.SwipeToClose-module_outer__1fl2h{height:100%}.CardBox-module_content__36v7J{position:relative;pointer-events:auto}@media print{.CardBox-module_wrapper__3vnaH{padding-top:0!important}}.InvisibleBoxWrapper-module_start__F1nZ7{margin-top:1.375em}.InvisibleBoxWrapper-module_end__nphD-{margin-bottom:1.375em}.GradientShadow-module_dynamic__2v2JU,.GradientShadow-module_static__rXNpZ{position:absolute;top:0;left:0;width:100%;z-index:1;transition:opacity 1s ease;will-change:opacity;pointer-events:none}.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}}.Backdrop-module_Backdrop__1w4UZ{width:100%;z-index:2}.Backdrop-module_noCompositionLayer__33IlH{visibility:hidden}.Backdrop-module_coverSection__201GK{container-type:size;--vh:1cqh}.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}}.colors-module_contentColorScope__LQsqm{--theme-light-content-surface-color:var(--root-light-content-surface-color);--theme-dark-content-surface-color:var(--root-dark-content-surface-color);--theme-light-content-text-color:var(--root-light-content-text-color);--theme-dark-content-text-color:var(--root-dark-content-text-color)}.CardBoxWrapper-module_card__hvRUa{--theme-first-heading-landscape-padding-top:0;position:relative;margin-top:-1px;padding:1px 1.5em 0}.CardBoxWrapper-module_card__hvRUa:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1}.CardBoxWrapper-module_selfClear-both__2hwB7:after,.CardBoxWrapper-module_selfClear-left__2Dd26:after,.CardBoxWrapper-module_selfClear-right__9kgvN:after{content:"";display:block}.CardBoxWrapper-module_selfClear-left__2Dd26:after{clear:left}.CardBoxWrapper-module_selfClear-right__9kgvN:after{clear:right}.CardBoxWrapper-module_selfClear-both__2hwB7:after{clear:both}.CardBoxWrapper-module_cardStart__2NywG{margin-top:3em}.CardBoxWrapper-module_cardEnd__x4Ye6{margin-bottom:3em;padding-bottom:1.5em}.CardBoxWrapper-module_cardStart__2NywG:before{border-top-left-radius:var(--theme-cards-border-radius,15px);border-top-right-radius:var(--theme-cards-border-radius,15px)}.CardBoxWrapper-module_cardEnd__x4Ye6:before{border-bottom-left-radius:var(--theme-cards-border-radius,15px);border-bottom-right-radius:var(--theme-cards-border-radius,15px)}@media screen{.CardBoxWrapper-module_cardBgWhite__xXhg7:before{background-color:var(--card-surface-color,var(--theme-light-content-surface-color,#fff))}.CardBoxWrapper-module_cardBgBlack__Ahp3s:before{background-color:var(--card-surface-color,var(--theme-dark-content-surface-color,#101010))}.CardBoxWrapper-module_cardBgWhite__xXhg7{color:var(--theme-dark-content-text-color,#222);--content-text-color:var(--theme-dark-content-text-color,#222);--content-link-color:var(--theme-dark-content-link-color,var(--theme-content-link-color,currentColor))}.CardBoxWrapper-module_cardBgBlack__Ahp3s{color:var(--theme-light-content-text-color,#fff);--content-text-color:var(--theme-light-content-text-color,#fff);--content-link-color:var(--theme-light-content-link-color,var(--theme-content-link-color,currentColor))}}.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(var(--vh)*100 - var(--backdrop-display-height)),calc(var(--motif-display-center-y)*-1 + var(--vh)*50)));--backdrop-positioner-min-ar-transform:translateY(var(--backdrop-translate-y));--backdrop-positioner-min-ar-width:calc(var(--vw)*100);--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) + var(--vh)*100 - 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((var(--vw)*100 - var(--backdrop-display-width))*var(--motif-center-x)/100);--backdrop-translate-y:calc((var(--vh)*100 - var(--backdrop-display-height))*var(--motif-center-y)/100)}}.Section-module_exposeMotifArea__2rsq_{--inline-content-max-width:calc(var(--vw)*100);--motif-placeholder-width:calc(var(--vw)*100);--motif-placeholder-min-ar-width:calc(var(--vw)*100);--remaining-width:calc(var(--vw)*100 - var(--inline-content-max-width) - var(--vw)*8 - 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) - var(--vw)*100);--motif-placeholder-width:calc((var(--motif-right)/100 + 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)/100 + var(--motif-width)/100)*var(--backdrop-display-width) + var(--backdrop-translate-x));--motif-placeholder-min-ar-width:calc((var(--motif-left) + var(--motif-width))*var(--vw))}.SectionDecorator-module_wrapper__3sTk3{position:relative}section:before{content:"";display:block;position:absolute;top:6px;left:6px;right:6px;bottom:6px;z-index:9;pointer-events:none;visibility:hidden}.SectionDecorator-module_highlighted__18FyB>section:before,.SectionDecorator-module_lineAbove__BZqEr>section:before,.SectionDecorator-module_lineBelow__1RbG->section:before,.SectionDecorator-module_selected__1gcmF>section:before{visibility:visible}.SectionDecorator-module_highlighted__18FyB>section:before,.SectionDecorator-module_selected__1gcmF>section:before{border:1px solid #fff;box-shadow:inset 0 0 0 1px #000}.SectionDecorator-module_highlighted__18FyB>section:before,.SectionDecorator-module_lineAbove__BZqEr>section:before,.SectionDecorator-module_lineBelow__1RbG->section:before{opacity:.3}.SectionDecorator-module_lineAbove__BZqEr>section:before{border-top:1px dotted}.SectionDecorator-module_lineBelow__1RbG->section:before{border-bottom:1px dotted}.SectionDecorator-module_transitionSelected__Wklk6>section:before{content:"";position:absolute;display:block;top:0;width:100%;border-top:2px dotted #fff;z-index:9;background-color:#555;opacity:.7}.SectionDecorator-module_controls__LVEJG{position:absolute;top:-33px;right:0;height:100%;width:50px;padding-left:20px;z-index:10;display:none}.SectionDecorator-module_selected__1gcmF .SectionDecorator-module_controls__LVEJG,.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_controls__LVEJG{display:block}.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_transitionToolbar-after__2_DVO{visibility:hidden}.SectionDecorator-module_toolbar__2Va1D{position:absolute;padding:10px 0 10px 10px;z-index:10;overflow:hidden}.SectionDecorator-module_transitionToolbar-before__KipOO{top:0}.SectionDecorator-module_transitionToolbar-after__2_DVO{bottom:-63px}.BackdropDecorator-module_wrapper__X-h1o{position:absolute;top:0;left:0;width:100%;pointer-events:none;z-index:100000;display:none}.BackdropDecorator-module_wrapper__X-h1o.BackdropDecorator-module_visible__3VqiR{display:block}.BackdropDecorator-module_inner__14JfF{position:sticky;top:0;padding-top:28px;margin-bottom:50px}.BackdropDecorator-module_inner__14JfF>*{pointer-events:auto}.WidgetSelectionRect-module_wrapper__1ktq9{pointer-events:auto;cursor:default;outline-offset:2px}.WidgetSelectionRect-module_selected__2nm_L{outline:1px solid #fff}.ActionButtons-module_reference__27uyP{position:absolute;z-index:10}.ActionButtons-module_buttons__1Hz2Z{display:flex;border-radius:3px;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);overflow:hidden}.ActionButtons-module_button__1wzIk{border:0;text-align:center;padding:8px;color:rgba(0,0,0,.8);background:#fff;font-size:13px;display:flex;align-items:center;gap:8px;white-space:nowrap;cursor:pointer}.ActionButtons-module_iconOnly__1VEGK{justify-content:center}.ActionButtons-module_button__1wzIk+.ActionButtons-module_button__1wzIk{border-left:1px solid rgba(0,0,0,.1)}.ActionButtons-module_floating__18Epj{transition:opacity .2s,visibility .2s}.ActionButtons-module_escaped__2M1PU{opacity:0;visibility:hidden}.ActionButtons-module_size-lg__2b0Dw{padding:10px}.ActionButtons-module_button__1wzIk:focus,.ActionButtons-module_button__1wzIk:hover{color:#000}.ActionButtons-module_button__1wzIk svg{fill:currentColor}.ActionButtons-module_position-outside__1rpXW{top:calc(100% + .3em);right:-.8em}.ActionButtons-module_position-outsideLeft__3bo3f{top:calc(100% + .3em);left:0}.ActionButtons-module_position-outsideIndented__2LZds{top:calc(100% + .3em);right:.5em}.ActionButtons-module_position-inside__IDFN8{bottom:.5em;right:.5em}.ActionButtons-module_position-center__1ff85{left:50%;transform:translateX(-50%)}.EditableLink-module_wrapper__2sbJy{position:relative;height:100%}.EditableLink-module_wrapper__2sbJy>div{height:100%}.LinkTooltip-module_linkTooltip__esBv0{position:absolute;z-index:11;white-space:nowrap;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)}.LinkTooltip-module_linkTooltip__esBv0>svg{fill:#222}.LinkTooltip-module_linkTooltip__esBv0>a,.LinkTooltip-module_linkTooltip__esBv0>span{color:#fff;background-color:transparent;border:0;display:inline-block;padding:10px}.LinkTooltip-module_linkTooltip__esBv0>a svg{padding-left:7px}.LinkTooltip-module_thumbnail__3Vzce{width:200px;height:120px;position:relative;margin:5px}.LinkTooltip-module_thumbnailClickMask__3iSZw{position:absolute;top:0;left:0;bottom:0;right:0}.LinkTooltip-module_newTab__3uW7O{opacity:.7;padding:0 10px 10px;text-decoration:none}.LinkTooltip-module_chapterNumber__YUvjI{font-weight:700}.shared-module_fixed__3T2AK{position:fixed;top:0;height:100vh;width:100%}.shared-module_justifyBottom__22ncu.shared-module_fixed__3T2AK{top:auto;bottom:0}.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_selection__3dUiD{display:none;position:absolute;z-index:1;width:100%;pointer-events:none}.index-module_newLine__1QnIs,.index-module_shy__1E2-J [data-slate-string]{position:relative;color:var(--background-clip-text-fallback-color)}.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}.ContentElementMargin-module_wrapper__20kIk{margin:1em 0 0}.DropTargets-module_target__Z2N2d{position:absolute;height:50%;width:100%;left:-50px;padding-left:50px;padding-bottom:.5em;opacity:.8}.DropTargets-module_target__Z2N2d:before{content:"";position:absolute;display:block;left:50px;right:0}.DropTargets-module_target__Z2N2d.DropTargets-module_isOver__3ksFy:before{border-top:2px solid}.DropTargets-module_before__cAXo1{top:-.5em}.DropTargets-module_before__cAXo1:before{top:-1px}.DropTargets-module_after__2Q8QU{top:50%}.DropTargets-module_after__2Q8QU:before{top:calc(100% - 1px)}.SelectionRect-module_main__3AOhG{position:relative}.SelectionRect-module_main__3AOhG:after,.SelectionRect-module_main__3AOhG:before{content:"";position:absolute;top:-.5em;left:-.5em;right:-.5em;bottom:-.5em;pointer-events:none;opacity:.8}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF):before{top:5px}.SelectionRect-module_full__3tsQF:after,.SelectionRect-module_full__3tsQF:before{left:0;right:0}.SelectionRect-module_inset__3den3:before{top:5px;left:4px;bottom:5px;right:4px;z-index:4}.SelectionRect-module_selected__1PhM6:before{border-left:1px solid}.SelectionRect-module_inset__3den3.SelectionRect-module_selected__1PhM6:before{border:1px solid}.SelectionRect-module_selected__1PhM6:after{border-right:1px solid}.SelectionRect-module_toolbar__3nPrd{position:absolute;top:-40px;right:-15px;z-index:2;pointer-events:auto}.SelectionRect-module_insert__w0Tl0{display:none;text-align:center;position:absolute;width:100%;opacity:.8;pointer-events:none;z-index:1}.SelectionRect-module_insertHovered__VTsDD.SelectionRect-module_insert__w0Tl0{opacity:1}.SelectionRect-module_end__3qOoK .SelectionRect-module_insert-after__3FJ4R,.SelectionRect-module_start__3_nAf .SelectionRect-module_insert-before__2Tyq5{display:block}.SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_insert__w0Tl0:before{content:"";position:absolute;top:0;width:calc(50% - 5px);height:0;border-bottom:1px solid}.SelectionRect-module_insert__w0Tl0:before{left:-.5em}.SelectionRect-module_insert__w0Tl0:after{right:-.5em}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF) .SelectionRect-module_insert-before__2Tyq5:before{left:5px;width:calc(50% - 10px - .5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{width:calc(50% - 5px - .5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{left:0}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after{right:0}.SelectionRect-module_insertButton__1g-ZG{pointer-events:auto;border:0;background:none;color:currentColor;display:inline-block;vertical-align:top;position:relative;top:-9px;padding:2px 10px}.SelectionRect-module_insert-before__2Tyq5{top:-.5em}.SelectionRect-module_insert-after__3FJ4R{top:calc(100% + .5em)}.SelectionRect-module_dragHandle__2vVhP{position:absolute;top:-7px;left:10px;transform:translate(-100%,-50%);z-index:1;visibility:hidden;padding:10px;cursor:move;pointer-events:auto}.SelectionRect-module_selected__1PhM6 .SelectionRect-module_dragHandle__2vVhP{visibility:visible}.SelectionRect-module_full__3tsQF .SelectionRect-module_dragHandle__2vVhP{left:0;top:0;transform:translate(0);background:radial-gradient(rgba(0,0,0,.7215686274509804),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}.SelectionRect-module_inset__3den3 .SelectionRect-module_dragHandle__2vVhP,.SelectionRect-module_inset__3den3 .SelectionRect-module_insert__w0Tl0,.SelectionRect-module_inset__3den3:after{display:none}.Toolbar-module_Toolbar__1INSj{background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);border-radius:3px;overflow:hidden;display:flex;gap:2px}.Toolbar-module_button__de5BW{border:0;background:#fff;padding:10px;opacity:.6}.Toolbar-module_button__de5BW:hover{opacity:1}.Toolbar-module_activeButton__2sOLP{background:#ddd;opacity:1}@media (max-width:460px){.Toolbar-module_collapsible__3sivb .Toolbar-module_button__de5BW{display:none}.Toolbar-module_collapsible__3sivb .Toolbar-module_activeButton__2sOLP,.Toolbar-module_collapsible__3sivb:focus-within .Toolbar-module_button__de5BW,.Toolbar-module_collapsible__3sivb:hover .Toolbar-module_button__de5BW{display:inline-block}}.ContentElementInsertButton-module_container__3dvUS{height:0;position:relative;top:1em;opacity:.8;display:flex;justify-content:center}.ContentElementInsertButton-module_hovered__3Pggi{opacity:1}.ContentElementInsertButton-module_container__3dvUS:after,.ContentElementInsertButton-module_container__3dvUS:before{content:"";border-top:1px solid;width:calc(50% - 20px);position:absolute;top:0}.ContentElementInsertButton-module_container__3dvUS:before{left:0}.ContentElementInsertButton-module_container__3dvUS:after{right:0}.ContentElementInsertButton-module_button__2-eE2{border:0;background:none;color:currentColor;position:relative;top:-8px}.TextPlaceholder-module_placeholder__sgVwx{pointer-events:none;opacity:.5;height:0}.TextPlaceholder-module_placeholder__sgVwx>div{transform:translateY(-100%)}.placeholders-module_placeholder__2j2eo{pointer-events:none;opacity:.5;font-weight:400;white-space:nowrap}.placeholders-module_placeholder__2j2eo:before{content:attr(data-text);display:block;height:0;position:relative;top:-1lh}.DropTargets-module_container__3vudG{position:absolute;top:-.5em;left:-50px;width:100%;height:100%;padding:.5em 0 8px 50px}.DropTargets-module_dropTarget__3mmox{position:absolute;left:0;width:100%;opacity:.8}.DropTargets-module_dropIndicator__2zu4d{position:absolute;left:50px;right:0;border-top:2px solid;opacity:0}.DropTargets-module_isOver__2usWn .DropTargets-module_dropIndicator__2zu4d{opacity:1}.FillColor-module_FillColor__S1uEG{width:100%}@media print{.FillColor-module_FillColor__S1uEG{display:none}}.Positioner-module_wrapper__3iFSg{position:relative;transform:var(--backdrop-positioner-transform);width:var(--backdrop-positioner-width);height:var(--backdrop-positioner-height)}.Picture-module_root__1BCCg{position:absolute;top:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.MotifArea-module_root__1_ACd{position:absolute;background:radial-gradient(transparent,currentColor);z-index:2;opacity:0;pointer-events:none;-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__2swN4{height:100%}.Effects-module_autoZoom__109yr{animation:Effects-module_autoZoom__109yr var(--auto-zoom-duration) 1 ease;animation-fill-mode:forwards}@keyframes Effects-module_autoZoom__109yr{0%{transform:translate(calc(var(--auto-zoom-origin-x)*-1),calc(var(--auto-zoom-origin-y)*-1)) scale(1) translate(var(--auto-zoom-origin-x),var(--auto-zoom-origin-y))}to{transform:translate(calc(var(--auto-zoom-origin-x)*-1),calc(var(--auto-zoom-origin-y)*-1)) scale(1.2) translate(var(--auto-zoom-origin-x),var(--auto-zoom-origin-y))}}.Effects-module_effects__MDZRR{height:100%;filter:var(--filter)}@media (orientation:portrait){.Effects-module_effects__MDZRR{filter:var(--mobile-filter)}}.globalNotices{z-index:100000000;position:fixed;bottom:10px;left:10px}@supports not (old:ie){.unsupported{display:none}}.globalNotices div{background:#fff;padding:20px;max-width:240px;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);font-family:Source Sans Pro;border-top:2px solid #a50e0e;margin-top:10px}:root{--vw:1vw;--vh:1vh;--root-light-content-surface-color:var(--theme-light-content-surface-color,#fff);--root-dark-content-surface-color:var(--theme-dark-content-surface-color,#101010);--root-light-content-text-color:var(--theme-light-content-text-color,#fff);--root-dark-content-text-color:var(--theme-dark-content-text-color,#222);--theme-aspect-ratio-wide:0.5625;--theme-aspect-ratio-narrow:0.75;--theme-aspect-ratio-square:1;--theme-aspect-ratio-portrait:1.33;--theme-content-element-box-border-radius-none:0px;--theme-content-element-box-border-radius-circle:50%}body{margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}[data-floating-ui-portal]{position:relative;z-index:1000}#floating-ui-above-navigation-widgets{position:relative;z-index:20000}.colors-module_contentColorScope__2Zizr{--theme-light-content-surface-color:var(--root-light-content-surface-color);--theme-dark-content-surface-color:var(--root-dark-content-surface-color);--theme-light-content-text-color:var(--root-light-content-text-color);--theme-dark-content-text-color:var(--root-dark-content-text-color)}.Figure-module_root__3FC-x{margin:0}.Figure-module_root__3FC-x>figcaption{padding:3px var(--theme-figure-caption-padding-inline,10px) 5px;background-color:var(--theme-figure-caption-surface-color,var(--theme-light-content-surface-color,#fff));color:var(--theme-figure-caption-text-color,var(--theme-dark-content-text-color,#222))}.Figure-module_root__3FC-x>figcaption p{margin:0}.Figure-module_invert___0BJP>figcaption{background-color:var(--theme-figure-caption-surface-color,var(--theme-dark-content-surface-color,#101010));color:var(--theme-figure-caption-text-color,var(--theme-light-content-text-color,#fff))}.ContentElementBox-module_wrapper__3wZgP{overflow:hidden;border-radius:var(--content-element-box-border-radius,var(--theme-content-element-box-border-radius))}.ContentElementBox-module_full__AfWPr{border-radius:var(--content-element-box-border-radius,var(--theme-content-element-full-box-border-radius,var(--theme-content-element-box-border-radius)))}.ContentElementBox-module_positioned__3R1dq{position:relative;height:100%}.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:flex-end;justify-content:flex-end}.Waveform-module_menuBarInner__3wjQs{display:flex;align-items:center;justify-content:flex-end;height:100%}.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;user-select:none}.TimeDisplay-module_time__li1ZU{line-height:24px;font-size:15px;padding:0 4px;color:currentColor}.MenuBarButton-module_wrapper__2lFoI{position:relative}.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 .2s,visibility .2s;position:absolute;right:5px;bottom:38px;margin:0;padding:5px;background-color:rgba(17,17,17,.9);border-radius:3px}.MenuBarButton-module_subMenu__f-E-X:after{content:"";display:block;border:5px solid transparent;border-top-color:rgba(17,17,17,.9);position:absolute;right:11px;top:100%}.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_subMenuItem__1pyn_ svg{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_sticky__6qVoI{overflow:clip}.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{box-sizing:border-box;width:100%;display:flex;align-items:flex-end}.ControlBar-module_inset__JvBh9{position:absolute;bottom:0;color:#fff;background:transparent;z-index:3}.ControlBar-module_sticky__6qVoI .ControlBar-module_inset__JvBh9{position:sticky;margin-top:-40px}.ControlBar-module_controlBarInner__39fE9,.ControlBar-module_inset__JvBh9:before{transition:opacity .2s ease,visibility .2s}.ControlBar-module_inset__JvBh9:before{content:"";position:absolute;width:100%;height:100%;background:linear-gradient(0deg,rgba(0,0,0,.8),transparent);z-index:-1}.ControlBar-module_controlBarInner__39fE9{display:flex;align-items:center;flex:1}.ControlBar-module_fadedOut__2sP_3 .ControlBar-module_controlBarInner__39fE9,.ControlBar-module_fadedOut__2sP_3.ControlBar-module_inset__JvBh9:before{opacity:0;visibility:hidden}.ControlBar-module_button___4aXE{width:40px;height:40px;margin:0 2px;display:flex;align-items:center;justify-content:center;color:currentColor;cursor:pointer}.ControlBar-module_button___4aXE svg{fill:currentColor;width:30px;height:30px}.utils-module_clip__34eot{-webkit-clip-path:polygon(0 0,100% 0,100% 110%,0 110%);clip-path:polygon(0 0,100% 0,100% 110%,0 110%)}.utils-module_unstyledButton__3rgne{border:0;padding:0;background-color:transparent;text-align:initial}.BigPlayPauseButton-module_container__19sKj{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;transition:opacity .2s ease}.BigPlayPauseButton-module_fadeOutDelay__yoaW6{transition-delay:.5s}.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;animation-duration:.7s;animation-timing-function:ease;animation-iteration-count:1;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{animation-name:BigPlayPauseButton-module_fadeOut__2vcA_}.BigPlayPauseButton-module_fadeIn__1Ge1-{animation-name:BigPlayPauseButton-module_fadeIn__1Ge1-}@keyframes BigPlayPauseButton-module_fadeOut__2vcA_{to{opacity:0;transform:scale(1.5)}}@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}.PaginationIndicator-module_nav__cY6JE{display:flex;height:var(--theme-pagination-indicator-item-height,18px)}.PaginationIndicator-module_item__O7cZ-{flex:1;position:relative;border:5px solid transparent;background:transparent;padding:0;display:block;height:100%;box-sizing:border-box;min-width:var(--theme-pagination-indicator-item-width,15px);transition:opacity .5s,transform .5s ease;cursor:pointer}.PaginationIndicator-module_item__O7cZ-:after{content:"";position:absolute;inset:0;background-color:var(--theme-light-content-text-color,#fff);border-radius:var(--theme-pagination-indicator-item-border-radius,3px);transition:filter .2s;opacity:var(--theme-pagination-indicator-item-opacity,.9);border:1px solid var(--theme-pagination-indicator-item-border-color,rgba(0,0,0,.2));filter:var(--theme-pagination-indicator-item-filter,drop-shadow(0 1px 4px rgb(0 0 0/.8)))}.PaginationIndicator-module_current__1wxHj:after{opacity:var(--theme-pagination-indicator-current-item-opacity)}.FitViewport-module_container__-awVj{width:100%;margin:0 auto;max-width:var(--theme-fit-viewport,calc(var(--vh)*100/var(--fit-viewport-aspect-ratio)*var(--fit-viewport-scale, 1)))}.FitViewport-module_content__1_K5a{position:relative}.FitViewport-module_content__1_K5a>div:first-child{padding-top:calc(100%*var(--fit-viewport-aspect-ratio))}.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{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}@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%}.ScrollButton-module_button__3rrDc{background-color:transparent;border:0;padding:0;color:#fff;transition:opacity .2s linear,visibility .2s;pointer-events:auto;width:100%;box-sizing:border-box;display:flex;justify-content:center;align-items:center}.ScrollButton-module_icon__128_J{display:flex;justify-content:center;padding:.5rem}.ScrollButton-module_disabled__35fFF{opacity:0;visibility:hidden}.ScrollButton-module_button__3rrDc svg{transition:transform .2s ease;display:block;width:var(--theme-scroll-button-size);height:var(--theme-scroll-button-size);filter:drop-shadow(var(--theme-scroll-button-drop-shadow,0 1px 4px #000));flex-shrink:0}.ScrollButton-module_button__3rrDc:not(.ScrollButton-module_disabled__35fFF):active svg,.ScrollButton-module_button__3rrDc:not(.ScrollButton-module_disabled__35fFF):hover svg{transform:scale(var(--theme-scroll-button-hover-scale,1.2))}.ScrollButton-module_visuallyHidden__36chO{border:0;clip:rect(0 0 0 0);height:1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.scope-lightContent{--link-button-on-surface-color:var(--theme-light-content-link-button-on-surface-color,currentColor);--link-button-surface-color:var(--theme-light-content-link-button-surface-color)}.scope-darkContent{--link-button-on-surface-color:var(--theme-dark-content-link-button-on-surface-color,var(--theme-widget-primary-color));--link-button-surface-color:var(--theme-dark-content-link-button-surface-color)}.LinkButton-module_button__33q1F{display:inline-flex;min-width:var(--theme-link-button-width,100%);box-sizing:border-box;justify-content:center;align-items:center;gap:.5em;border-radius:var(--theme-link-button-border-radius,5px);text-decoration:none;padding:var(--theme-link-button-padding,.5rem);background-color:var(--link-button-surface-color,transparent);color:var(--link-button-on-surface-color);margin-top:1rem;font-weight:700;border:1px solid var(--link-button-surface-color,color-mix(in srgb,var(--link-button-on-surface-color),transparent));cursor:pointer}.LinkButton-module_button__33q1F:after{content:var(--theme-link-button-symbol,"\203A")}.LinkButton-module_button__33q1F:active,.LinkButton-module_button__33q1F:hover{border:1px solid var(--link-button-surface-color,var(--link-button-on-surface-color))}.LinkButton-module_editable__FzuA4{opacity:.5}.LinkButton-module_editable__FzuA4:focus-within,.LinkButton-module_editable__FzuA4:has([data-slate-string]){opacity:1}
|