@knight-lab/timelinejs 3.9.6 → 3.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/dist/css/fonts/font.bitter-raleway.css +1 -1
- package/dist/css/fonts/font.unicaone-vollkorn.css +2 -2
- package/dist/css/themes/timeline.theme.contrast.css +2 -2
- package/dist/css/themes/timeline.theme.dark.css +2 -2
- package/dist/css/timeline.css +1 -1
- package/dist/css/timeline.css.map +1 -1
- package/dist/js/timeline.js +1 -1
- package/dist/js/timeline.js.LICENSE.txt +1 -1
- package/dist/js/timeline.js.map +1 -1
- package/eleventy/node_modules/.package-lock.json +2197 -0
- package/eleventy/node_modules/@11ty/dependency-tree/LICENSE +21 -0
- package/eleventy/node_modules/@11ty/dependency-tree/README.md +94 -0
- package/eleventy/node_modules/@11ty/dependency-tree/main.js +132 -0
- package/eleventy/node_modules/@11ty/dependency-tree/package.json +39 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/.github/workflows/ci.yml +22 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/.github/workflows/release.yml +24 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/LICENSE +21 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/README.md +40 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/main.js +98 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/package.json +38 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/circular-child.js +1 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/circular-parent.js +1 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/circular-self.js +2 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/empty.js +0 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/file.js +2 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/import-attributes.js +3 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/imported-secondary.js +3 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/imported.js +3 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/imported.json +3 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/nested-grandchild.js +1 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/nested.js +2 -0
- package/eleventy/node_modules/@11ty/dependency-tree-esm/test/test.js +35 -0
- package/eleventy/node_modules/@11ty/eleventy/CODE_OF_CONDUCT.md +48 -0
- package/eleventy/node_modules/@11ty/eleventy/LICENSE +21 -0
- package/eleventy/node_modules/@11ty/eleventy/README.md +47 -0
- package/eleventy/node_modules/@11ty/eleventy/SECURITY.md +9 -0
- package/eleventy/node_modules/@11ty/eleventy/cmd.cjs +165 -0
- package/eleventy/node_modules/@11ty/eleventy/package.json +155 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Benchmark/Benchmark.js +55 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Benchmark/BenchmarkGroup.js +135 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Benchmark/BenchmarkManager.js +73 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Data/ComputedData.js +121 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Data/ComputedDataProxy.js +131 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Data/ComputedDataQueue.js +64 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Data/ComputedDataTemplateString.js +70 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Data/TemplateData.js +737 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Data/TemplateDataInitialGlobalData.js +40 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Eleventy.js +1472 -0
- package/eleventy/node_modules/@11ty/eleventy/src/EleventyCommonJs.cjs +43 -0
- package/eleventy/node_modules/@11ty/eleventy/src/EleventyExtensionMap.js +284 -0
- package/eleventy/node_modules/@11ty/eleventy/src/EleventyFiles.js +517 -0
- package/eleventy/node_modules/@11ty/eleventy/src/EleventyServe.js +305 -0
- package/eleventy/node_modules/@11ty/eleventy/src/EleventyWatch.js +131 -0
- package/eleventy/node_modules/@11ty/eleventy/src/EleventyWatchTargets.js +164 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Engines/Custom.js +338 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Engines/FrontMatter/JavaScript.js +34 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Engines/Html.js +28 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Engines/JavaScript.js +237 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Engines/Liquid.js +326 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Engines/Markdown.js +93 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Engines/Nunjucks.js +447 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Engines/TemplateEngine.js +184 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Engines/TemplateEngineManager.js +197 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Engines/Util/ContextAugmenter.js +67 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Errors/DuplicatePermalinkOutputError.js +9 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Errors/EleventyBaseError.js +24 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Errors/EleventyErrorHandler.js +151 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Errors/EleventyErrorUtil.js +72 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Errors/TemplateContentPrematureUseError.js +5 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Errors/TemplateContentUnrenderedTemplateError.js +5 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Errors/UsingCircularTemplateContentReferenceError.js +5 -0
- package/eleventy/node_modules/@11ty/eleventy/src/EventBus.js +23 -0
- package/eleventy/node_modules/@11ty/eleventy/src/FileSystemSearch.js +102 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Filters/GetCollectionItem.js +20 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Filters/GetCollectionItemIndex.js +17 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Filters/GetLocaleCollectionItem.js +47 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Filters/Slug.js +14 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Filters/Slugify.js +14 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Filters/Url.js +35 -0
- package/eleventy/node_modules/@11ty/eleventy/src/GlobalDependencyMap.js +424 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Plugins/HtmlBasePlugin.js +151 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Plugins/I18nPlugin.js +317 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Plugins/IdAttributePlugin.js +103 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Plugins/InputPathToUrl.js +177 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Plugins/Pagination.js +380 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Plugins/RenderPlugin.js +481 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Template.js +1124 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateBehavior.js +85 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateCache.js +104 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateCollection.js +81 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateConfig.js +551 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateContent.js +712 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateFileSlug.js +57 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateGlob.js +35 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateLayout.js +242 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateLayoutPathResolver.js +136 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateMap.js +828 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplatePassthrough.js +339 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplatePassthroughManager.js +311 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplatePermalink.js +189 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateRender.js +294 -0
- package/eleventy/node_modules/@11ty/eleventy/src/TemplateWriter.js +518 -0
- package/eleventy/node_modules/@11ty/eleventy/src/UserConfig.js +1292 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/AsyncEventEmitter.js +75 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/Compatibility.js +55 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/ConsoleLogger.js +126 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/DateGitFirstAdded.js +24 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/DateGitLastUpdated.js +28 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/DirContains.js +9 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/EsmResolver.js +51 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/EventBusUtil.js +26 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/ExistsCache.js +82 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/FilePathUtil.js +19 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/GetJavaScriptData.js +30 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/GlobMatcher.js +21 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/HtmlTransformer.js +158 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/ImportJsonSync.js +64 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/IsAsyncFunction.js +5 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/JavaScriptDependencies.js +55 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/MemoizeFunction.js +26 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/DeepFreeze.js +20 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/ObjectFilter.js +9 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/ProxyWrap.js +111 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/SampleModule.mjs +1 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/Sortable.js +136 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/Unique.js +3 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/PassthroughCopyBehaviorCheck.js +16 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/PathNormalizer.js +60 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/PathPrefixer.js +21 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/Pluralize.js +3 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/ProjectDirectories.js +344 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/ProjectTemplateFormats.js +134 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/Require.js +206 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/ReservedData.js +69 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/SetUnion.js +11 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/TransformsUtil.js +70 -0
- package/eleventy/node_modules/@11ty/eleventy/src/Util/ValidUrl.js +9 -0
- package/eleventy/node_modules/@11ty/eleventy/src/defaultConfig.js +168 -0
- package/eleventy/node_modules/@11ty/eleventy/tsconfig.json +117 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/README.md +60 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/cli.js +89 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/client/reload-client.js +294 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/cmd.js +77 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/LICENSE +21 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/README.md +27 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/index.js +11 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/package.json +41 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/src/IsPlainObject.js +24 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/src/Merge.js +84 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/src/TemplatePath.js +372 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/package.json +58 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/server/wrapResponse.js +129 -0
- package/eleventy/node_modules/@11ty/eleventy-dev-server/server.js +950 -0
- package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/README.md +337 -0
- package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/eleventy.bundle.js +66 -0
- package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/package.json +62 -0
- package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/BundleFileOutput.js +76 -0
- package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/CodeManager.js +209 -0
- package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/OutOfOrderRender.js +153 -0
- package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/eleventy.bundleManagers.js +74 -0
- package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/eleventy.pruneEmptyBundles.js +88 -0
- package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/eleventy.shortcodes.js +83 -0
- package/eleventy/node_modules/@11ty/eleventy-utils/LICENSE +21 -0
- package/eleventy/node_modules/@11ty/eleventy-utils/README.md +29 -0
- package/eleventy/node_modules/@11ty/eleventy-utils/index.js +11 -0
- package/eleventy/node_modules/@11ty/eleventy-utils/package.json +47 -0
- package/eleventy/node_modules/@11ty/eleventy-utils/src/IsPlainObject.js +24 -0
- package/eleventy/node_modules/@11ty/eleventy-utils/src/Merge.js +84 -0
- package/eleventy/node_modules/@11ty/eleventy-utils/src/TemplatePath.js +368 -0
- package/eleventy/node_modules/@11ty/lodash-custom/README.md +14 -0
- package/eleventy/node_modules/@11ty/lodash-custom/lodash.custom.js +1704 -0
- package/eleventy/node_modules/@11ty/lodash-custom/package.json +38 -0
- package/eleventy/node_modules/@11ty/posthtml-urls/LICENSE +21 -0
- package/eleventy/node_modules/@11ty/posthtml-urls/README.md +48 -0
- package/eleventy/node_modules/@11ty/posthtml-urls/lib/defaultOptions.js +37 -0
- package/eleventy/node_modules/@11ty/posthtml-urls/lib/index.js +142 -0
- package/eleventy/node_modules/@11ty/posthtml-urls/package.json +47 -0
- package/eleventy/node_modules/@11ty/recursive-copy/README.md +198 -0
- package/eleventy/node_modules/@11ty/recursive-copy/index.d.ts +117 -0
- package/eleventy/node_modules/@11ty/recursive-copy/index.js +3 -0
- package/eleventy/node_modules/@11ty/recursive-copy/lib/copy.js +427 -0
- package/eleventy/node_modules/@11ty/recursive-copy/package.json +71 -0
- package/eleventy/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
- package/eleventy/node_modules/@isaacs/cliui/README.md +143 -0
- package/eleventy/node_modules/@isaacs/cliui/index.mjs +14 -0
- package/eleventy/node_modules/@isaacs/cliui/package.json +86 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/LICENSE +21 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/README.md +171 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +19 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/constants.d.ts +4 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/constants.js +17 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/index.d.ts +12 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/index.js +26 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/async.js +104 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +1 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/common.js +13 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +5 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/sync.js +54 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/settings.d.ts +20 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/settings.js +24 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/types/index.js +2 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +2 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/utils/fs.js +19 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +2 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/out/utils/index.js +5 -0
- package/eleventy/node_modules/@nodelib/fs.scandir/package.json +44 -0
- package/eleventy/node_modules/@nodelib/fs.stat/LICENSE +21 -0
- package/eleventy/node_modules/@nodelib/fs.stat/README.md +126 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/adapters/fs.js +17 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/index.d.ts +12 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/index.js +26 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/providers/async.js +36 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +3 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/providers/sync.js +23 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/settings.d.ts +16 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/settings.js +16 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/types/index.d.ts +4 -0
- package/eleventy/node_modules/@nodelib/fs.stat/out/types/index.js +2 -0
- package/eleventy/node_modules/@nodelib/fs.stat/package.json +37 -0
- package/eleventy/node_modules/@nodelib/fs.walk/LICENSE +21 -0
- package/eleventy/node_modules/@nodelib/fs.walk/README.md +215 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/index.d.ts +14 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/index.js +34 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/providers/async.js +30 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +4 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/providers/index.js +9 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +12 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/providers/stream.js +34 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +10 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/providers/sync.js +14 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/readers/async.js +97 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +7 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/readers/common.js +31 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/readers/reader.js +11 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +15 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/readers/sync.js +59 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/settings.d.ts +30 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/settings.js +26 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/types/index.d.ts +8 -0
- package/eleventy/node_modules/@nodelib/fs.walk/out/types/index.js +2 -0
- package/eleventy/node_modules/@nodelib/fs.walk/package.json +44 -0
- package/eleventy/node_modules/@pkgjs/parseargs/.editorconfig +14 -0
- package/eleventy/node_modules/@pkgjs/parseargs/CHANGELOG.md +147 -0
- package/eleventy/node_modules/@pkgjs/parseargs/LICENSE +201 -0
- package/eleventy/node_modules/@pkgjs/parseargs/README.md +413 -0
- package/eleventy/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
- package/eleventy/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
- package/eleventy/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
- package/eleventy/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
- package/eleventy/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
- package/eleventy/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
- package/eleventy/node_modules/@pkgjs/parseargs/index.js +396 -0
- package/eleventy/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
- package/eleventy/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
- package/eleventy/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
- package/eleventy/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
- package/eleventy/node_modules/@pkgjs/parseargs/package.json +36 -0
- package/eleventy/node_modules/@pkgjs/parseargs/utils.js +198 -0
- package/eleventy/node_modules/@sindresorhus/slugify/index.d.ts +246 -0
- package/eleventy/node_modules/@sindresorhus/slugify/index.js +127 -0
- package/eleventy/node_modules/@sindresorhus/slugify/license +9 -0
- package/eleventy/node_modules/@sindresorhus/slugify/overridable-replacements.js +7 -0
- package/eleventy/node_modules/@sindresorhus/slugify/package.json +59 -0
- package/eleventy/node_modules/@sindresorhus/slugify/readme.md +273 -0
- package/eleventy/node_modules/@sindresorhus/transliterate/index.d.ts +48 -0
- package/eleventy/node_modules/@sindresorhus/transliterate/index.js +33 -0
- package/eleventy/node_modules/@sindresorhus/transliterate/license +9 -0
- package/eleventy/node_modules/@sindresorhus/transliterate/package.json +47 -0
- package/eleventy/node_modules/@sindresorhus/transliterate/readme.md +103 -0
- package/eleventy/node_modules/@sindresorhus/transliterate/replacements.js +2056 -0
- package/eleventy/node_modules/a-sync-waterfall/LICENSE +21 -0
- package/eleventy/node_modules/a-sync-waterfall/README.md +95 -0
- package/eleventy/node_modules/a-sync-waterfall/index.js +83 -0
- package/eleventy/node_modules/a-sync-waterfall/package.json +21 -0
- package/eleventy/node_modules/a-sync-waterfall/test.js +77 -0
- package/eleventy/node_modules/acorn/CHANGELOG.md +928 -0
- package/eleventy/node_modules/acorn/LICENSE +21 -0
- package/eleventy/node_modules/acorn/README.md +282 -0
- package/eleventy/node_modules/acorn/bin/acorn +4 -0
- package/eleventy/node_modules/acorn/dist/acorn.d.mts +866 -0
- package/eleventy/node_modules/acorn/dist/acorn.d.ts +866 -0
- package/eleventy/node_modules/acorn/dist/acorn.js +6174 -0
- package/eleventy/node_modules/acorn/dist/acorn.mjs +6145 -0
- package/eleventy/node_modules/acorn/dist/bin.js +90 -0
- package/eleventy/node_modules/acorn/package.json +50 -0
- package/eleventy/node_modules/acorn-walk/CHANGELOG.md +199 -0
- package/eleventy/node_modules/acorn-walk/LICENSE +21 -0
- package/eleventy/node_modules/acorn-walk/README.md +124 -0
- package/eleventy/node_modules/acorn-walk/dist/walk.d.mts +177 -0
- package/eleventy/node_modules/acorn-walk/dist/walk.d.ts +177 -0
- package/eleventy/node_modules/acorn-walk/dist/walk.js +455 -0
- package/eleventy/node_modules/acorn-walk/dist/walk.mjs +437 -0
- package/eleventy/node_modules/acorn-walk/package.json +50 -0
- package/eleventy/node_modules/ansi-regex/index.d.ts +33 -0
- package/eleventy/node_modules/ansi-regex/index.js +10 -0
- package/eleventy/node_modules/ansi-regex/license +9 -0
- package/eleventy/node_modules/ansi-regex/package.json +61 -0
- package/eleventy/node_modules/ansi-regex/readme.md +60 -0
- package/eleventy/node_modules/ansi-styles/index.d.ts +236 -0
- package/eleventy/node_modules/ansi-styles/index.js +223 -0
- package/eleventy/node_modules/ansi-styles/license +9 -0
- package/eleventy/node_modules/ansi-styles/package.json +54 -0
- package/eleventy/node_modules/ansi-styles/readme.md +173 -0
- package/eleventy/node_modules/anymatch/LICENSE +15 -0
- package/eleventy/node_modules/anymatch/README.md +87 -0
- package/eleventy/node_modules/anymatch/index.d.ts +20 -0
- package/eleventy/node_modules/anymatch/index.js +104 -0
- package/eleventy/node_modules/anymatch/package.json +48 -0
- package/eleventy/node_modules/argparse/CHANGELOG.md +216 -0
- package/eleventy/node_modules/argparse/LICENSE +254 -0
- package/eleventy/node_modules/argparse/README.md +84 -0
- package/eleventy/node_modules/argparse/argparse.js +3707 -0
- package/eleventy/node_modules/argparse/lib/sub.js +67 -0
- package/eleventy/node_modules/argparse/lib/textwrap.js +440 -0
- package/eleventy/node_modules/argparse/package.json +31 -0
- package/eleventy/node_modules/array-differ/index.js +7 -0
- package/eleventy/node_modules/array-differ/package.json +32 -0
- package/eleventy/node_modules/array-differ/readme.md +41 -0
- package/eleventy/node_modules/array-union/index.js +6 -0
- package/eleventy/node_modules/array-union/license +21 -0
- package/eleventy/node_modules/array-union/package.json +40 -0
- package/eleventy/node_modules/array-union/readme.md +28 -0
- package/eleventy/node_modules/array-uniq/index.js +62 -0
- package/eleventy/node_modules/array-uniq/license +21 -0
- package/eleventy/node_modules/array-uniq/package.json +37 -0
- package/eleventy/node_modules/array-uniq/readme.md +30 -0
- package/eleventy/node_modules/arrify/index.js +8 -0
- package/eleventy/node_modules/arrify/license +21 -0
- package/eleventy/node_modules/arrify/package.json +33 -0
- package/eleventy/node_modules/arrify/readme.md +36 -0
- package/eleventy/node_modules/asap/CHANGES.md +70 -0
- package/eleventy/node_modules/asap/LICENSE.md +21 -0
- package/eleventy/node_modules/asap/README.md +237 -0
- package/eleventy/node_modules/asap/asap.js +65 -0
- package/eleventy/node_modules/asap/browser-asap.js +66 -0
- package/eleventy/node_modules/asap/browser-raw.js +223 -0
- package/eleventy/node_modules/asap/package.json +58 -0
- package/eleventy/node_modules/asap/raw.js +101 -0
- package/eleventy/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/eleventy/node_modules/balanced-match/LICENSE.md +21 -0
- package/eleventy/node_modules/balanced-match/README.md +97 -0
- package/eleventy/node_modules/balanced-match/index.js +62 -0
- package/eleventy/node_modules/balanced-match/package.json +48 -0
- package/eleventy/node_modules/bcp-47/index.d.ts +6 -0
- package/eleventy/node_modules/bcp-47/index.js +9 -0
- package/eleventy/node_modules/bcp-47/lib/normal.d.ts +2 -0
- package/eleventy/node_modules/bcp-47/lib/normal.js +29 -0
- package/eleventy/node_modules/bcp-47/lib/parse.d.ts +29 -0
- package/eleventy/node_modules/bcp-47/lib/parse.js +310 -0
- package/eleventy/node_modules/bcp-47/lib/regular.d.ts +2 -0
- package/eleventy/node_modules/bcp-47/lib/regular.js +12 -0
- package/eleventy/node_modules/bcp-47/lib/stringify.d.ts +13 -0
- package/eleventy/node_modules/bcp-47/lib/stringify.js +50 -0
- package/eleventy/node_modules/bcp-47/license +22 -0
- package/eleventy/node_modules/bcp-47/package.json +85 -0
- package/eleventy/node_modules/bcp-47/readme.md +344 -0
- package/eleventy/node_modules/bcp-47-match/index.d.ts +47 -0
- package/eleventy/node_modules/bcp-47-match/index.js +234 -0
- package/eleventy/node_modules/bcp-47-match/license +22 -0
- package/eleventy/node_modules/bcp-47-match/package.json +88 -0
- package/eleventy/node_modules/bcp-47-match/readme.md +315 -0
- package/eleventy/node_modules/bcp-47-normalize/index.d.ts +3 -0
- package/eleventy/node_modules/bcp-47-normalize/index.js +6 -0
- package/eleventy/node_modules/bcp-47-normalize/lib/fields.d.ts +24 -0
- package/eleventy/node_modules/bcp-47-normalize/lib/fields.js +3217 -0
- package/eleventy/node_modules/bcp-47-normalize/lib/index.d.ts +36 -0
- package/eleventy/node_modules/bcp-47-normalize/lib/index.js +335 -0
- package/eleventy/node_modules/bcp-47-normalize/lib/likely.d.ts +4 -0
- package/eleventy/node_modules/bcp-47-normalize/lib/likely.js +8039 -0
- package/eleventy/node_modules/bcp-47-normalize/lib/many.d.ts +10 -0
- package/eleventy/node_modules/bcp-47-normalize/lib/many.js +95 -0
- package/eleventy/node_modules/bcp-47-normalize/lib/matches.d.ts +13 -0
- package/eleventy/node_modules/bcp-47-normalize/lib/matches.js +1859 -0
- package/eleventy/node_modules/bcp-47-normalize/license +22 -0
- package/eleventy/node_modules/bcp-47-normalize/package.json +91 -0
- package/eleventy/node_modules/bcp-47-normalize/readme.md +207 -0
- package/eleventy/node_modules/binary-extensions/binary-extensions.json +263 -0
- package/eleventy/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
- package/eleventy/node_modules/binary-extensions/index.d.ts +14 -0
- package/eleventy/node_modules/binary-extensions/index.js +1 -0
- package/eleventy/node_modules/binary-extensions/license +10 -0
- package/eleventy/node_modules/binary-extensions/package.json +40 -0
- package/eleventy/node_modules/binary-extensions/readme.md +25 -0
- package/eleventy/node_modules/brace-expansion/LICENSE +21 -0
- package/eleventy/node_modules/brace-expansion/README.md +129 -0
- package/eleventy/node_modules/brace-expansion/index.js +201 -0
- package/eleventy/node_modules/brace-expansion/package.json +47 -0
- package/eleventy/node_modules/braces/LICENSE +21 -0
- package/eleventy/node_modules/braces/README.md +586 -0
- package/eleventy/node_modules/braces/index.js +170 -0
- package/eleventy/node_modules/braces/lib/compile.js +60 -0
- package/eleventy/node_modules/braces/lib/constants.js +57 -0
- package/eleventy/node_modules/braces/lib/expand.js +113 -0
- package/eleventy/node_modules/braces/lib/parse.js +331 -0
- package/eleventy/node_modules/braces/lib/stringify.js +32 -0
- package/eleventy/node_modules/braces/lib/utils.js +122 -0
- package/eleventy/node_modules/braces/package.json +77 -0
- package/eleventy/node_modules/chardet/LICENSE +19 -0
- package/eleventy/node_modules/chardet/README.md +114 -0
- package/eleventy/node_modules/chardet/lib/encoding/ascii.d.ts +6 -0
- package/eleventy/node_modules/chardet/lib/encoding/ascii.js +23 -0
- package/eleventy/node_modules/chardet/lib/encoding/ascii.js.map +1 -0
- package/eleventy/node_modules/chardet/lib/encoding/index.d.ts +14 -0
- package/eleventy/node_modules/chardet/lib/encoding/index.js +3 -0
- package/eleventy/node_modules/chardet/lib/encoding/index.js.map +1 -0
- package/eleventy/node_modules/chardet/lib/encoding/iso2022.d.ts +23 -0
- package/eleventy/node_modules/chardet/lib/encoding/iso2022.js +114 -0
- package/eleventy/node_modules/chardet/lib/encoding/iso2022.js.map +1 -0
- package/eleventy/node_modules/chardet/lib/encoding/mbcs.d.ts +50 -0
- package/eleventy/node_modules/chardet/lib/encoding/mbcs.js +347 -0
- package/eleventy/node_modules/chardet/lib/encoding/mbcs.js.map +1 -0
- package/eleventy/node_modules/chardet/lib/encoding/sbcs.d.ts +75 -0
- package/eleventy/node_modules/chardet/lib/encoding/sbcs.js +764 -0
- package/eleventy/node_modules/chardet/lib/encoding/sbcs.js.map +1 -0
- package/eleventy/node_modules/chardet/lib/encoding/unicode.d.ts +27 -0
- package/eleventy/node_modules/chardet/lib/encoding/unicode.js +109 -0
- package/eleventy/node_modules/chardet/lib/encoding/unicode.js.map +1 -0
- package/eleventy/node_modules/chardet/lib/encoding/utf8.d.ts +6 -0
- package/eleventy/node_modules/chardet/lib/encoding/utf8.js +72 -0
- package/eleventy/node_modules/chardet/lib/encoding/utf8.js.map +1 -0
- package/eleventy/node_modules/chardet/lib/fs/browser.d.ts +2 -0
- package/eleventy/node_modules/chardet/lib/fs/browser.js +6 -0
- package/eleventy/node_modules/chardet/lib/fs/browser.js.map +1 -0
- package/eleventy/node_modules/chardet/lib/fs/node.d.ts +2 -0
- package/eleventy/node_modules/chardet/lib/fs/node.js +11 -0
- package/eleventy/node_modules/chardet/lib/fs/node.js.map +1 -0
- package/eleventy/node_modules/chardet/lib/index.d.ts +19 -0
- package/eleventy/node_modules/chardet/lib/index.js +149 -0
- package/eleventy/node_modules/chardet/lib/index.js.map +1 -0
- package/eleventy/node_modules/chardet/lib/match.d.ts +8 -0
- package/eleventy/node_modules/chardet/lib/match.js +8 -0
- package/eleventy/node_modules/chardet/lib/match.js.map +1 -0
- package/eleventy/node_modules/chardet/lib/utils.d.ts +1 -0
- package/eleventy/node_modules/chardet/lib/utils.js +10 -0
- package/eleventy/node_modules/chardet/lib/utils.js.map +1 -0
- package/eleventy/node_modules/chardet/package.json +95 -0
- package/eleventy/node_modules/chokidar/LICENSE +21 -0
- package/eleventy/node_modules/chokidar/README.md +308 -0
- package/eleventy/node_modules/chokidar/index.js +973 -0
- package/eleventy/node_modules/chokidar/lib/constants.js +66 -0
- package/eleventy/node_modules/chokidar/lib/fsevents-handler.js +526 -0
- package/eleventy/node_modules/chokidar/lib/nodefs-handler.js +654 -0
- package/eleventy/node_modules/chokidar/package.json +70 -0
- package/eleventy/node_modules/chokidar/types/index.d.ts +192 -0
- package/eleventy/node_modules/color-convert/CHANGELOG.md +54 -0
- package/eleventy/node_modules/color-convert/LICENSE +21 -0
- package/eleventy/node_modules/color-convert/README.md +68 -0
- package/eleventy/node_modules/color-convert/conversions.js +839 -0
- package/eleventy/node_modules/color-convert/index.js +81 -0
- package/eleventy/node_modules/color-convert/package.json +48 -0
- package/eleventy/node_modules/color-convert/route.js +97 -0
- package/eleventy/node_modules/color-name/LICENSE +8 -0
- package/eleventy/node_modules/color-name/README.md +11 -0
- package/eleventy/node_modules/color-name/index.js +152 -0
- package/eleventy/node_modules/color-name/package.json +28 -0
- package/eleventy/node_modules/commander/LICENSE +22 -0
- package/eleventy/node_modules/commander/Readme.md +1134 -0
- package/eleventy/node_modules/commander/esm.mjs +16 -0
- package/eleventy/node_modules/commander/index.js +27 -0
- package/eleventy/node_modules/commander/lib/argument.js +147 -0
- package/eleventy/node_modules/commander/lib/command.js +2179 -0
- package/eleventy/node_modules/commander/lib/error.js +45 -0
- package/eleventy/node_modules/commander/lib/help.js +464 -0
- package/eleventy/node_modules/commander/lib/option.js +331 -0
- package/eleventy/node_modules/commander/lib/suggestSimilar.js +100 -0
- package/eleventy/node_modules/commander/package-support.json +16 -0
- package/eleventy/node_modules/commander/package.json +80 -0
- package/eleventy/node_modules/commander/typings/index.d.ts +889 -0
- package/eleventy/node_modules/concat-map/.travis.yml +4 -0
- package/eleventy/node_modules/concat-map/LICENSE +18 -0
- package/eleventy/node_modules/concat-map/README.markdown +62 -0
- package/eleventy/node_modules/concat-map/example/map.js +6 -0
- package/eleventy/node_modules/concat-map/index.js +13 -0
- package/eleventy/node_modules/concat-map/package.json +43 -0
- package/eleventy/node_modules/concat-map/test/map.js +39 -0
- package/eleventy/node_modules/cross-spawn/LICENSE +21 -0
- package/eleventy/node_modules/cross-spawn/README.md +89 -0
- package/eleventy/node_modules/cross-spawn/index.js +39 -0
- package/eleventy/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/eleventy/node_modules/cross-spawn/lib/parse.js +91 -0
- package/eleventy/node_modules/cross-spawn/lib/util/escape.js +47 -0
- package/eleventy/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/eleventy/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/eleventy/node_modules/cross-spawn/package.json +73 -0
- package/eleventy/node_modules/debug/LICENSE +20 -0
- package/eleventy/node_modules/debug/README.md +481 -0
- package/eleventy/node_modules/debug/package.json +65 -0
- package/eleventy/node_modules/debug/src/browser.js +272 -0
- package/eleventy/node_modules/debug/src/common.js +292 -0
- package/eleventy/node_modules/debug/src/index.js +10 -0
- package/eleventy/node_modules/debug/src/node.js +263 -0
- package/eleventy/node_modules/depd/History.md +103 -0
- package/eleventy/node_modules/depd/LICENSE +22 -0
- package/eleventy/node_modules/depd/Readme.md +280 -0
- package/eleventy/node_modules/depd/index.js +538 -0
- package/eleventy/node_modules/depd/lib/browser/index.js +77 -0
- package/eleventy/node_modules/depd/package.json +45 -0
- package/eleventy/node_modules/dependency-graph/.github/workflows/node.js.yml +24 -0
- package/eleventy/node_modules/dependency-graph/CHANGELOG.md +88 -0
- package/eleventy/node_modules/dependency-graph/LICENSE +19 -0
- package/eleventy/node_modules/dependency-graph/README.md +78 -0
- package/eleventy/node_modules/dependency-graph/lib/dep_graph.js +364 -0
- package/eleventy/node_modules/dependency-graph/lib/index.d.ts +127 -0
- package/eleventy/node_modules/dependency-graph/package.json +31 -0
- package/eleventy/node_modules/dependency-graph/specs/dep_graph_spec.js +567 -0
- package/eleventy/node_modules/destroy/LICENSE +23 -0
- package/eleventy/node_modules/destroy/README.md +63 -0
- package/eleventy/node_modules/destroy/index.js +209 -0
- package/eleventy/node_modules/destroy/package.json +48 -0
- package/eleventy/node_modules/dev-ip/.jshintrc +26 -0
- package/eleventy/node_modules/dev-ip/.travis.yml +5 -0
- package/eleventy/node_modules/dev-ip/LICENSE-MIT +22 -0
- package/eleventy/node_modules/dev-ip/README.md +32 -0
- package/eleventy/node_modules/dev-ip/example.js +4 -0
- package/eleventy/node_modules/dev-ip/lib/dev-ip.js +44 -0
- package/eleventy/node_modules/dev-ip/package.json +43 -0
- package/eleventy/node_modules/dev-ip/test/.jshintrc +26 -0
- package/eleventy/node_modules/dev-ip/test/devip.js +77 -0
- package/eleventy/node_modules/dev-ip/test/fixtures/resp-multiple.js +35 -0
- package/eleventy/node_modules/dev-ip/test/fixtures/resp-none.js +19 -0
- package/eleventy/node_modules/dev-ip/test/fixtures/resp-single.js +30 -0
- package/eleventy/node_modules/dom-serializer/LICENSE +11 -0
- package/eleventy/node_modules/dom-serializer/README.md +97 -0
- package/eleventy/node_modules/dom-serializer/lib/esm/foreignNames.d.ts +3 -0
- package/eleventy/node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map +1 -0
- package/eleventy/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
- package/eleventy/node_modules/dom-serializer/lib/esm/index.d.ts +52 -0
- package/eleventy/node_modules/dom-serializer/lib/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/dom-serializer/lib/esm/index.js +190 -0
- package/eleventy/node_modules/dom-serializer/lib/esm/package.json +1 -0
- package/eleventy/node_modules/dom-serializer/lib/foreignNames.d.ts +3 -0
- package/eleventy/node_modules/dom-serializer/lib/foreignNames.d.ts.map +1 -0
- package/eleventy/node_modules/dom-serializer/lib/foreignNames.js +103 -0
- package/eleventy/node_modules/dom-serializer/lib/index.d.ts +43 -0
- package/eleventy/node_modules/dom-serializer/lib/index.d.ts.map +1 -0
- package/eleventy/node_modules/dom-serializer/lib/index.js +211 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/LICENSE +11 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode.d.ts +5 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode.d.ts.map +1 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode.js +53 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode_codepoint.d.ts +2 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode_codepoint.js +30 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/encode.d.ts +47 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/encode.d.ts.map +1 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/encode.js +136 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/index.d.ts +27 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/index.d.ts.map +1 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/index.js +57 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/maps/decode.json +1 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/maps/entities.json +1 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/maps/legacy.json +1 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/maps/xml.json +1 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/package.json +64 -0
- package/eleventy/node_modules/dom-serializer/node_modules/entities/readme.md +57 -0
- package/eleventy/node_modules/dom-serializer/package.json +55 -0
- package/eleventy/node_modules/domelementtype/LICENSE +11 -0
- package/eleventy/node_modules/domelementtype/lib/esm/index.d.ts +48 -0
- package/eleventy/node_modules/domelementtype/lib/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/domelementtype/lib/esm/index.js +51 -0
- package/eleventy/node_modules/domelementtype/lib/esm/package.json +1 -0
- package/eleventy/node_modules/domelementtype/lib/index.d.ts +48 -0
- package/eleventy/node_modules/domelementtype/lib/index.d.ts.map +1 -0
- package/eleventy/node_modules/domelementtype/lib/index.js +55 -0
- package/eleventy/node_modules/domelementtype/package.json +54 -0
- package/eleventy/node_modules/domelementtype/readme.md +1 -0
- package/eleventy/node_modules/domhandler/LICENSE +11 -0
- package/eleventy/node_modules/domhandler/lib/index.d.ts +85 -0
- package/eleventy/node_modules/domhandler/lib/index.d.ts.map +1 -0
- package/eleventy/node_modules/domhandler/lib/index.js +176 -0
- package/eleventy/node_modules/domhandler/lib/node.d.ts +237 -0
- package/eleventy/node_modules/domhandler/lib/node.d.ts.map +1 -0
- package/eleventy/node_modules/domhandler/lib/node.js +444 -0
- package/eleventy/node_modules/domhandler/package.json +58 -0
- package/eleventy/node_modules/domhandler/readme.md +163 -0
- package/eleventy/node_modules/domutils/LICENSE +11 -0
- package/eleventy/node_modules/domutils/lib/feeds.d.ts +45 -0
- package/eleventy/node_modules/domutils/lib/feeds.d.ts.map +1 -0
- package/eleventy/node_modules/domutils/lib/feeds.js +190 -0
- package/eleventy/node_modules/domutils/lib/helpers.d.ts +51 -0
- package/eleventy/node_modules/domutils/lib/helpers.d.ts.map +1 -0
- package/eleventy/node_modules/domutils/lib/helpers.js +125 -0
- package/eleventy/node_modules/domutils/lib/index.d.ts +10 -0
- package/eleventy/node_modules/domutils/lib/index.d.ts.map +1 -0
- package/eleventy/node_modules/domutils/lib/index.js +28 -0
- package/eleventy/node_modules/domutils/lib/legacy.d.ts +47 -0
- package/eleventy/node_modules/domutils/lib/legacy.d.ts.map +1 -0
- package/eleventy/node_modules/domutils/lib/legacy.js +124 -0
- package/eleventy/node_modules/domutils/lib/manipulation.d.ts +43 -0
- package/eleventy/node_modules/domutils/lib/manipulation.d.ts.map +1 -0
- package/eleventy/node_modules/domutils/lib/manipulation.js +129 -0
- package/eleventy/node_modules/domutils/lib/querying.d.ts +55 -0
- package/eleventy/node_modules/domutils/lib/querying.d.ts.map +1 -0
- package/eleventy/node_modules/domutils/lib/querying.js +126 -0
- package/eleventy/node_modules/domutils/lib/stringify.d.ts +41 -0
- package/eleventy/node_modules/domutils/lib/stringify.d.ts.map +1 -0
- package/eleventy/node_modules/domutils/lib/stringify.js +86 -0
- package/eleventy/node_modules/domutils/lib/traversal.d.ts +59 -0
- package/eleventy/node_modules/domutils/lib/traversal.d.ts.map +1 -0
- package/eleventy/node_modules/domutils/lib/traversal.js +117 -0
- package/eleventy/node_modules/domutils/package.json +65 -0
- package/eleventy/node_modules/domutils/readme.md +31 -0
- package/eleventy/node_modules/eastasianwidth/README.md +32 -0
- package/eleventy/node_modules/eastasianwidth/eastasianwidth.js +311 -0
- package/eleventy/node_modules/eastasianwidth/package.json +18 -0
- package/eleventy/node_modules/ee-first/LICENSE +22 -0
- package/eleventy/node_modules/ee-first/README.md +80 -0
- package/eleventy/node_modules/ee-first/index.js +95 -0
- package/eleventy/node_modules/ee-first/package.json +29 -0
- package/eleventy/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/eleventy/node_modules/emoji-regex/README.md +137 -0
- package/eleventy/node_modules/emoji-regex/RGI_Emoji.d.ts +5 -0
- package/eleventy/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- package/eleventy/node_modules/emoji-regex/es2015/RGI_Emoji.d.ts +5 -0
- package/eleventy/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- package/eleventy/node_modules/emoji-regex/es2015/index.d.ts +5 -0
- package/eleventy/node_modules/emoji-regex/es2015/index.js +6 -0
- package/eleventy/node_modules/emoji-regex/es2015/text.d.ts +5 -0
- package/eleventy/node_modules/emoji-regex/es2015/text.js +6 -0
- package/eleventy/node_modules/emoji-regex/index.d.ts +5 -0
- package/eleventy/node_modules/emoji-regex/index.js +6 -0
- package/eleventy/node_modules/emoji-regex/package.json +52 -0
- package/eleventy/node_modules/emoji-regex/text.d.ts +5 -0
- package/eleventy/node_modules/emoji-regex/text.js +6 -0
- package/eleventy/node_modules/encodeurl/LICENSE +22 -0
- package/eleventy/node_modules/encodeurl/README.md +109 -0
- package/eleventy/node_modules/encodeurl/index.js +60 -0
- package/eleventy/node_modules/encodeurl/package.json +40 -0
- package/eleventy/node_modules/entities/LICENSE +11 -0
- package/eleventy/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
- package/eleventy/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
- package/eleventy/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/decode.d.ts +209 -0
- package/eleventy/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/decode.js +514 -0
- package/eleventy/node_modules/entities/dist/commonjs/decode.js.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
- package/eleventy/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/encode.js +76 -0
- package/eleventy/node_modules/entities/dist/commonjs/encode.js.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/escape.d.ts +43 -0
- package/eleventy/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/escape.js +120 -0
- package/eleventy/node_modules/entities/dist/commonjs/escape.js.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +3 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-html.js +9 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +3 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +9 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +8 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/encode-html.js +12 -0
- package/eleventy/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/index.d.ts +96 -0
- package/eleventy/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/index.js +128 -0
- package/eleventy/node_modules/entities/dist/commonjs/index.js.map +1 -0
- package/eleventy/node_modules/entities/dist/commonjs/package.json +3 -0
- package/eleventy/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
- package/eleventy/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
- package/eleventy/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/decode.d.ts +209 -0
- package/eleventy/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/decode.js +497 -0
- package/eleventy/node_modules/entities/dist/esm/decode.js.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/encode.d.ts +22 -0
- package/eleventy/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/encode.js +69 -0
- package/eleventy/node_modules/entities/dist/esm/encode.js.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/escape.d.ts +43 -0
- package/eleventy/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/escape.js +116 -0
- package/eleventy/node_modules/entities/dist/esm/escape.js.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +3 -0
- package/eleventy/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/generated/decode-data-html.js +7 -0
- package/eleventy/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +3 -0
- package/eleventy/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/generated/decode-data-xml.js +7 -0
- package/eleventy/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/generated/encode-html.d.ts +8 -0
- package/eleventy/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/generated/encode-html.js +10 -0
- package/eleventy/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/index.d.ts +96 -0
- package/eleventy/node_modules/entities/dist/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/index.js +104 -0
- package/eleventy/node_modules/entities/dist/esm/index.js.map +1 -0
- package/eleventy/node_modules/entities/dist/esm/package.json +3 -0
- package/eleventy/node_modules/entities/package.json +120 -0
- package/eleventy/node_modules/entities/readme.md +122 -0
- package/eleventy/node_modules/entities/src/decode-codepoint.ts +81 -0
- package/eleventy/node_modules/entities/src/decode.spec.ts +320 -0
- package/eleventy/node_modules/entities/src/decode.ts +620 -0
- package/eleventy/node_modules/entities/src/encode.spec.ts +78 -0
- package/eleventy/node_modules/entities/src/encode.ts +77 -0
- package/eleventy/node_modules/entities/src/escape.spec.ts +14 -0
- package/eleventy/node_modules/entities/src/escape.ts +144 -0
- package/eleventy/node_modules/entities/src/generated/.eslintrc.json +10 -0
- package/eleventy/node_modules/entities/src/generated/decode-data-html.ts +8 -0
- package/eleventy/node_modules/entities/src/generated/decode-data-xml.ts +8 -0
- package/eleventy/node_modules/entities/src/generated/encode-html.ts +17 -0
- package/eleventy/node_modules/entities/src/index.spec.ts +125 -0
- package/eleventy/node_modules/entities/src/index.ts +185 -0
- package/eleventy/node_modules/errno/.jshintrc +59 -0
- package/eleventy/node_modules/errno/.travis.yml +19 -0
- package/eleventy/node_modules/errno/README.md +145 -0
- package/eleventy/node_modules/errno/build.js +43 -0
- package/eleventy/node_modules/errno/cli.js +22 -0
- package/eleventy/node_modules/errno/custom.js +57 -0
- package/eleventy/node_modules/errno/errno.js +313 -0
- package/eleventy/node_modules/errno/package.json +33 -0
- package/eleventy/node_modules/errno/test.js +88 -0
- package/eleventy/node_modules/escape-html/LICENSE +24 -0
- package/eleventy/node_modules/escape-html/Readme.md +43 -0
- package/eleventy/node_modules/escape-html/index.js +78 -0
- package/eleventy/node_modules/escape-html/package.json +24 -0
- package/eleventy/node_modules/escape-string-regexp/index.d.ts +16 -0
- package/eleventy/node_modules/escape-string-regexp/index.js +11 -0
- package/eleventy/node_modules/escape-string-regexp/license +9 -0
- package/eleventy/node_modules/escape-string-regexp/package.json +40 -0
- package/eleventy/node_modules/escape-string-regexp/readme.md +34 -0
- package/eleventy/node_modules/esm-import-transformer/.github/workflows/ci.yml +23 -0
- package/eleventy/node_modules/esm-import-transformer/README.md +91 -0
- package/eleventy/node_modules/esm-import-transformer/import-transformer.js +130 -0
- package/eleventy/node_modules/esm-import-transformer/package.json +26 -0
- package/eleventy/node_modules/esm-import-transformer/test/commonjsTest.cjs +16 -0
- package/eleventy/node_modules/esm-import-transformer/test/test.js +217 -0
- package/eleventy/node_modules/esprima/ChangeLog +235 -0
- package/eleventy/node_modules/esprima/LICENSE.BSD +21 -0
- package/eleventy/node_modules/esprima/README.md +46 -0
- package/eleventy/node_modules/esprima/bin/esparse.js +139 -0
- package/eleventy/node_modules/esprima/bin/esvalidate.js +236 -0
- package/eleventy/node_modules/esprima/dist/esprima.js +6709 -0
- package/eleventy/node_modules/esprima/package.json +112 -0
- package/eleventy/node_modules/etag/HISTORY.md +83 -0
- package/eleventy/node_modules/etag/LICENSE +22 -0
- package/eleventy/node_modules/etag/README.md +159 -0
- package/eleventy/node_modules/etag/index.js +131 -0
- package/eleventy/node_modules/etag/package.json +47 -0
- package/eleventy/node_modules/evaluate-value/LICENSE +21 -0
- package/eleventy/node_modules/evaluate-value/README.md +41 -0
- package/eleventy/node_modules/evaluate-value/index-es5.js +17 -0
- package/eleventy/node_modules/evaluate-value/index-es5.js.map +1 -0
- package/eleventy/node_modules/evaluate-value/index.js +17 -0
- package/eleventy/node_modules/evaluate-value/package.json +33 -0
- package/eleventy/node_modules/extend-shallow/LICENSE +21 -0
- package/eleventy/node_modules/extend-shallow/README.md +61 -0
- package/eleventy/node_modules/extend-shallow/index.js +33 -0
- package/eleventy/node_modules/extend-shallow/package.json +56 -0
- package/eleventy/node_modules/fast-glob/LICENSE +21 -0
- package/eleventy/node_modules/fast-glob/README.md +830 -0
- package/eleventy/node_modules/fast-glob/out/index.d.ts +40 -0
- package/eleventy/node_modules/fast-glob/out/index.js +102 -0
- package/eleventy/node_modules/fast-glob/out/managers/tasks.d.ts +22 -0
- package/eleventy/node_modules/fast-glob/out/managers/tasks.js +110 -0
- package/eleventy/node_modules/fast-glob/out/providers/async.d.ts +9 -0
- package/eleventy/node_modules/fast-glob/out/providers/async.js +23 -0
- package/eleventy/node_modules/fast-glob/out/providers/filters/deep.d.ts +16 -0
- package/eleventy/node_modules/fast-glob/out/providers/filters/deep.js +62 -0
- package/eleventy/node_modules/fast-glob/out/providers/filters/entry.d.ts +17 -0
- package/eleventy/node_modules/fast-glob/out/providers/filters/entry.js +85 -0
- package/eleventy/node_modules/fast-glob/out/providers/filters/error.d.ts +8 -0
- package/eleventy/node_modules/fast-glob/out/providers/filters/error.js +15 -0
- package/eleventy/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +33 -0
- package/eleventy/node_modules/fast-glob/out/providers/matchers/matcher.js +45 -0
- package/eleventy/node_modules/fast-glob/out/providers/matchers/partial.d.ts +4 -0
- package/eleventy/node_modules/fast-glob/out/providers/matchers/partial.js +38 -0
- package/eleventy/node_modules/fast-glob/out/providers/provider.d.ts +19 -0
- package/eleventy/node_modules/fast-glob/out/providers/provider.js +48 -0
- package/eleventy/node_modules/fast-glob/out/providers/stream.d.ts +11 -0
- package/eleventy/node_modules/fast-glob/out/providers/stream.js +31 -0
- package/eleventy/node_modules/fast-glob/out/providers/sync.d.ts +9 -0
- package/eleventy/node_modules/fast-glob/out/providers/sync.js +23 -0
- package/eleventy/node_modules/fast-glob/out/providers/transformers/entry.d.ts +8 -0
- package/eleventy/node_modules/fast-glob/out/providers/transformers/entry.js +26 -0
- package/eleventy/node_modules/fast-glob/out/readers/async.d.ts +10 -0
- package/eleventy/node_modules/fast-glob/out/readers/async.js +35 -0
- package/eleventy/node_modules/fast-glob/out/readers/reader.d.ts +15 -0
- package/eleventy/node_modules/fast-glob/out/readers/reader.js +33 -0
- package/eleventy/node_modules/fast-glob/out/readers/stream.d.ts +14 -0
- package/eleventy/node_modules/fast-glob/out/readers/stream.js +55 -0
- package/eleventy/node_modules/fast-glob/out/readers/sync.d.ts +12 -0
- package/eleventy/node_modules/fast-glob/out/readers/sync.js +43 -0
- package/eleventy/node_modules/fast-glob/out/settings.d.ts +164 -0
- package/eleventy/node_modules/fast-glob/out/settings.js +59 -0
- package/eleventy/node_modules/fast-glob/out/types/index.d.ts +31 -0
- package/eleventy/node_modules/fast-glob/out/types/index.js +2 -0
- package/eleventy/node_modules/fast-glob/out/utils/array.d.ts +2 -0
- package/eleventy/node_modules/fast-glob/out/utils/array.js +22 -0
- package/eleventy/node_modules/fast-glob/out/utils/errno.d.ts +2 -0
- package/eleventy/node_modules/fast-glob/out/utils/errno.js +7 -0
- package/eleventy/node_modules/fast-glob/out/utils/fs.d.ts +4 -0
- package/eleventy/node_modules/fast-glob/out/utils/fs.js +19 -0
- package/eleventy/node_modules/fast-glob/out/utils/index.d.ts +8 -0
- package/eleventy/node_modules/fast-glob/out/utils/index.js +17 -0
- package/eleventy/node_modules/fast-glob/out/utils/path.d.ts +13 -0
- package/eleventy/node_modules/fast-glob/out/utils/path.js +68 -0
- package/eleventy/node_modules/fast-glob/out/utils/pattern.d.ts +49 -0
- package/eleventy/node_modules/fast-glob/out/utils/pattern.js +206 -0
- package/eleventy/node_modules/fast-glob/out/utils/stream.d.ts +4 -0
- package/eleventy/node_modules/fast-glob/out/utils/stream.js +17 -0
- package/eleventy/node_modules/fast-glob/out/utils/string.d.ts +2 -0
- package/eleventy/node_modules/fast-glob/out/utils/string.js +11 -0
- package/eleventy/node_modules/fast-glob/package.json +81 -0
- package/eleventy/node_modules/fastq/.github/dependabot.yml +11 -0
- package/eleventy/node_modules/fastq/.github/workflows/ci.yml +75 -0
- package/eleventy/node_modules/fastq/LICENSE +13 -0
- package/eleventy/node_modules/fastq/README.md +306 -0
- package/eleventy/node_modules/fastq/SECURITY.md +15 -0
- package/eleventy/node_modules/fastq/bench.js +66 -0
- package/eleventy/node_modules/fastq/example.js +14 -0
- package/eleventy/node_modules/fastq/example.mjs +11 -0
- package/eleventy/node_modules/fastq/index.d.ts +38 -0
- package/eleventy/node_modules/fastq/package.json +53 -0
- package/eleventy/node_modules/fastq/queue.js +311 -0
- package/eleventy/node_modules/fastq/test/example.ts +83 -0
- package/eleventy/node_modules/fastq/test/promise.js +291 -0
- package/eleventy/node_modules/fastq/test/test.js +642 -0
- package/eleventy/node_modules/fastq/test/tsconfig.json +11 -0
- package/eleventy/node_modules/filesize/LICENSE +28 -0
- package/eleventy/node_modules/filesize/README.md +113 -0
- package/eleventy/node_modules/filesize/dist/filesize.cjs +238 -0
- package/eleventy/node_modules/filesize/dist/filesize.esm.js +231 -0
- package/eleventy/node_modules/filesize/package.json +60 -0
- package/eleventy/node_modules/filesize/types/filesize.d.ts +56 -0
- package/eleventy/node_modules/fill-range/LICENSE +21 -0
- package/eleventy/node_modules/fill-range/README.md +237 -0
- package/eleventy/node_modules/fill-range/index.js +248 -0
- package/eleventy/node_modules/fill-range/package.json +74 -0
- package/eleventy/node_modules/finalhandler/HISTORY.md +210 -0
- package/eleventy/node_modules/finalhandler/LICENSE +22 -0
- package/eleventy/node_modules/finalhandler/README.md +147 -0
- package/eleventy/node_modules/finalhandler/SECURITY.md +25 -0
- package/eleventy/node_modules/finalhandler/index.js +341 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/.coveralls.yml +1 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/.eslintrc +11 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/.travis.yml +14 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/CHANGELOG.md +362 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/LICENSE +19 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/Makefile +50 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/README.md +312 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/component.json +19 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/karma.conf.js +70 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/node.js +1 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/package.json +49 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/src/browser.js +185 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/src/debug.js +202 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/src/index.js +10 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/src/inspector-log.js +15 -0
- package/eleventy/node_modules/finalhandler/node_modules/debug/src/node.js +248 -0
- package/eleventy/node_modules/finalhandler/node_modules/ms/index.js +152 -0
- package/eleventy/node_modules/finalhandler/node_modules/ms/license.md +21 -0
- package/eleventy/node_modules/finalhandler/node_modules/ms/package.json +37 -0
- package/eleventy/node_modules/finalhandler/node_modules/ms/readme.md +51 -0
- package/eleventy/node_modules/finalhandler/package.json +47 -0
- package/eleventy/node_modules/foreground-child/LICENSE +15 -0
- package/eleventy/node_modules/foreground-child/README.md +128 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/all-signals.d.ts +3 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/all-signals.d.ts.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/all-signals.js +58 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/all-signals.js.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/index.d.ts +65 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/index.js +123 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/index.js.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/package.json +3 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/proxy-signals.d.ts +7 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/proxy-signals.d.ts.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/proxy-signals.js +38 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/proxy-signals.js.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/watchdog.d.ts +11 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/watchdog.d.ts.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/watchdog.js +50 -0
- package/eleventy/node_modules/foreground-child/dist/commonjs/watchdog.js.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/esm/all-signals.d.ts +3 -0
- package/eleventy/node_modules/foreground-child/dist/esm/all-signals.d.ts.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/esm/all-signals.js +52 -0
- package/eleventy/node_modules/foreground-child/dist/esm/all-signals.js.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/esm/index.d.ts +65 -0
- package/eleventy/node_modules/foreground-child/dist/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/esm/index.js +115 -0
- package/eleventy/node_modules/foreground-child/dist/esm/index.js.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/esm/package.json +3 -0
- package/eleventy/node_modules/foreground-child/dist/esm/proxy-signals.d.ts +7 -0
- package/eleventy/node_modules/foreground-child/dist/esm/proxy-signals.d.ts.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/esm/proxy-signals.js +34 -0
- package/eleventy/node_modules/foreground-child/dist/esm/proxy-signals.js.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/esm/watchdog.d.ts +11 -0
- package/eleventy/node_modules/foreground-child/dist/esm/watchdog.d.ts.map +1 -0
- package/eleventy/node_modules/foreground-child/dist/esm/watchdog.js +46 -0
- package/eleventy/node_modules/foreground-child/dist/esm/watchdog.js.map +1 -0
- package/eleventy/node_modules/foreground-child/package.json +111 -0
- package/eleventy/node_modules/fresh/HISTORY.md +70 -0
- package/eleventy/node_modules/fresh/LICENSE +23 -0
- package/eleventy/node_modules/fresh/README.md +119 -0
- package/eleventy/node_modules/fresh/index.js +137 -0
- package/eleventy/node_modules/fresh/package.json +46 -0
- package/eleventy/node_modules/fsevents/LICENSE +22 -0
- package/eleventy/node_modules/fsevents/README.md +89 -0
- package/eleventy/node_modules/fsevents/fsevents.d.ts +46 -0
- package/eleventy/node_modules/fsevents/fsevents.js +83 -0
- package/eleventy/node_modules/fsevents/fsevents.node +0 -0
- package/eleventy/node_modules/fsevents/package.json +62 -0
- package/eleventy/node_modules/glob/LICENSE +15 -0
- package/eleventy/node_modules/glob/README.md +1265 -0
- package/eleventy/node_modules/glob/dist/commonjs/glob.d.ts +388 -0
- package/eleventy/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/glob.js +247 -0
- package/eleventy/node_modules/glob/dist/commonjs/glob.js.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
- package/eleventy/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/has-magic.js +27 -0
- package/eleventy/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/ignore.d.ts +24 -0
- package/eleventy/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/ignore.js +119 -0
- package/eleventy/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/index.d.ts +97 -0
- package/eleventy/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/index.js +68 -0
- package/eleventy/node_modules/glob/dist/commonjs/index.js.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/package.json +3 -0
- package/eleventy/node_modules/glob/dist/commonjs/pattern.d.ts +76 -0
- package/eleventy/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/pattern.js +219 -0
- package/eleventy/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
- package/eleventy/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/processor.js +301 -0
- package/eleventy/node_modules/glob/dist/commonjs/processor.js.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/walker.d.ts +97 -0
- package/eleventy/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/commonjs/walker.js +387 -0
- package/eleventy/node_modules/glob/dist/commonjs/walker.js.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/bin.d.mts +3 -0
- package/eleventy/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/bin.mjs +270 -0
- package/eleventy/node_modules/glob/dist/esm/bin.mjs.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/glob.d.ts +388 -0
- package/eleventy/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/glob.js +243 -0
- package/eleventy/node_modules/glob/dist/esm/glob.js.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
- package/eleventy/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/has-magic.js +23 -0
- package/eleventy/node_modules/glob/dist/esm/has-magic.js.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/ignore.d.ts +24 -0
- package/eleventy/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/ignore.js +115 -0
- package/eleventy/node_modules/glob/dist/esm/ignore.js.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/index.d.ts +97 -0
- package/eleventy/node_modules/glob/dist/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/index.js +55 -0
- package/eleventy/node_modules/glob/dist/esm/index.js.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/package.json +3 -0
- package/eleventy/node_modules/glob/dist/esm/pattern.d.ts +76 -0
- package/eleventy/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/pattern.js +215 -0
- package/eleventy/node_modules/glob/dist/esm/pattern.js.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/processor.d.ts +59 -0
- package/eleventy/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/processor.js +294 -0
- package/eleventy/node_modules/glob/dist/esm/processor.js.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/walker.d.ts +97 -0
- package/eleventy/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
- package/eleventy/node_modules/glob/dist/esm/walker.js +381 -0
- package/eleventy/node_modules/glob/dist/esm/walker.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/eleventy/node_modules/glob/node_modules/brace-expansion/LICENSE +21 -0
- package/eleventy/node_modules/glob/node_modules/brace-expansion/README.md +135 -0
- package/eleventy/node_modules/glob/node_modules/brace-expansion/index.js +203 -0
- package/eleventy/node_modules/glob/node_modules/brace-expansion/package.json +46 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/LICENSE +15 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/README.md +454 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.d.ts +20 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.js +592 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.js +152 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.d.ts +12 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.js +22 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/index.d.ts +94 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/index.js +1017 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/package.json +3 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.d.ts +17 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.js +24 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/ast.d.ts +20 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/ast.js +588 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/ast.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.js +148 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/escape.d.ts +12 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/escape.js +18 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/escape.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/index.d.ts +94 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/index.js +1001 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/index.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/package.json +3 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/unescape.d.ts +17 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/unescape.js +20 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
- package/eleventy/node_modules/glob/node_modules/minimatch/package.json +82 -0
- package/eleventy/node_modules/glob/package.json +99 -0
- package/eleventy/node_modules/glob-parent/CHANGELOG.md +110 -0
- package/eleventy/node_modules/glob-parent/LICENSE +15 -0
- package/eleventy/node_modules/glob-parent/README.md +137 -0
- package/eleventy/node_modules/glob-parent/index.js +42 -0
- package/eleventy/node_modules/glob-parent/package.json +48 -0
- package/eleventy/node_modules/graceful-fs/LICENSE +15 -0
- package/eleventy/node_modules/graceful-fs/README.md +143 -0
- package/eleventy/node_modules/graceful-fs/clone.js +23 -0
- package/eleventy/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/eleventy/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/eleventy/node_modules/graceful-fs/package.json +53 -0
- package/eleventy/node_modules/graceful-fs/polyfills.js +355 -0
- package/eleventy/node_modules/gray-matter/CHANGELOG.md +24 -0
- package/eleventy/node_modules/gray-matter/LICENSE +21 -0
- package/eleventy/node_modules/gray-matter/README.md +565 -0
- package/eleventy/node_modules/gray-matter/gray-matter.d.ts +114 -0
- package/eleventy/node_modules/gray-matter/index.js +228 -0
- package/eleventy/node_modules/gray-matter/lib/defaults.js +18 -0
- package/eleventy/node_modules/gray-matter/lib/engine.js +30 -0
- package/eleventy/node_modules/gray-matter/lib/engines.js +54 -0
- package/eleventy/node_modules/gray-matter/lib/excerpt.js +32 -0
- package/eleventy/node_modules/gray-matter/lib/parse.js +13 -0
- package/eleventy/node_modules/gray-matter/lib/stringify.js +56 -0
- package/eleventy/node_modules/gray-matter/lib/to-file.js +43 -0
- package/eleventy/node_modules/gray-matter/lib/utils.js +66 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/CHANGELOG.md +185 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/LICENSE +21 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/README.md +257 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/index.js +3 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/append/constant.js +47 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/append.js +53 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/count.js +40 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/help.js +47 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/store/constant.js +43 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/store/false.js +27 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/store/true.js +26 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/store.js +50 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/subparsers.js +149 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/version.js +47 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action.js +146 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action_container.js +482 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/argparse.js +14 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/argument/error.js +50 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/argument/exclusive.js +54 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/argument/group.js +75 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/argument_parser.js +1161 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/const.js +21 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/help/added_formatters.js +87 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/help/formatter.js +795 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/namespace.js +76 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/utils.js +57 -0
- package/eleventy/node_modules/gray-matter/node_modules/argparse/package.json +34 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/CHANGELOG.md +557 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/LICENSE +21 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/README.md +299 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/bin/js-yaml.js +132 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/dist/js-yaml.js +3989 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/dist/js-yaml.min.js +1 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/index.js +7 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/common.js +59 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/dumper.js +850 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/exception.js +43 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/loader.js +1644 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/mark.js +76 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema/core.js +18 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +25 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +28 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +17 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema/json.js +25 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema.js +108 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/binary.js +138 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/bool.js +35 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/float.js +116 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/int.js +173 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/js/function.js +93 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +60 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +28 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/map.js +8 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/merge.js +12 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/null.js +34 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/omap.js +44 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/pairs.js +53 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/seq.js +8 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/set.js +29 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/str.js +8 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +88 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type.js +61 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml.js +39 -0
- package/eleventy/node_modules/gray-matter/node_modules/js-yaml/package.json +49 -0
- package/eleventy/node_modules/gray-matter/package.json +127 -0
- package/eleventy/node_modules/htmlparser2/LICENSE +18 -0
- package/eleventy/node_modules/htmlparser2/README.md +166 -0
- package/eleventy/node_modules/htmlparser2/lib/FeedHandler.d.ts +23 -0
- package/eleventy/node_modules/htmlparser2/lib/FeedHandler.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/lib/FeedHandler.js +68 -0
- package/eleventy/node_modules/htmlparser2/lib/Parser.d.ts +180 -0
- package/eleventy/node_modules/htmlparser2/lib/Parser.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/lib/Parser.js +424 -0
- package/eleventy/node_modules/htmlparser2/lib/Tokenizer.d.ts +173 -0
- package/eleventy/node_modules/htmlparser2/lib/Tokenizer.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/lib/Tokenizer.js +821 -0
- package/eleventy/node_modules/htmlparser2/lib/WritableStream.d.ts +16 -0
- package/eleventy/node_modules/htmlparser2/lib/WritableStream.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/lib/WritableStream.js +53 -0
- package/eleventy/node_modules/htmlparser2/lib/index.d.ts +39 -0
- package/eleventy/node_modules/htmlparser2/lib/index.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/lib/index.js +84 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/LICENSE +11 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode.d.ts +15 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode.js +145 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.d.ts +2 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.js +54 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode-trie.d.ts +8 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode-trie.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode-trie.js +77 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode.d.ts +46 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode.js +126 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.js +5 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.js +5 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/index.d.ts +91 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/index.d.ts.map +1 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/index.js +118 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/maps/entities.json +1 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/maps/legacy.json +1 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/maps/xml.json +1 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/package.json +67 -0
- package/eleventy/node_modules/htmlparser2/node_modules/entities/readme.md +74 -0
- package/eleventy/node_modules/htmlparser2/package.json +75 -0
- package/eleventy/node_modules/http-equiv-refresh/README.md +31 -0
- package/eleventy/node_modules/http-equiv-refresh/index-es5.js +30 -0
- package/eleventy/node_modules/http-equiv-refresh/index-es5.js.map +1 -0
- package/eleventy/node_modules/http-equiv-refresh/index.js +24 -0
- package/eleventy/node_modules/http-equiv-refresh/license +21 -0
- package/eleventy/node_modules/http-equiv-refresh/package.json +42 -0
- package/eleventy/node_modules/http-errors/HISTORY.md +180 -0
- package/eleventy/node_modules/http-errors/LICENSE +23 -0
- package/eleventy/node_modules/http-errors/README.md +169 -0
- package/eleventy/node_modules/http-errors/index.js +289 -0
- package/eleventy/node_modules/http-errors/package.json +50 -0
- package/eleventy/node_modules/inherits/LICENSE +16 -0
- package/eleventy/node_modules/inherits/README.md +42 -0
- package/eleventy/node_modules/inherits/inherits.js +9 -0
- package/eleventy/node_modules/inherits/inherits_browser.js +27 -0
- package/eleventy/node_modules/inherits/package.json +29 -0
- package/eleventy/node_modules/is-alphabetical/index.d.ts +8 -0
- package/eleventy/node_modules/is-alphabetical/index.js +16 -0
- package/eleventy/node_modules/is-alphabetical/license +22 -0
- package/eleventy/node_modules/is-alphabetical/package.json +73 -0
- package/eleventy/node_modules/is-alphabetical/readme.md +141 -0
- package/eleventy/node_modules/is-alphanumerical/index.d.ts +8 -0
- package/eleventy/node_modules/is-alphanumerical/index.js +13 -0
- package/eleventy/node_modules/is-alphanumerical/license +22 -0
- package/eleventy/node_modules/is-alphanumerical/package.json +79 -0
- package/eleventy/node_modules/is-alphanumerical/readme.md +142 -0
- package/eleventy/node_modules/is-binary-path/index.d.ts +17 -0
- package/eleventy/node_modules/is-binary-path/index.js +7 -0
- package/eleventy/node_modules/is-binary-path/license +9 -0
- package/eleventy/node_modules/is-binary-path/package.json +40 -0
- package/eleventy/node_modules/is-binary-path/readme.md +34 -0
- package/eleventy/node_modules/is-decimal/index.d.ts +8 -0
- package/eleventy/node_modules/is-decimal/index.js +13 -0
- package/eleventy/node_modules/is-decimal/license +22 -0
- package/eleventy/node_modules/is-decimal/package.json +73 -0
- package/eleventy/node_modules/is-decimal/readme.md +139 -0
- package/eleventy/node_modules/is-extendable/LICENSE +21 -0
- package/eleventy/node_modules/is-extendable/README.md +72 -0
- package/eleventy/node_modules/is-extendable/index.js +13 -0
- package/eleventy/node_modules/is-extendable/package.json +51 -0
- package/eleventy/node_modules/is-extglob/LICENSE +21 -0
- package/eleventy/node_modules/is-extglob/README.md +107 -0
- package/eleventy/node_modules/is-extglob/index.js +20 -0
- package/eleventy/node_modules/is-extglob/package.json +69 -0
- package/eleventy/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/eleventy/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/eleventy/node_modules/is-fullwidth-code-point/license +9 -0
- package/eleventy/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/eleventy/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/eleventy/node_modules/is-glob/LICENSE +21 -0
- package/eleventy/node_modules/is-glob/README.md +206 -0
- package/eleventy/node_modules/is-glob/index.js +150 -0
- package/eleventy/node_modules/is-glob/package.json +81 -0
- package/eleventy/node_modules/is-json/.travis.yml +14 -0
- package/eleventy/node_modules/is-json/LICENSE +15 -0
- package/eleventy/node_modules/is-json/README.md +41 -0
- package/eleventy/node_modules/is-json/index.js +48 -0
- package/eleventy/node_modules/is-json/package.json +29 -0
- package/eleventy/node_modules/is-json/test/index.js +33 -0
- package/eleventy/node_modules/is-number/LICENSE +21 -0
- package/eleventy/node_modules/is-number/README.md +187 -0
- package/eleventy/node_modules/is-number/index.js +18 -0
- package/eleventy/node_modules/is-number/package.json +82 -0
- package/eleventy/node_modules/isexe/LICENSE +15 -0
- package/eleventy/node_modules/isexe/README.md +51 -0
- package/eleventy/node_modules/isexe/index.js +57 -0
- package/eleventy/node_modules/isexe/mode.js +41 -0
- package/eleventy/node_modules/isexe/package.json +31 -0
- package/eleventy/node_modules/isexe/test/basic.js +221 -0
- package/eleventy/node_modules/isexe/windows.js +42 -0
- package/eleventy/node_modules/iso-639-1/.eslintrc +38 -0
- package/eleventy/node_modules/iso-639-1/.nvmrc +1 -0
- package/eleventy/node_modules/iso-639-1/.prettierrc +4 -0
- package/eleventy/node_modules/iso-639-1/.travis.yml +6 -0
- package/eleventy/node_modules/iso-639-1/CHANGELOG.md +75 -0
- package/eleventy/node_modules/iso-639-1/LICENSE +21 -0
- package/eleventy/node_modules/iso-639-1/index.d.ts +205 -0
- package/eleventy/node_modules/iso-639-1/package.json +41 -0
- package/eleventy/node_modules/iso-639-1/readme.md +121 -0
- package/eleventy/node_modules/iso-639-1/src/data.js +736 -0
- package/eleventy/node_modules/iso-639-1/src/index.js +59 -0
- package/eleventy/node_modules/iso-639-1/test/test.js +92 -0
- package/eleventy/node_modules/iso-639-1/webpack.config.js +20 -0
- package/eleventy/node_modules/jackspeak/LICENSE.md +55 -0
- package/eleventy/node_modules/jackspeak/README.md +357 -0
- package/eleventy/node_modules/jackspeak/dist/commonjs/index.d.ts +315 -0
- package/eleventy/node_modules/jackspeak/dist/commonjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/jackspeak/dist/commonjs/index.js +1010 -0
- package/eleventy/node_modules/jackspeak/dist/commonjs/index.js.map +1 -0
- package/eleventy/node_modules/jackspeak/dist/commonjs/package.json +3 -0
- package/eleventy/node_modules/jackspeak/dist/commonjs/parse-args-cjs.cjs.map +1 -0
- package/eleventy/node_modules/jackspeak/dist/commonjs/parse-args-cjs.d.cts.map +1 -0
- package/eleventy/node_modules/jackspeak/dist/commonjs/parse-args.d.ts +4 -0
- package/eleventy/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
- package/eleventy/node_modules/jackspeak/dist/esm/index.d.ts +315 -0
- package/eleventy/node_modules/jackspeak/dist/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/jackspeak/dist/esm/index.js +1000 -0
- package/eleventy/node_modules/jackspeak/dist/esm/index.js.map +1 -0
- package/eleventy/node_modules/jackspeak/dist/esm/package.json +3 -0
- package/eleventy/node_modules/jackspeak/dist/esm/parse-args.d.ts +4 -0
- package/eleventy/node_modules/jackspeak/dist/esm/parse-args.d.ts.map +1 -0
- package/eleventy/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
- package/eleventy/node_modules/jackspeak/dist/esm/parse-args.js.map +1 -0
- package/eleventy/node_modules/jackspeak/package.json +95 -0
- package/eleventy/node_modules/js-yaml/CHANGELOG.md +616 -0
- package/eleventy/node_modules/js-yaml/LICENSE +21 -0
- package/eleventy/node_modules/js-yaml/README.md +246 -0
- package/eleventy/node_modules/js-yaml/bin/js-yaml.js +126 -0
- package/eleventy/node_modules/js-yaml/dist/js-yaml.js +3874 -0
- package/eleventy/node_modules/js-yaml/dist/js-yaml.min.js +2 -0
- package/eleventy/node_modules/js-yaml/dist/js-yaml.mjs +3851 -0
- package/eleventy/node_modules/js-yaml/index.js +47 -0
- package/eleventy/node_modules/js-yaml/lib/common.js +59 -0
- package/eleventy/node_modules/js-yaml/lib/dumper.js +965 -0
- package/eleventy/node_modules/js-yaml/lib/exception.js +55 -0
- package/eleventy/node_modules/js-yaml/lib/loader.js +1727 -0
- package/eleventy/node_modules/js-yaml/lib/schema/core.js +11 -0
- package/eleventy/node_modules/js-yaml/lib/schema/default.js +22 -0
- package/eleventy/node_modules/js-yaml/lib/schema/failsafe.js +17 -0
- package/eleventy/node_modules/js-yaml/lib/schema/json.js +19 -0
- package/eleventy/node_modules/js-yaml/lib/schema.js +121 -0
- package/eleventy/node_modules/js-yaml/lib/snippet.js +101 -0
- package/eleventy/node_modules/js-yaml/lib/type/binary.js +125 -0
- package/eleventy/node_modules/js-yaml/lib/type/bool.js +35 -0
- package/eleventy/node_modules/js-yaml/lib/type/float.js +97 -0
- package/eleventy/node_modules/js-yaml/lib/type/int.js +156 -0
- package/eleventy/node_modules/js-yaml/lib/type/map.js +8 -0
- package/eleventy/node_modules/js-yaml/lib/type/merge.js +12 -0
- package/eleventy/node_modules/js-yaml/lib/type/null.js +35 -0
- package/eleventy/node_modules/js-yaml/lib/type/omap.js +44 -0
- package/eleventy/node_modules/js-yaml/lib/type/pairs.js +53 -0
- package/eleventy/node_modules/js-yaml/lib/type/seq.js +8 -0
- package/eleventy/node_modules/js-yaml/lib/type/set.js +29 -0
- package/eleventy/node_modules/js-yaml/lib/type/str.js +8 -0
- package/eleventy/node_modules/js-yaml/lib/type/timestamp.js +88 -0
- package/eleventy/node_modules/js-yaml/lib/type.js +66 -0
- package/eleventy/node_modules/js-yaml/package.json +66 -0
- package/eleventy/node_modules/junk/index.js +30 -0
- package/eleventy/node_modules/junk/license +21 -0
- package/eleventy/node_modules/junk/package.json +37 -0
- package/eleventy/node_modules/junk/readme.md +46 -0
- package/eleventy/node_modules/kind-of/CHANGELOG.md +160 -0
- package/eleventy/node_modules/kind-of/LICENSE +21 -0
- package/eleventy/node_modules/kind-of/README.md +367 -0
- package/eleventy/node_modules/kind-of/index.js +129 -0
- package/eleventy/node_modules/kind-of/package.json +88 -0
- package/eleventy/node_modules/kleur/colors.d.ts +38 -0
- package/eleventy/node_modules/kleur/colors.js +53 -0
- package/eleventy/node_modules/kleur/colors.mjs +53 -0
- package/eleventy/node_modules/kleur/index.d.ts +45 -0
- package/eleventy/node_modules/kleur/index.js +110 -0
- package/eleventy/node_modules/kleur/index.mjs +110 -0
- package/eleventy/node_modules/kleur/license +21 -0
- package/eleventy/node_modules/kleur/package.json +51 -0
- package/eleventy/node_modules/kleur/readme.md +232 -0
- package/eleventy/node_modules/linkify-it/LICENSE +22 -0
- package/eleventy/node_modules/linkify-it/README.md +196 -0
- package/eleventy/node_modules/linkify-it/index.mjs +642 -0
- package/eleventy/node_modules/linkify-it/lib/re.mjs +189 -0
- package/eleventy/node_modules/linkify-it/package.json +58 -0
- package/eleventy/node_modules/liquidjs/LICENSE +21 -0
- package/eleventy/node_modules/liquidjs/README.md +228 -0
- package/eleventy/node_modules/liquidjs/bin/liquid.js +139 -0
- package/eleventy/node_modules/liquidjs/dist/cache/cache.d.ts +7 -0
- package/eleventy/node_modules/liquidjs/dist/cache/index.d.ts +2 -0
- package/eleventy/node_modules/liquidjs/dist/cache/lru.d.ts +14 -0
- package/eleventy/node_modules/liquidjs/dist/cache/lru.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/context/block-mode.d.ts +4 -0
- package/eleventy/node_modules/liquidjs/dist/context/context.d.ts +64 -0
- package/eleventy/node_modules/liquidjs/dist/context/context.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/context/index.d.ts +3 -0
- package/eleventy/node_modules/liquidjs/dist/context/scope.d.ts +6 -0
- package/eleventy/node_modules/liquidjs/dist/drop/blank-drop.d.ts +5 -0
- package/eleventy/node_modules/liquidjs/dist/drop/block-drop.d.ts +10 -0
- package/eleventy/node_modules/liquidjs/dist/drop/comparable.d.ts +8 -0
- package/eleventy/node_modules/liquidjs/dist/drop/drop.d.ts +3 -0
- package/eleventy/node_modules/liquidjs/dist/drop/empty-drop.d.ts +11 -0
- package/eleventy/node_modules/liquidjs/dist/drop/forloop-drop.d.ts +15 -0
- package/eleventy/node_modules/liquidjs/dist/drop/index.d.ts +7 -0
- package/eleventy/node_modules/liquidjs/dist/drop/null-drop.d.ts +10 -0
- package/eleventy/node_modules/liquidjs/dist/drop/tablerowloop-drop.d.ts +10 -0
- package/eleventy/node_modules/liquidjs/dist/emitters/emitter.d.ts +11 -0
- package/eleventy/node_modules/liquidjs/dist/emitters/index.d.ts +4 -0
- package/eleventy/node_modules/liquidjs/dist/emitters/keeping-type-emitter.d.ts +5 -0
- package/eleventy/node_modules/liquidjs/dist/emitters/simple-emitter.d.ts +5 -0
- package/eleventy/node_modules/liquidjs/dist/emitters/streamed-emitter.d.ts +9 -0
- package/eleventy/node_modules/liquidjs/dist/filters/array.d.ts +26 -0
- package/eleventy/node_modules/liquidjs/dist/filters/date.d.ts +6 -0
- package/eleventy/node_modules/liquidjs/dist/filters/html.d.ts +6 -0
- package/eleventy/node_modules/liquidjs/dist/filters/index.d.ts +2 -0
- package/eleventy/node_modules/liquidjs/dist/filters/math.d.ts +11 -0
- package/eleventy/node_modules/liquidjs/dist/filters/misc.d.ts +18 -0
- package/eleventy/node_modules/liquidjs/dist/filters/string.d.ts +27 -0
- package/eleventy/node_modules/liquidjs/dist/filters/url.d.ts +14 -0
- package/eleventy/node_modules/liquidjs/dist/fs/fs-impl.d.ts +9 -0
- package/eleventy/node_modules/liquidjs/dist/fs/fs-impl.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/fs/fs.d.ts +20 -0
- package/eleventy/node_modules/liquidjs/dist/fs/index.d.ts +2 -0
- package/eleventy/node_modules/liquidjs/dist/fs/loader.d.ts +24 -0
- package/eleventy/node_modules/liquidjs/dist/fs/loader.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/fs/map-fs.d.ts +13 -0
- package/eleventy/node_modules/liquidjs/dist/fs/map-fs.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/fs/node-require.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/index.d.ts +15 -0
- package/eleventy/node_modules/liquidjs/dist/liquid-options.d.ts +159 -0
- package/eleventy/node_modules/liquidjs/dist/liquid-options.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/liquid.browser.min.js +2 -0
- package/eleventy/node_modules/liquidjs/dist/liquid.browser.min.js.map +1 -0
- package/eleventy/node_modules/liquidjs/dist/liquid.browser.mjs +4891 -0
- package/eleventy/node_modules/liquidjs/dist/liquid.browser.umd.js +7178 -0
- package/eleventy/node_modules/liquidjs/dist/liquid.browser.umd.js.map +1 -0
- package/eleventy/node_modules/liquidjs/dist/liquid.d.ts +70 -0
- package/eleventy/node_modules/liquidjs/dist/liquid.node.js +4914 -0
- package/eleventy/node_modules/liquidjs/dist/liquid.node.mjs +4904 -0
- package/eleventy/node_modules/liquidjs/dist/parser/filter-arg.d.ts +5 -0
- package/eleventy/node_modules/liquidjs/dist/parser/index.d.ts +4 -0
- package/eleventy/node_modules/liquidjs/dist/parser/parse-stream.d.ts +15 -0
- package/eleventy/node_modules/liquidjs/dist/parser/parse-stream.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/parser/parser.d.ts +20 -0
- package/eleventy/node_modules/liquidjs/dist/parser/parser.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/parser/token-kind.d.ts +16 -0
- package/eleventy/node_modules/liquidjs/dist/parser/tokenizer.d.ts +63 -0
- package/eleventy/node_modules/liquidjs/dist/parser/tokenizer.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/parser/whitespace-ctrl.d.ts +3 -0
- package/eleventy/node_modules/liquidjs/dist/render/boolean.d.ts +3 -0
- package/eleventy/node_modules/liquidjs/dist/render/boolean.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/render/expression.d.ts +10 -0
- package/eleventy/node_modules/liquidjs/dist/render/expression.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/render/index.d.ts +4 -0
- package/eleventy/node_modules/liquidjs/dist/render/operator.d.ts +8 -0
- package/eleventy/node_modules/liquidjs/dist/render/render.d.ts +8 -0
- package/eleventy/node_modules/liquidjs/dist/render/render.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/render/string.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/render/string.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/tags/assign.d.ts +12 -0
- package/eleventy/node_modules/liquidjs/dist/tags/block.d.ts +11 -0
- package/eleventy/node_modules/liquidjs/dist/tags/break.d.ts +4 -0
- package/eleventy/node_modules/liquidjs/dist/tags/capture.d.ts +13 -0
- package/eleventy/node_modules/liquidjs/dist/tags/case.d.ts +15 -0
- package/eleventy/node_modules/liquidjs/dist/tags/comment.d.ts +5 -0
- package/eleventy/node_modules/liquidjs/dist/tags/continue.d.ts +4 -0
- package/eleventy/node_modules/liquidjs/dist/tags/cycle.d.ts +9 -0
- package/eleventy/node_modules/liquidjs/dist/tags/decrement.d.ts +9 -0
- package/eleventy/node_modules/liquidjs/dist/tags/echo.d.ts +8 -0
- package/eleventy/node_modules/liquidjs/dist/tags/for.d.ts +15 -0
- package/eleventy/node_modules/liquidjs/dist/tags/if.d.ts +14 -0
- package/eleventy/node_modules/liquidjs/dist/tags/include.d.ts +12 -0
- package/eleventy/node_modules/liquidjs/dist/tags/increment.d.ts +9 -0
- package/eleventy/node_modules/liquidjs/dist/tags/index.d.ts +24 -0
- package/eleventy/node_modules/liquidjs/dist/tags/inline-comment.d.ts +5 -0
- package/eleventy/node_modules/liquidjs/dist/tags/layout.d.ts +14 -0
- package/eleventy/node_modules/liquidjs/dist/tags/liquid.d.ts +8 -0
- package/eleventy/node_modules/liquidjs/dist/tags/raw.d.ts +6 -0
- package/eleventy/node_modules/liquidjs/dist/tags/render.d.ts +22 -0
- package/eleventy/node_modules/liquidjs/dist/tags/tablerow.d.ts +14 -0
- package/eleventy/node_modules/liquidjs/dist/tags/unless.d.ts +15 -0
- package/eleventy/node_modules/liquidjs/dist/template/analysis.d.ts +85 -0
- package/eleventy/node_modules/liquidjs/dist/template/analysis.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/template/filter-impl-options.d.ts +14 -0
- package/eleventy/node_modules/liquidjs/dist/template/filter.d.ts +15 -0
- package/eleventy/node_modules/liquidjs/dist/template/filter.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/template/hash.d.ts +18 -0
- package/eleventy/node_modules/liquidjs/dist/template/hash.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/template/html.d.ts +9 -0
- package/eleventy/node_modules/liquidjs/dist/template/index.d.ts +11 -0
- package/eleventy/node_modules/liquidjs/dist/template/output.d.ts +12 -0
- package/eleventy/node_modules/liquidjs/dist/template/output.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/template/tag-options-adapter.d.ts +10 -0
- package/eleventy/node_modules/liquidjs/dist/template/tag.d.ts +18 -0
- package/eleventy/node_modules/liquidjs/dist/template/template-impl.d.ts +4 -0
- package/eleventy/node_modules/liquidjs/dist/template/template.d.ts +36 -0
- package/eleventy/node_modules/liquidjs/dist/template/value.d.ts +15 -0
- package/eleventy/node_modules/liquidjs/dist/template/value.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/delimited-token.d.ts +9 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/filter-token.d.ts +7 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/filtered-value-token.d.ts +17 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/hash-token.d.ts +12 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/html-token.d.ts +11 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/identifier-token.d.ts +9 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/index.d.ts +18 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/liquid-tag-token.d.ts +12 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/literal-token.d.ts +11 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/number-token.d.ts +9 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/operator-token.d.ts +38 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/output-token.d.ts +5 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/property-access-token.d.ts +12 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/quoted-token.d.ts +9 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/range-token.d.ts +11 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/tag-token.d.ts +9 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/token.d.ts +12 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/top-level-token.d.ts +4 -0
- package/eleventy/node_modules/liquidjs/dist/tokens/value-token.d.ts +6 -0
- package/eleventy/node_modules/liquidjs/dist/util/assert.d.ts +2 -0
- package/eleventy/node_modules/liquidjs/dist/util/assert.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/util/async.d.ts +2 -0
- package/eleventy/node_modules/liquidjs/dist/util/async.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/util/character.d.ts +10 -0
- package/eleventy/node_modules/liquidjs/dist/util/error.d.ts +35 -0
- package/eleventy/node_modules/liquidjs/dist/util/error.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/util/index.d.ts +12 -0
- package/eleventy/node_modules/liquidjs/dist/util/intl.d.ts +6 -0
- package/eleventy/node_modules/liquidjs/dist/util/limiter.d.ts +8 -0
- package/eleventy/node_modules/liquidjs/dist/util/liquid-date.d.ts +52 -0
- package/eleventy/node_modules/liquidjs/dist/util/liquid-date.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/util/literal.d.ts +11 -0
- package/eleventy/node_modules/liquidjs/dist/util/operator-trie.d.ts +14 -0
- package/eleventy/node_modules/liquidjs/dist/util/performance.d.ts +5 -0
- package/eleventy/node_modules/liquidjs/dist/util/performance.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/util/strftime.d.ts +2 -0
- package/eleventy/node_modules/liquidjs/dist/util/strftime.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/util/type-guards.d.ts +13 -0
- package/eleventy/node_modules/liquidjs/dist/util/type-guards.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/dist/util/underscore.d.ts +39 -0
- package/eleventy/node_modules/liquidjs/dist/util/underscore.spec.d.ts +1 -0
- package/eleventy/node_modules/liquidjs/package.json +165 -0
- package/eleventy/node_modules/list-to-array/LICENSE +22 -0
- package/eleventy/node_modules/list-to-array/README.md +52 -0
- package/eleventy/node_modules/list-to-array/index.js +18 -0
- package/eleventy/node_modules/list-to-array/package.json +32 -0
- package/eleventy/node_modules/list-to-array/tests.js +29 -0
- package/eleventy/node_modules/lru-cache/LICENSE +15 -0
- package/eleventy/node_modules/lru-cache/README.md +331 -0
- package/eleventy/node_modules/lru-cache/dist/commonjs/index.d.ts +1277 -0
- package/eleventy/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/lru-cache/dist/commonjs/index.js +1546 -0
- package/eleventy/node_modules/lru-cache/dist/commonjs/index.js.map +1 -0
- package/eleventy/node_modules/lru-cache/dist/commonjs/index.min.js +2 -0
- package/eleventy/node_modules/lru-cache/dist/commonjs/index.min.js.map +7 -0
- package/eleventy/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/eleventy/node_modules/lru-cache/dist/esm/index.d.ts +1277 -0
- package/eleventy/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/lru-cache/dist/esm/index.js +1542 -0
- package/eleventy/node_modules/lru-cache/dist/esm/index.js.map +1 -0
- package/eleventy/node_modules/lru-cache/dist/esm/index.min.js +2 -0
- package/eleventy/node_modules/lru-cache/dist/esm/index.min.js.map +7 -0
- package/eleventy/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/eleventy/node_modules/lru-cache/package.json +116 -0
- package/eleventy/node_modules/luxon/LICENSE.md +7 -0
- package/eleventy/node_modules/luxon/README.md +55 -0
- package/eleventy/node_modules/luxon/package.json +87 -0
- package/eleventy/node_modules/luxon/src/datetime.js +2556 -0
- package/eleventy/node_modules/luxon/src/duration.js +990 -0
- package/eleventy/node_modules/luxon/src/errors.js +61 -0
- package/eleventy/node_modules/luxon/src/impl/conversions.js +206 -0
- package/eleventy/node_modules/luxon/src/impl/diff.js +95 -0
- package/eleventy/node_modules/luxon/src/impl/digits.js +90 -0
- package/eleventy/node_modules/luxon/src/impl/english.js +233 -0
- package/eleventy/node_modules/luxon/src/impl/formats.js +176 -0
- package/eleventy/node_modules/luxon/src/impl/formatter.js +409 -0
- package/eleventy/node_modules/luxon/src/impl/invalid.js +14 -0
- package/eleventy/node_modules/luxon/src/impl/locale.js +546 -0
- package/eleventy/node_modules/luxon/src/impl/regexParser.js +335 -0
- package/eleventy/node_modules/luxon/src/impl/tokenParser.js +505 -0
- package/eleventy/node_modules/luxon/src/impl/util.js +316 -0
- package/eleventy/node_modules/luxon/src/impl/zoneUtil.js +34 -0
- package/eleventy/node_modules/luxon/src/info.js +205 -0
- package/eleventy/node_modules/luxon/src/interval.js +657 -0
- package/eleventy/node_modules/luxon/src/luxon.js +26 -0
- package/eleventy/node_modules/luxon/src/package.json +4 -0
- package/eleventy/node_modules/luxon/src/settings.js +180 -0
- package/eleventy/node_modules/luxon/src/zone.js +97 -0
- package/eleventy/node_modules/luxon/src/zones/IANAZone.js +231 -0
- package/eleventy/node_modules/luxon/src/zones/fixedOffsetZone.js +150 -0
- package/eleventy/node_modules/luxon/src/zones/invalidZone.js +53 -0
- package/eleventy/node_modules/luxon/src/zones/systemZone.js +61 -0
- package/eleventy/node_modules/markdown-it/LICENSE +22 -0
- package/eleventy/node_modules/markdown-it/README.md +324 -0
- package/eleventy/node_modules/markdown-it/bin/markdown-it.mjs +107 -0
- package/eleventy/node_modules/markdown-it/dist/index.cjs.js +5540 -0
- package/eleventy/node_modules/markdown-it/dist/markdown-it.js +6963 -0
- package/eleventy/node_modules/markdown-it/dist/markdown-it.min.js +2 -0
- package/eleventy/node_modules/markdown-it/index.mjs +1 -0
- package/eleventy/node_modules/markdown-it/lib/common/html_blocks.mjs +67 -0
- package/eleventy/node_modules/markdown-it/lib/common/html_re.mjs +25 -0
- package/eleventy/node_modules/markdown-it/lib/common/utils.mjs +304 -0
- package/eleventy/node_modules/markdown-it/lib/helpers/index.mjs +11 -0
- package/eleventy/node_modules/markdown-it/lib/helpers/parse_link_destination.mjs +77 -0
- package/eleventy/node_modules/markdown-it/lib/helpers/parse_link_label.mjs +49 -0
- package/eleventy/node_modules/markdown-it/lib/helpers/parse_link_title.mjs +66 -0
- package/eleventy/node_modules/markdown-it/lib/index.mjs +565 -0
- package/eleventy/node_modules/markdown-it/lib/parser_block.mjs +134 -0
- package/eleventy/node_modules/markdown-it/lib/parser_core.mjs +62 -0
- package/eleventy/node_modules/markdown-it/lib/parser_inline.mjs +197 -0
- package/eleventy/node_modules/markdown-it/lib/presets/commonmark.mjs +88 -0
- package/eleventy/node_modules/markdown-it/lib/presets/default.mjs +47 -0
- package/eleventy/node_modules/markdown-it/lib/presets/zero.mjs +70 -0
- package/eleventy/node_modules/markdown-it/lib/renderer.mjs +322 -0
- package/eleventy/node_modules/markdown-it/lib/ruler.mjs +340 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/blockquote.mjs +209 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/code.mjs +30 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/fence.mjs +94 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/heading.mjs +51 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/hr.mjs +40 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/html_block.mjs +69 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/lheading.mjs +82 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/list.mjs +331 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/paragraph.mjs +46 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/reference.mjs +212 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/state_block.mjs +220 -0
- package/eleventy/node_modules/markdown-it/lib/rules_block/table.mjs +228 -0
- package/eleventy/node_modules/markdown-it/lib/rules_core/block.mjs +13 -0
- package/eleventy/node_modules/markdown-it/lib/rules_core/inline.mjs +11 -0
- package/eleventy/node_modules/markdown-it/lib/rules_core/linkify.mjs +134 -0
- package/eleventy/node_modules/markdown-it/lib/rules_core/normalize.mjs +17 -0
- package/eleventy/node_modules/markdown-it/lib/rules_core/replacements.mjs +101 -0
- package/eleventy/node_modules/markdown-it/lib/rules_core/smartquotes.mjs +193 -0
- package/eleventy/node_modules/markdown-it/lib/rules_core/state_core.mjs +17 -0
- package/eleventy/node_modules/markdown-it/lib/rules_core/text_join.mjs +43 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/autolink.mjs +72 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/backticks.mjs +60 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/balance_pairs.mjs +124 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/emphasis.mjs +123 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/entity.mjs +51 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/escape.mjs +69 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/fragments_join.mjs +38 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/html_inline.mjs +50 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/image.mjs +138 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/link.mjs +139 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/linkify.mjs +56 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/newline.mjs +42 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/state_inline.mjs +123 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/strikethrough.mjs +127 -0
- package/eleventy/node_modules/markdown-it/lib/rules_inline/text.mjs +86 -0
- package/eleventy/node_modules/markdown-it/lib/token.mjs +191 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/LICENSE +11 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode.d.ts +211 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode.js +536 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode_codepoint.d.ts +19 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode_codepoint.js +76 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode_codepoint.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/encode.d.ts +22 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/encode.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/encode.js +77 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/encode.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/escape.d.ts +43 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/escape.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/escape.js +122 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/escape.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode.d.ts +211 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode.js +496 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode_codepoint.d.ts +19 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode_codepoint.js +71 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode_codepoint.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/encode.d.ts +22 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/encode.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/encode.js +69 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/encode.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/escape.d.ts +43 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/escape.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/escape.js +116 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/escape.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +3 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-html.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +3 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/encode-html.d.ts +8 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/encode-html.js +10 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/encode-html.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/index.d.ts +96 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/index.js +99 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/index.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/package.json +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-html.js +9 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-html.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-xml.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/encode-html.d.ts +8 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/encode-html.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/encode-html.js +12 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/encode-html.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/index.d.ts +96 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/index.d.ts.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/index.js +126 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/lib/index.js.map +1 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/package.json +90 -0
- package/eleventy/node_modules/markdown-it/node_modules/entities/readme.md +122 -0
- package/eleventy/node_modules/markdown-it/package.json +92 -0
- package/eleventy/node_modules/maximatch/index.js +39 -0
- package/eleventy/node_modules/maximatch/license +21 -0
- package/eleventy/node_modules/maximatch/package.json +44 -0
- package/eleventy/node_modules/maximatch/readme.md +71 -0
- package/eleventy/node_modules/mdurl/LICENSE +45 -0
- package/eleventy/node_modules/mdurl/README.md +102 -0
- package/eleventy/node_modules/mdurl/index.mjs +11 -0
- package/eleventy/node_modules/mdurl/lib/decode.mjs +112 -0
- package/eleventy/node_modules/mdurl/lib/encode.mjs +89 -0
- package/eleventy/node_modules/mdurl/lib/format.mjs +21 -0
- package/eleventy/node_modules/mdurl/lib/parse.mjs +308 -0
- package/eleventy/node_modules/mdurl/package.json +37 -0
- package/eleventy/node_modules/merge2/LICENSE +21 -0
- package/eleventy/node_modules/merge2/README.md +144 -0
- package/eleventy/node_modules/merge2/index.js +144 -0
- package/eleventy/node_modules/merge2/package.json +43 -0
- package/eleventy/node_modules/micromatch/LICENSE +21 -0
- package/eleventy/node_modules/micromatch/README.md +1024 -0
- package/eleventy/node_modules/micromatch/index.js +474 -0
- package/eleventy/node_modules/micromatch/package.json +119 -0
- package/eleventy/node_modules/mime/CHANGELOG.md +312 -0
- package/eleventy/node_modules/mime/LICENSE +21 -0
- package/eleventy/node_modules/mime/Mime.js +97 -0
- package/eleventy/node_modules/mime/README.md +178 -0
- package/eleventy/node_modules/mime/cli.js +46 -0
- package/eleventy/node_modules/mime/index.js +4 -0
- package/eleventy/node_modules/mime/lite.js +4 -0
- package/eleventy/node_modules/mime/package.json +52 -0
- package/eleventy/node_modules/mime/types/other.js +1 -0
- package/eleventy/node_modules/mime/types/standard.js +1 -0
- package/eleventy/node_modules/mime-db/HISTORY.md +507 -0
- package/eleventy/node_modules/mime-db/LICENSE +23 -0
- package/eleventy/node_modules/mime-db/README.md +100 -0
- package/eleventy/node_modules/mime-db/db.json +8519 -0
- package/eleventy/node_modules/mime-db/index.js +12 -0
- package/eleventy/node_modules/mime-db/package.json +60 -0
- package/eleventy/node_modules/mime-types/HISTORY.md +397 -0
- package/eleventy/node_modules/mime-types/LICENSE +23 -0
- package/eleventy/node_modules/mime-types/README.md +113 -0
- package/eleventy/node_modules/mime-types/index.js +188 -0
- package/eleventy/node_modules/mime-types/package.json +44 -0
- package/eleventy/node_modules/minimatch/LICENSE +15 -0
- package/eleventy/node_modules/minimatch/README.md +230 -0
- package/eleventy/node_modules/minimatch/minimatch.js +947 -0
- package/eleventy/node_modules/minimatch/package.json +33 -0
- package/eleventy/node_modules/minimist/.eslintrc +29 -0
- package/eleventy/node_modules/minimist/.github/FUNDING.yml +12 -0
- package/eleventy/node_modules/minimist/.nycrc +14 -0
- package/eleventy/node_modules/minimist/CHANGELOG.md +298 -0
- package/eleventy/node_modules/minimist/LICENSE +18 -0
- package/eleventy/node_modules/minimist/README.md +121 -0
- package/eleventy/node_modules/minimist/example/parse.js +4 -0
- package/eleventy/node_modules/minimist/index.js +263 -0
- package/eleventy/node_modules/minimist/package.json +75 -0
- package/eleventy/node_modules/minimist/test/all_bool.js +34 -0
- package/eleventy/node_modules/minimist/test/bool.js +177 -0
- package/eleventy/node_modules/minimist/test/dash.js +43 -0
- package/eleventy/node_modules/minimist/test/default_bool.js +37 -0
- package/eleventy/node_modules/minimist/test/dotted.js +24 -0
- package/eleventy/node_modules/minimist/test/kv_short.js +32 -0
- package/eleventy/node_modules/minimist/test/long.js +33 -0
- package/eleventy/node_modules/minimist/test/num.js +38 -0
- package/eleventy/node_modules/minimist/test/parse.js +209 -0
- package/eleventy/node_modules/minimist/test/parse_modified.js +11 -0
- package/eleventy/node_modules/minimist/test/proto.js +64 -0
- package/eleventy/node_modules/minimist/test/short.js +69 -0
- package/eleventy/node_modules/minimist/test/stop_early.js +17 -0
- package/eleventy/node_modules/minimist/test/unknown.js +104 -0
- package/eleventy/node_modules/minimist/test/whitespace.js +10 -0
- package/eleventy/node_modules/minipass/LICENSE +15 -0
- package/eleventy/node_modules/minipass/README.md +825 -0
- package/eleventy/node_modules/minipass/dist/commonjs/index.d.ts +549 -0
- package/eleventy/node_modules/minipass/dist/commonjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/minipass/dist/commonjs/index.js +1028 -0
- package/eleventy/node_modules/minipass/dist/commonjs/index.js.map +1 -0
- package/eleventy/node_modules/minipass/dist/commonjs/package.json +3 -0
- package/eleventy/node_modules/minipass/dist/esm/index.d.ts +549 -0
- package/eleventy/node_modules/minipass/dist/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/minipass/dist/esm/index.js +1018 -0
- package/eleventy/node_modules/minipass/dist/esm/index.js.map +1 -0
- package/eleventy/node_modules/minipass/dist/esm/package.json +3 -0
- package/eleventy/node_modules/minipass/package.json +82 -0
- package/eleventy/node_modules/mkdirp/LICENSE +21 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/package.json +91 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/bin.d.ts +3 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/bin.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/bin.js +80 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/bin.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/find-made.d.ts +4 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/find-made.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/find-made.js +35 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/find-made.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/index.d.ts +39 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/index.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/index.js +53 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/index.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-manual.d.ts +6 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-manual.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-manual.js +79 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-manual.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-native.d.ts +6 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-native.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-native.js +50 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-native.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/opts-arg.d.ts +42 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/opts-arg.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/opts-arg.js +38 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/opts-arg.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/path-arg.d.ts +2 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/path-arg.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/path-arg.js +28 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/path-arg.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/use-native.d.ts +6 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/use-native.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/use-native.js +17 -0
- package/eleventy/node_modules/mkdirp/dist/cjs/src/use-native.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/find-made.d.ts +4 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/find-made.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/find-made.js +30 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/find-made.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/index.d.ts +39 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/index.js +43 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/index.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-manual.d.ts +6 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-manual.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-manual.js +75 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-manual.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-native.d.ts +6 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-native.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-native.js +46 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-native.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/opts-arg.d.ts +42 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/opts-arg.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/opts-arg.js +34 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/opts-arg.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/package.json +3 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/path-arg.d.ts +2 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/path-arg.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/path-arg.js +24 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/path-arg.js.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/use-native.d.ts +6 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/use-native.d.ts.map +1 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/use-native.js +14 -0
- package/eleventy/node_modules/mkdirp/dist/mjs/use-native.js.map +1 -0
- package/eleventy/node_modules/mkdirp/package.json +91 -0
- package/eleventy/node_modules/mkdirp/readme.markdown +281 -0
- package/eleventy/node_modules/moo/LICENSE +29 -0
- package/eleventy/node_modules/moo/README.md +383 -0
- package/eleventy/node_modules/moo/moo.js +642 -0
- package/eleventy/node_modules/moo/package.json +29 -0
- package/eleventy/node_modules/morphdom/CHANGELOG.md +243 -0
- package/eleventy/node_modules/morphdom/LICENSE +21 -0
- package/eleventy/node_modules/morphdom/README.md +260 -0
- package/eleventy/node_modules/morphdom/dist/morphdom-esm.js +769 -0
- package/eleventy/node_modules/morphdom/dist/morphdom-factory.js +705 -0
- package/eleventy/node_modules/morphdom/dist/morphdom-umd.js +777 -0
- package/eleventy/node_modules/morphdom/dist/morphdom-umd.min.js +1 -0
- package/eleventy/node_modules/morphdom/dist/morphdom.js +771 -0
- package/eleventy/node_modules/morphdom/docs/old-benchmark.md +204 -0
- package/eleventy/node_modules/morphdom/docs/virtual-dom.md +38 -0
- package/eleventy/node_modules/morphdom/factory.js +1 -0
- package/eleventy/node_modules/morphdom/index.d.ts +19 -0
- package/eleventy/node_modules/morphdom/package.json +63 -0
- package/eleventy/node_modules/morphdom/src/index.js +6 -0
- package/eleventy/node_modules/morphdom/src/morphAttrs.js +63 -0
- package/eleventy/node_modules/morphdom/src/morphdom.js +482 -0
- package/eleventy/node_modules/morphdom/src/specialElHandlers.js +110 -0
- package/eleventy/node_modules/morphdom/src/util.js +113 -0
- package/eleventy/node_modules/ms/index.js +162 -0
- package/eleventy/node_modules/ms/license.md +21 -0
- package/eleventy/node_modules/ms/package.json +38 -0
- package/eleventy/node_modules/ms/readme.md +59 -0
- package/eleventy/node_modules/node-retrieve-globals/.github/workflows/ci.yml +23 -0
- package/eleventy/node_modules/node-retrieve-globals/LICENSE +21 -0
- package/eleventy/node_modules/node-retrieve-globals/README.md +91 -0
- package/eleventy/node_modules/node-retrieve-globals/package.json +30 -0
- package/eleventy/node_modules/node-retrieve-globals/retrieveGlobals.js +374 -0
- package/eleventy/node_modules/node-retrieve-globals/test/test.js +270 -0
- package/eleventy/node_modules/node-retrieve-globals/util/getWorkingDirectory.js +18 -0
- package/eleventy/node_modules/node-retrieve-globals/util/vmModules.js +23 -0
- package/eleventy/node_modules/normalize-path/LICENSE +21 -0
- package/eleventy/node_modules/normalize-path/README.md +127 -0
- package/eleventy/node_modules/normalize-path/index.js +35 -0
- package/eleventy/node_modules/normalize-path/package.json +77 -0
- package/eleventy/node_modules/nunjucks/LICENSE +26 -0
- package/eleventy/node_modules/nunjucks/README.md +58 -0
- package/eleventy/node_modules/nunjucks/bin/precompile +58 -0
- package/eleventy/node_modules/nunjucks/bin/precompile.cmd +5 -0
- package/eleventy/node_modules/nunjucks/browser/nunjucks-slim.js +3709 -0
- package/eleventy/node_modules/nunjucks/browser/nunjucks-slim.js.map +1 -0
- package/eleventy/node_modules/nunjucks/browser/nunjucks-slim.min.js +3 -0
- package/eleventy/node_modules/nunjucks/browser/nunjucks-slim.min.js.map +1 -0
- package/eleventy/node_modules/nunjucks/browser/nunjucks.js +7021 -0
- package/eleventy/node_modules/nunjucks/browser/nunjucks.js.map +1 -0
- package/eleventy/node_modules/nunjucks/browser/nunjucks.min.js +3 -0
- package/eleventy/node_modules/nunjucks/browser/nunjucks.min.js.map +1 -0
- package/eleventy/node_modules/nunjucks/index.js +82 -0
- package/eleventy/node_modules/nunjucks/node_modules/commander/CHANGELOG.md +385 -0
- package/eleventy/node_modules/nunjucks/node_modules/commander/LICENSE +22 -0
- package/eleventy/node_modules/nunjucks/node_modules/commander/Readme.md +737 -0
- package/eleventy/node_modules/nunjucks/node_modules/commander/index.js +1756 -0
- package/eleventy/node_modules/nunjucks/node_modules/commander/package.json +48 -0
- package/eleventy/node_modules/nunjucks/node_modules/commander/typings/index.d.ts +386 -0
- package/eleventy/node_modules/nunjucks/package.json +112 -0
- package/eleventy/node_modules/nunjucks/src/compiler.js +1027 -0
- package/eleventy/node_modules/nunjucks/src/environment.js +548 -0
- package/eleventy/node_modules/nunjucks/src/express-app.js +23 -0
- package/eleventy/node_modules/nunjucks/src/filters.js +546 -0
- package/eleventy/node_modules/nunjucks/src/globals.js +65 -0
- package/eleventy/node_modules/nunjucks/src/jinja-compat.js +293 -0
- package/eleventy/node_modules/nunjucks/src/lexer.js +474 -0
- package/eleventy/node_modules/nunjucks/src/lib.js +325 -0
- package/eleventy/node_modules/nunjucks/src/loader.js +21 -0
- package/eleventy/node_modules/nunjucks/src/loaders.js +5 -0
- package/eleventy/node_modules/nunjucks/src/node-loaders.js +139 -0
- package/eleventy/node_modules/nunjucks/src/nodes.js +350 -0
- package/eleventy/node_modules/nunjucks/src/object.js +100 -0
- package/eleventy/node_modules/nunjucks/src/parser.js +1028 -0
- package/eleventy/node_modules/nunjucks/src/precompile-global.js +17 -0
- package/eleventy/node_modules/nunjucks/src/precompile.js +108 -0
- package/eleventy/node_modules/nunjucks/src/precompiled-loader.js +31 -0
- package/eleventy/node_modules/nunjucks/src/runtime.js +333 -0
- package/eleventy/node_modules/nunjucks/src/tests.js +265 -0
- package/eleventy/node_modules/nunjucks/src/transformer.js +166 -0
- package/eleventy/node_modules/nunjucks/src/web-loaders.js +94 -0
- package/eleventy/node_modules/on-finished/HISTORY.md +98 -0
- package/eleventy/node_modules/on-finished/LICENSE +23 -0
- package/eleventy/node_modules/on-finished/README.md +162 -0
- package/eleventy/node_modules/on-finished/index.js +234 -0
- package/eleventy/node_modules/on-finished/package.json +39 -0
- package/eleventy/node_modules/package-json-from-dist/LICENSE.md +63 -0
- package/eleventy/node_modules/package-json-from-dist/README.md +110 -0
- package/eleventy/node_modules/package-json-from-dist/dist/commonjs/index.d.ts +89 -0
- package/eleventy/node_modules/package-json-from-dist/dist/commonjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/package-json-from-dist/dist/commonjs/index.js +134 -0
- package/eleventy/node_modules/package-json-from-dist/dist/commonjs/index.js.map +1 -0
- package/eleventy/node_modules/package-json-from-dist/dist/commonjs/package.json +3 -0
- package/eleventy/node_modules/package-json-from-dist/dist/esm/index.d.ts +89 -0
- package/eleventy/node_modules/package-json-from-dist/dist/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/package-json-from-dist/dist/esm/index.js +129 -0
- package/eleventy/node_modules/package-json-from-dist/dist/esm/index.js.map +1 -0
- package/eleventy/node_modules/package-json-from-dist/dist/esm/package.json +3 -0
- package/eleventy/node_modules/package-json-from-dist/package.json +68 -0
- package/eleventy/node_modules/parse-srcset/.jscs.json +83 -0
- package/eleventy/node_modules/parse-srcset/.jshintrc +15 -0
- package/eleventy/node_modules/parse-srcset/LICENSE +22 -0
- package/eleventy/node_modules/parse-srcset/README.md +19 -0
- package/eleventy/node_modules/parse-srcset/package.json +25 -0
- package/eleventy/node_modules/parse-srcset/src/parse-srcset.js +330 -0
- package/eleventy/node_modules/parse-srcset/tests/he.js +329 -0
- package/eleventy/node_modules/parse-srcset/tests/intern.js +74 -0
- package/eleventy/node_modules/parse-srcset/tests/unit/ps.js +345 -0
- package/eleventy/node_modules/parseurl/HISTORY.md +58 -0
- package/eleventy/node_modules/parseurl/LICENSE +24 -0
- package/eleventy/node_modules/parseurl/README.md +133 -0
- package/eleventy/node_modules/parseurl/index.js +158 -0
- package/eleventy/node_modules/parseurl/package.json +40 -0
- package/eleventy/node_modules/path-key/index.d.ts +40 -0
- package/eleventy/node_modules/path-key/index.js +16 -0
- package/eleventy/node_modules/path-key/license +9 -0
- package/eleventy/node_modules/path-key/package.json +39 -0
- package/eleventy/node_modules/path-key/readme.md +61 -0
- package/eleventy/node_modules/path-scurry/LICENSE.md +55 -0
- package/eleventy/node_modules/path-scurry/README.md +636 -0
- package/eleventy/node_modules/path-scurry/dist/commonjs/index.d.ts +1116 -0
- package/eleventy/node_modules/path-scurry/dist/commonjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/path-scurry/dist/commonjs/index.js +2014 -0
- package/eleventy/node_modules/path-scurry/dist/commonjs/index.js.map +1 -0
- package/eleventy/node_modules/path-scurry/dist/commonjs/package.json +3 -0
- package/eleventy/node_modules/path-scurry/dist/esm/index.d.ts +1116 -0
- package/eleventy/node_modules/path-scurry/dist/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/path-scurry/dist/esm/index.js +1979 -0
- package/eleventy/node_modules/path-scurry/dist/esm/index.js.map +1 -0
- package/eleventy/node_modules/path-scurry/dist/esm/package.json +3 -0
- package/eleventy/node_modules/path-scurry/package.json +89 -0
- package/eleventy/node_modules/picomatch/CHANGELOG.md +136 -0
- package/eleventy/node_modules/picomatch/LICENSE +21 -0
- package/eleventy/node_modules/picomatch/README.md +708 -0
- package/eleventy/node_modules/picomatch/index.js +3 -0
- package/eleventy/node_modules/picomatch/lib/constants.js +179 -0
- package/eleventy/node_modules/picomatch/lib/parse.js +1091 -0
- package/eleventy/node_modules/picomatch/lib/picomatch.js +342 -0
- package/eleventy/node_modules/picomatch/lib/scan.js +391 -0
- package/eleventy/node_modules/picomatch/lib/utils.js +64 -0
- package/eleventy/node_modules/picomatch/package.json +81 -0
- package/eleventy/node_modules/pify/index.js +68 -0
- package/eleventy/node_modules/pify/license +21 -0
- package/eleventy/node_modules/pify/package.json +48 -0
- package/eleventy/node_modules/pify/readme.md +119 -0
- package/eleventy/node_modules/please-upgrade-node/.eslintrc.js +12 -0
- package/eleventy/node_modules/please-upgrade-node/.github/FUNDING.yml +1 -0
- package/eleventy/node_modules/please-upgrade-node/LICENSE +21 -0
- package/eleventy/node_modules/please-upgrade-node/README.md +72 -0
- package/eleventy/node_modules/please-upgrade-node/index.d.ts +11 -0
- package/eleventy/node_modules/please-upgrade-node/index.js +25 -0
- package/eleventy/node_modules/please-upgrade-node/package.json +46 -0
- package/eleventy/node_modules/posthtml/lib/api.js +145 -0
- package/eleventy/node_modules/posthtml/lib/index.js +323 -0
- package/eleventy/node_modules/posthtml/license +21 -0
- package/eleventy/node_modules/posthtml/package.json +64 -0
- package/eleventy/node_modules/posthtml/readme.md +412 -0
- package/eleventy/node_modules/posthtml/types/posthtml.d.ts +108 -0
- package/eleventy/node_modules/posthtml-match-helper/LICENSE +21 -0
- package/eleventy/node_modules/posthtml-match-helper/README.md +84 -0
- package/eleventy/node_modules/posthtml-match-helper/lib/index.d.ts +10 -0
- package/eleventy/node_modules/posthtml-match-helper/lib/index.js +149 -0
- package/eleventy/node_modules/posthtml-match-helper/package.json +41 -0
- package/eleventy/node_modules/posthtml-parser/dist/chunk.2UQLUWPH.js +1 -0
- package/eleventy/node_modules/posthtml-parser/dist/index.d.ts +27 -0
- package/eleventy/node_modules/posthtml-parser/dist/index.js +1 -0
- package/eleventy/node_modules/posthtml-parser/dist/location-tracker.d.ts +17 -0
- package/eleventy/node_modules/posthtml-parser/dist/location-tracker.js +1 -0
- package/eleventy/node_modules/posthtml-parser/license +22 -0
- package/eleventy/node_modules/posthtml-parser/package.json +69 -0
- package/eleventy/node_modules/posthtml-parser/readme.md +130 -0
- package/eleventy/node_modules/posthtml-render/changelog.md +310 -0
- package/eleventy/node_modules/posthtml-render/dist/index.d.ts +67 -0
- package/eleventy/node_modules/posthtml-render/dist/index.js +1 -0
- package/eleventy/node_modules/posthtml-render/license +22 -0
- package/eleventy/node_modules/posthtml-render/package.json +55 -0
- package/eleventy/node_modules/posthtml-render/readme.md +225 -0
- package/eleventy/node_modules/promise/.jshintrc +5 -0
- package/eleventy/node_modules/promise/LICENSE +19 -0
- package/eleventy/node_modules/promise/Readme.md +231 -0
- package/eleventy/node_modules/promise/build.js +69 -0
- package/eleventy/node_modules/promise/core.js +5 -0
- package/eleventy/node_modules/promise/domains/core.js +213 -0
- package/eleventy/node_modules/promise/domains/done.js +13 -0
- package/eleventy/node_modules/promise/domains/es6-extensions.js +107 -0
- package/eleventy/node_modules/promise/domains/finally.js +16 -0
- package/eleventy/node_modules/promise/domains/index.js +8 -0
- package/eleventy/node_modules/promise/domains/node-extensions.js +130 -0
- package/eleventy/node_modules/promise/domains/rejection-tracking.js +113 -0
- package/eleventy/node_modules/promise/domains/synchronous.js +62 -0
- package/eleventy/node_modules/promise/index.d.ts +256 -0
- package/eleventy/node_modules/promise/index.js +3 -0
- package/eleventy/node_modules/promise/lib/core.js +213 -0
- package/eleventy/node_modules/promise/lib/done.js +13 -0
- package/eleventy/node_modules/promise/lib/es6-extensions.js +107 -0
- package/eleventy/node_modules/promise/lib/finally.js +16 -0
- package/eleventy/node_modules/promise/lib/index.js +8 -0
- package/eleventy/node_modules/promise/lib/node-extensions.js +130 -0
- package/eleventy/node_modules/promise/lib/rejection-tracking.js +113 -0
- package/eleventy/node_modules/promise/lib/synchronous.js +62 -0
- package/eleventy/node_modules/promise/package.json +35 -0
- package/eleventy/node_modules/promise/polyfill-done.js +12 -0
- package/eleventy/node_modules/promise/polyfill.js +10 -0
- package/eleventy/node_modules/promise/setimmediate/core.js +213 -0
- package/eleventy/node_modules/promise/setimmediate/done.js +13 -0
- package/eleventy/node_modules/promise/setimmediate/es6-extensions.js +107 -0
- package/eleventy/node_modules/promise/setimmediate/finally.js +16 -0
- package/eleventy/node_modules/promise/setimmediate/index.js +8 -0
- package/eleventy/node_modules/promise/setimmediate/node-extensions.js +130 -0
- package/eleventy/node_modules/promise/setimmediate/rejection-tracking.js +113 -0
- package/eleventy/node_modules/promise/setimmediate/synchronous.js +62 -0
- package/eleventy/node_modules/promise/src/core.js +213 -0
- package/eleventy/node_modules/promise/src/done.js +13 -0
- package/eleventy/node_modules/promise/src/es6-extensions.js +107 -0
- package/eleventy/node_modules/promise/src/finally.js +16 -0
- package/eleventy/node_modules/promise/src/index.js +8 -0
- package/eleventy/node_modules/promise/src/node-extensions.js +130 -0
- package/eleventy/node_modules/promise/src/rejection-tracking.js +113 -0
- package/eleventy/node_modules/promise/src/synchronous.js +62 -0
- package/eleventy/node_modules/prr/.jshintrc +61 -0
- package/eleventy/node_modules/prr/.travis.yml +10 -0
- package/eleventy/node_modules/prr/LICENSE.md +11 -0
- package/eleventy/node_modules/prr/README.md +47 -0
- package/eleventy/node_modules/prr/package.json +26 -0
- package/eleventy/node_modules/prr/prr.js +63 -0
- package/eleventy/node_modules/prr/test.js +169 -0
- package/eleventy/node_modules/punycode.js/LICENSE-MIT.txt +20 -0
- package/eleventy/node_modules/punycode.js/README.md +148 -0
- package/eleventy/node_modules/punycode.js/package.json +58 -0
- package/eleventy/node_modules/punycode.js/punycode.es6.js +444 -0
- package/eleventy/node_modules/punycode.js/punycode.js +443 -0
- package/eleventy/node_modules/queue-microtask/LICENSE +20 -0
- package/eleventy/node_modules/queue-microtask/README.md +90 -0
- package/eleventy/node_modules/queue-microtask/index.d.ts +2 -0
- package/eleventy/node_modules/queue-microtask/index.js +9 -0
- package/eleventy/node_modules/queue-microtask/package.json +55 -0
- package/eleventy/node_modules/range-parser/HISTORY.md +56 -0
- package/eleventy/node_modules/range-parser/LICENSE +23 -0
- package/eleventy/node_modules/range-parser/README.md +84 -0
- package/eleventy/node_modules/range-parser/index.js +162 -0
- package/eleventy/node_modules/range-parser/package.json +44 -0
- package/eleventy/node_modules/readdirp/LICENSE +21 -0
- package/eleventy/node_modules/readdirp/README.md +122 -0
- package/eleventy/node_modules/readdirp/index.d.ts +43 -0
- package/eleventy/node_modules/readdirp/index.js +287 -0
- package/eleventy/node_modules/readdirp/package.json +122 -0
- package/eleventy/node_modules/reusify/.coveralls.yml +1 -0
- package/eleventy/node_modules/reusify/.travis.yml +28 -0
- package/eleventy/node_modules/reusify/LICENSE +22 -0
- package/eleventy/node_modules/reusify/README.md +145 -0
- package/eleventy/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
- package/eleventy/node_modules/reusify/benchmarks/fib.js +13 -0
- package/eleventy/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
- package/eleventy/node_modules/reusify/package.json +45 -0
- package/eleventy/node_modules/reusify/reusify.js +33 -0
- package/eleventy/node_modules/reusify/test.js +66 -0
- package/eleventy/node_modules/rimraf/LICENSE +15 -0
- package/eleventy/node_modules/rimraf/README.md +220 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/default-tmp.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/default-tmp.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/default-tmp.js +61 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/default-tmp.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/fix-eperm.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/fix-eperm.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/fix-eperm.js +58 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/fix-eperm.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/fs.d.ts +17 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/fs.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/fs.js +46 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/fs.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/ignore-enoent.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/ignore-enoent.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/ignore-enoent.js +21 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/ignore-enoent.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/index.d.ts +50 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/index.js +78 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/index.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/opt-arg.d.ts +34 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/opt-arg.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/opt-arg.js +53 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/opt-arg.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/package.json +3 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/path-arg.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/path-arg.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/path-arg.js +52 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/path-arg.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/platform.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/platform.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/platform.js +4 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/platform.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/readdir-or-error.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/readdir-or-error.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/readdir-or-error.js +19 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/readdir-or-error.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/retry-busy.d.ts +8 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/retry-busy.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/retry-busy.js +68 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/retry-busy.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-manual.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-manual.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-manual.js +12 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-manual.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-move-remove.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-move-remove.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-move-remove.js +192 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-move-remove.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-native.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-native.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-native.js +24 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-native.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-posix.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-posix.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-posix.js +123 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-posix.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-windows.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-windows.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-windows.js +182 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-windows.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/use-native.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/use-native.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/use-native.js +22 -0
- package/eleventy/node_modules/rimraf/dist/commonjs/use-native.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/bin.d.mts +8 -0
- package/eleventy/node_modules/rimraf/dist/esm/bin.d.mts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/bin.mjs +256 -0
- package/eleventy/node_modules/rimraf/dist/esm/bin.mjs.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/default-tmp.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/esm/default-tmp.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/default-tmp.js +55 -0
- package/eleventy/node_modules/rimraf/dist/esm/default-tmp.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/fix-eperm.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/esm/fix-eperm.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/fix-eperm.js +53 -0
- package/eleventy/node_modules/rimraf/dist/esm/fix-eperm.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/fs.d.ts +17 -0
- package/eleventy/node_modules/rimraf/dist/esm/fs.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/fs.js +31 -0
- package/eleventy/node_modules/rimraf/dist/esm/fs.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/ignore-enoent.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/esm/ignore-enoent.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/ignore-enoent.js +16 -0
- package/eleventy/node_modules/rimraf/dist/esm/ignore-enoent.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/index.d.ts +50 -0
- package/eleventy/node_modules/rimraf/dist/esm/index.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/index.js +70 -0
- package/eleventy/node_modules/rimraf/dist/esm/index.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/opt-arg.d.ts +34 -0
- package/eleventy/node_modules/rimraf/dist/esm/opt-arg.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/opt-arg.js +46 -0
- package/eleventy/node_modules/rimraf/dist/esm/opt-arg.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/package.json +3 -0
- package/eleventy/node_modules/rimraf/dist/esm/path-arg.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/esm/path-arg.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/path-arg.js +47 -0
- package/eleventy/node_modules/rimraf/dist/esm/path-arg.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/platform.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/esm/platform.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/platform.js +2 -0
- package/eleventy/node_modules/rimraf/dist/esm/platform.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/readdir-or-error.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/esm/readdir-or-error.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/readdir-or-error.js +14 -0
- package/eleventy/node_modules/rimraf/dist/esm/readdir-or-error.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/retry-busy.d.ts +8 -0
- package/eleventy/node_modules/rimraf/dist/esm/retry-busy.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/retry-busy.js +63 -0
- package/eleventy/node_modules/rimraf/dist/esm/retry-busy.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-manual.d.ts +3 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-manual.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-manual.js +6 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-manual.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-move-remove.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-move-remove.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-move-remove.js +187 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-move-remove.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-native.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-native.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-native.js +19 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-native.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-posix.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-posix.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-posix.js +118 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-posix.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-windows.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-windows.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-windows.js +177 -0
- package/eleventy/node_modules/rimraf/dist/esm/rimraf-windows.js.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/use-native.d.ts +4 -0
- package/eleventy/node_modules/rimraf/dist/esm/use-native.d.ts.map +1 -0
- package/eleventy/node_modules/rimraf/dist/esm/use-native.js +16 -0
- package/eleventy/node_modules/rimraf/dist/esm/use-native.js.map +1 -0
- package/eleventy/node_modules/rimraf/package.json +89 -0
- package/eleventy/node_modules/run-parallel/LICENSE +20 -0
- package/eleventy/node_modules/run-parallel/README.md +85 -0
- package/eleventy/node_modules/run-parallel/index.js +51 -0
- package/eleventy/node_modules/run-parallel/package.json +58 -0
- package/eleventy/node_modules/section-matter/LICENSE +21 -0
- package/eleventy/node_modules/section-matter/README.md +236 -0
- package/eleventy/node_modules/section-matter/index.js +136 -0
- package/eleventy/node_modules/section-matter/package.json +55 -0
- package/eleventy/node_modules/semver/LICENSE +15 -0
- package/eleventy/node_modules/semver/README.md +654 -0
- package/eleventy/node_modules/semver/bin/semver.js +188 -0
- package/eleventy/node_modules/semver/classes/comparator.js +141 -0
- package/eleventy/node_modules/semver/classes/index.js +5 -0
- package/eleventy/node_modules/semver/classes/range.js +554 -0
- package/eleventy/node_modules/semver/classes/semver.js +302 -0
- package/eleventy/node_modules/semver/functions/clean.js +6 -0
- package/eleventy/node_modules/semver/functions/cmp.js +52 -0
- package/eleventy/node_modules/semver/functions/coerce.js +60 -0
- package/eleventy/node_modules/semver/functions/compare-build.js +7 -0
- package/eleventy/node_modules/semver/functions/compare-loose.js +3 -0
- package/eleventy/node_modules/semver/functions/compare.js +5 -0
- package/eleventy/node_modules/semver/functions/diff.js +65 -0
- package/eleventy/node_modules/semver/functions/eq.js +3 -0
- package/eleventy/node_modules/semver/functions/gt.js +3 -0
- package/eleventy/node_modules/semver/functions/gte.js +3 -0
- package/eleventy/node_modules/semver/functions/inc.js +19 -0
- package/eleventy/node_modules/semver/functions/lt.js +3 -0
- package/eleventy/node_modules/semver/functions/lte.js +3 -0
- package/eleventy/node_modules/semver/functions/major.js +3 -0
- package/eleventy/node_modules/semver/functions/minor.js +3 -0
- package/eleventy/node_modules/semver/functions/neq.js +3 -0
- package/eleventy/node_modules/semver/functions/parse.js +16 -0
- package/eleventy/node_modules/semver/functions/patch.js +3 -0
- package/eleventy/node_modules/semver/functions/prerelease.js +6 -0
- package/eleventy/node_modules/semver/functions/rcompare.js +3 -0
- package/eleventy/node_modules/semver/functions/rsort.js +3 -0
- package/eleventy/node_modules/semver/functions/satisfies.js +10 -0
- package/eleventy/node_modules/semver/functions/sort.js +3 -0
- package/eleventy/node_modules/semver/functions/valid.js +6 -0
- package/eleventy/node_modules/semver/index.js +89 -0
- package/eleventy/node_modules/semver/internal/constants.js +35 -0
- package/eleventy/node_modules/semver/internal/debug.js +9 -0
- package/eleventy/node_modules/semver/internal/identifiers.js +23 -0
- package/eleventy/node_modules/semver/internal/lrucache.js +40 -0
- package/eleventy/node_modules/semver/internal/parse-options.js +15 -0
- package/eleventy/node_modules/semver/internal/re.js +217 -0
- package/eleventy/node_modules/semver/package.json +77 -0
- package/eleventy/node_modules/semver/preload.js +2 -0
- package/eleventy/node_modules/semver/range.bnf +16 -0
- package/eleventy/node_modules/semver/ranges/gtr.js +4 -0
- package/eleventy/node_modules/semver/ranges/intersects.js +7 -0
- package/eleventy/node_modules/semver/ranges/ltr.js +4 -0
- package/eleventy/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/eleventy/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/eleventy/node_modules/semver/ranges/min-version.js +61 -0
- package/eleventy/node_modules/semver/ranges/outside.js +80 -0
- package/eleventy/node_modules/semver/ranges/simplify.js +47 -0
- package/eleventy/node_modules/semver/ranges/subset.js +247 -0
- package/eleventy/node_modules/semver/ranges/to-comparators.js +8 -0
- package/eleventy/node_modules/semver/ranges/valid.js +11 -0
- package/eleventy/node_modules/semver-compare/.travis.yml +6 -0
- package/eleventy/node_modules/semver-compare/LICENSE +18 -0
- package/eleventy/node_modules/semver-compare/example/cmp.js +13 -0
- package/eleventy/node_modules/semver-compare/example/lex.js +12 -0
- package/eleventy/node_modules/semver-compare/index.js +13 -0
- package/eleventy/node_modules/semver-compare/package.json +31 -0
- package/eleventy/node_modules/semver-compare/readme.markdown +77 -0
- package/eleventy/node_modules/semver-compare/test/cmp.js +29 -0
- package/eleventy/node_modules/send/HISTORY.md +571 -0
- package/eleventy/node_modules/send/LICENSE +23 -0
- package/eleventy/node_modules/send/README.md +320 -0
- package/eleventy/node_modules/send/SECURITY.md +24 -0
- package/eleventy/node_modules/send/index.js +1014 -0
- package/eleventy/node_modules/send/package.json +62 -0
- package/eleventy/node_modules/setprototypeof/LICENSE +13 -0
- package/eleventy/node_modules/setprototypeof/README.md +31 -0
- package/eleventy/node_modules/setprototypeof/index.d.ts +2 -0
- package/eleventy/node_modules/setprototypeof/index.js +17 -0
- package/eleventy/node_modules/setprototypeof/package.json +38 -0
- package/eleventy/node_modules/setprototypeof/test/index.js +24 -0
- package/eleventy/node_modules/shebang-command/index.js +19 -0
- package/eleventy/node_modules/shebang-command/license +9 -0
- package/eleventy/node_modules/shebang-command/package.json +34 -0
- package/eleventy/node_modules/shebang-command/readme.md +34 -0
- package/eleventy/node_modules/shebang-regex/index.d.ts +22 -0
- package/eleventy/node_modules/shebang-regex/index.js +2 -0
- package/eleventy/node_modules/shebang-regex/license +9 -0
- package/eleventy/node_modules/shebang-regex/package.json +35 -0
- package/eleventy/node_modules/shebang-regex/readme.md +33 -0
- package/eleventy/node_modules/signal-exit/LICENSE.txt +16 -0
- package/eleventy/node_modules/signal-exit/README.md +74 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/browser.d.ts +12 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/browser.d.ts.map +1 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/browser.js +10 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/browser.js.map +1 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/index.d.ts +48 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/index.js +279 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/index.js.map +1 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/package.json +3 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/signals.d.ts +29 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/signals.d.ts.map +1 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/signals.js +42 -0
- package/eleventy/node_modules/signal-exit/dist/cjs/signals.js.map +1 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/browser.d.ts +12 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/browser.d.ts.map +1 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/browser.js +4 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/browser.js.map +1 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/index.d.ts +48 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/index.d.ts.map +1 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/index.js +275 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/index.js.map +1 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/package.json +3 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/signals.d.ts +29 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/signals.d.ts.map +1 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/signals.js +39 -0
- package/eleventy/node_modules/signal-exit/dist/mjs/signals.js.map +1 -0
- package/eleventy/node_modules/signal-exit/package.json +106 -0
- package/eleventy/node_modules/slash/index.js +11 -0
- package/eleventy/node_modules/slash/package.json +33 -0
- package/eleventy/node_modules/slash/readme.md +44 -0
- package/eleventy/node_modules/slugify/CHANGELOG.md +94 -0
- package/eleventy/node_modules/slugify/LICENSE +21 -0
- package/eleventy/node_modules/slugify/README.md +98 -0
- package/eleventy/node_modules/slugify/package.json +42 -0
- package/eleventy/node_modules/slugify/slugify.d.ts +24 -0
- package/eleventy/node_modules/slugify/slugify.js +69 -0
- package/eleventy/node_modules/sprintf-js/LICENSE +24 -0
- package/eleventy/node_modules/sprintf-js/README.md +88 -0
- package/eleventy/node_modules/sprintf-js/bower.json +14 -0
- package/eleventy/node_modules/sprintf-js/demo/angular.html +20 -0
- package/eleventy/node_modules/sprintf-js/dist/angular-sprintf.min.js +4 -0
- package/eleventy/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +1 -0
- package/eleventy/node_modules/sprintf-js/dist/angular-sprintf.min.map +1 -0
- package/eleventy/node_modules/sprintf-js/dist/sprintf.min.js +4 -0
- package/eleventy/node_modules/sprintf-js/dist/sprintf.min.js.map +1 -0
- package/eleventy/node_modules/sprintf-js/dist/sprintf.min.map +1 -0
- package/eleventy/node_modules/sprintf-js/gruntfile.js +36 -0
- package/eleventy/node_modules/sprintf-js/package.json +22 -0
- package/eleventy/node_modules/sprintf-js/src/angular-sprintf.js +18 -0
- package/eleventy/node_modules/sprintf-js/src/sprintf.js +208 -0
- package/eleventy/node_modules/sprintf-js/test/test.js +82 -0
- package/eleventy/node_modules/ssri/LICENSE.md +16 -0
- package/eleventy/node_modules/ssri/README.md +528 -0
- package/eleventy/node_modules/ssri/lib/index.js +580 -0
- package/eleventy/node_modules/ssri/package.json +66 -0
- package/eleventy/node_modules/statuses/HISTORY.md +82 -0
- package/eleventy/node_modules/statuses/LICENSE +23 -0
- package/eleventy/node_modules/statuses/README.md +136 -0
- package/eleventy/node_modules/statuses/codes.json +65 -0
- package/eleventy/node_modules/statuses/index.js +146 -0
- package/eleventy/node_modules/statuses/package.json +49 -0
- package/eleventy/node_modules/string-width/index.d.ts +29 -0
- package/eleventy/node_modules/string-width/index.js +54 -0
- package/eleventy/node_modules/string-width/license +9 -0
- package/eleventy/node_modules/string-width/package.json +59 -0
- package/eleventy/node_modules/string-width/readme.md +67 -0
- package/eleventy/node_modules/string-width-cjs/index.d.ts +29 -0
- package/eleventy/node_modules/string-width-cjs/index.js +47 -0
- package/eleventy/node_modules/string-width-cjs/license +9 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/ansi-regex/index.d.ts +37 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +10 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/ansi-regex/license +9 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/ansi-regex/package.json +55 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/ansi-regex/readme.md +78 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/README.md +73 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/index.js +6 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/text.js +6 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/index.d.ts +23 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/index.js +6 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/package.json +50 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/text.js +6 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/strip-ansi/index.d.ts +17 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +4 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/strip-ansi/license +9 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/strip-ansi/package.json +54 -0
- package/eleventy/node_modules/string-width-cjs/node_modules/strip-ansi/readme.md +46 -0
- package/eleventy/node_modules/string-width-cjs/package.json +56 -0
- package/eleventy/node_modules/string-width-cjs/readme.md +50 -0
- package/eleventy/node_modules/strip-ansi/index.d.ts +15 -0
- package/eleventy/node_modules/strip-ansi/index.js +14 -0
- package/eleventy/node_modules/strip-ansi/license +9 -0
- package/eleventy/node_modules/strip-ansi/package.json +57 -0
- package/eleventy/node_modules/strip-ansi/readme.md +41 -0
- package/eleventy/node_modules/strip-ansi-cjs/index.d.ts +17 -0
- package/eleventy/node_modules/strip-ansi-cjs/index.js +4 -0
- package/eleventy/node_modules/strip-ansi-cjs/license +9 -0
- package/eleventy/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.d.ts +37 -0
- package/eleventy/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/eleventy/node_modules/strip-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/eleventy/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/eleventy/node_modules/strip-ansi-cjs/node_modules/ansi-regex/readme.md +78 -0
- package/eleventy/node_modules/strip-ansi-cjs/package.json +54 -0
- package/eleventy/node_modules/strip-ansi-cjs/readme.md +46 -0
- package/eleventy/node_modules/strip-bom-string/LICENSE +21 -0
- package/eleventy/node_modules/strip-bom-string/README.md +66 -0
- package/eleventy/node_modules/strip-bom-string/index.js +15 -0
- package/eleventy/node_modules/strip-bom-string/package.json +60 -0
- package/eleventy/node_modules/to-regex-range/LICENSE +21 -0
- package/eleventy/node_modules/to-regex-range/README.md +305 -0
- package/eleventy/node_modules/to-regex-range/index.js +288 -0
- package/eleventy/node_modules/to-regex-range/package.json +88 -0
- package/eleventy/node_modules/toidentifier/HISTORY.md +9 -0
- package/eleventy/node_modules/toidentifier/LICENSE +21 -0
- package/eleventy/node_modules/toidentifier/README.md +61 -0
- package/eleventy/node_modules/toidentifier/index.js +32 -0
- package/eleventy/node_modules/toidentifier/package.json +38 -0
- package/eleventy/node_modules/uc.micro/LICENSE.txt +20 -0
- package/eleventy/node_modules/uc.micro/README.md +14 -0
- package/eleventy/node_modules/uc.micro/categories/Cc/regex.mjs +1 -0
- package/eleventy/node_modules/uc.micro/categories/Cf/regex.mjs +1 -0
- package/eleventy/node_modules/uc.micro/categories/P/regex.mjs +1 -0
- package/eleventy/node_modules/uc.micro/categories/S/regex.mjs +1 -0
- package/eleventy/node_modules/uc.micro/categories/Z/regex.mjs +1 -0
- package/eleventy/node_modules/uc.micro/index.mjs +8 -0
- package/eleventy/node_modules/uc.micro/package.json +37 -0
- package/eleventy/node_modules/uc.micro/properties/Any/regex.mjs +1 -0
- package/eleventy/node_modules/unpipe/HISTORY.md +4 -0
- package/eleventy/node_modules/unpipe/LICENSE +22 -0
- package/eleventy/node_modules/unpipe/README.md +43 -0
- package/eleventy/node_modules/unpipe/index.js +69 -0
- package/eleventy/node_modules/unpipe/package.json +27 -0
- package/eleventy/node_modules/urlpattern-polyfill/LICENSE +19 -0
- package/eleventy/node_modules/urlpattern-polyfill/README.md +242 -0
- package/eleventy/node_modules/urlpattern-polyfill/dist/index.d.ts +9 -0
- package/eleventy/node_modules/urlpattern-polyfill/dist/types.d.ts +49 -0
- package/eleventy/node_modules/urlpattern-polyfill/dist/urlpattern.cjs +1 -0
- package/eleventy/node_modules/urlpattern-polyfill/dist/urlpattern.js +1 -0
- package/eleventy/node_modules/urlpattern-polyfill/index.cjs +7 -0
- package/eleventy/node_modules/urlpattern-polyfill/index.js +7 -0
- package/eleventy/node_modules/urlpattern-polyfill/package.json +149 -0
- package/eleventy/node_modules/which/CHANGELOG.md +166 -0
- package/eleventy/node_modules/which/LICENSE +15 -0
- package/eleventy/node_modules/which/README.md +54 -0
- package/eleventy/node_modules/which/bin/node-which +52 -0
- package/eleventy/node_modules/which/package.json +43 -0
- package/eleventy/node_modules/which/which.js +125 -0
- package/eleventy/node_modules/wrap-ansi/index.d.ts +41 -0
- package/eleventy/node_modules/wrap-ansi/index.js +214 -0
- package/eleventy/node_modules/wrap-ansi/license +9 -0
- package/eleventy/node_modules/wrap-ansi/package.json +69 -0
- package/eleventy/node_modules/wrap-ansi/readme.md +91 -0
- package/eleventy/node_modules/wrap-ansi-cjs/index.js +216 -0
- package/eleventy/node_modules/wrap-ansi-cjs/license +9 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.d.ts +37 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/readme.md +78 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.d.ts +345 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/readme.md +152 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/README.md +73 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/index.js +6 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/text.js +6 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.d.ts +23 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.js +6 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/package.json +50 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/text.js +6 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/string-width/index.d.ts +29 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/string-width/index.js +47 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/string-width/license +9 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/string-width/package.json +56 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/string-width/readme.md +50 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.d.ts +17 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +4 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/license +9 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json +54 -0
- package/eleventy/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/readme.md +46 -0
- package/eleventy/node_modules/wrap-ansi-cjs/package.json +62 -0
- package/eleventy/node_modules/wrap-ansi-cjs/readme.md +91 -0
- package/eleventy/node_modules/ws/LICENSE +20 -0
- package/eleventy/node_modules/ws/README.md +548 -0
- package/eleventy/node_modules/ws/browser.js +8 -0
- package/eleventy/node_modules/ws/index.js +13 -0
- package/eleventy/node_modules/ws/lib/buffer-util.js +131 -0
- package/eleventy/node_modules/ws/lib/constants.js +18 -0
- package/eleventy/node_modules/ws/lib/event-target.js +292 -0
- package/eleventy/node_modules/ws/lib/extension.js +203 -0
- package/eleventy/node_modules/ws/lib/limiter.js +55 -0
- package/eleventy/node_modules/ws/lib/permessage-deflate.js +514 -0
- package/eleventy/node_modules/ws/lib/receiver.js +706 -0
- package/eleventy/node_modules/ws/lib/sender.js +602 -0
- package/eleventy/node_modules/ws/lib/stream.js +159 -0
- package/eleventy/node_modules/ws/lib/subprotocol.js +62 -0
- package/eleventy/node_modules/ws/lib/validation.js +152 -0
- package/eleventy/node_modules/ws/lib/websocket-server.js +540 -0
- package/eleventy/node_modules/ws/lib/websocket.js +1388 -0
- package/eleventy/node_modules/ws/package.json +69 -0
- package/eleventy/node_modules/ws/wrapper.mjs +8 -0
- package/package.json +1 -1
- package/src/js/core/ConfigFactory.js +21 -2
- package/src/js/core/__tests__/ConfigFactory.test.js +14 -1
- package/src/less/Variables.less +2 -0
- package/src/less/themes/contrast/Variables.less +3 -1
- package/src/less/themes/dark/Variables.less +2 -0
- package/src/less/timenav/TL.TimeGroup.less +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"../css/timeline.css","mappings":"AAAA;;;;;;;;;CASC;AACD;oDACoD;AACpD;;uDAEuD;AACvD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;;;;;;;;;CASC;AACD;oDACoD;AACpD;;sEAEsE;AC3CtE;EACC;ED6CC;qDACmD;AACrD;AChDA;;;;;;EAIE;ADoDF;ACxDA;;;EAQE;EACA;ADqDF;AC9DA;;;EAWG;EACA;ADwDH;ACpEA;;;EAgBE;EACA;EACA;ADyDF;AC3EA;;;EAoBG;EACA;AD4DH;ACjFA;EAyBE;EACA;AD2DF;ACrFA;EA4BG;EACA;EACA;EACA;AD4DH;AC3FA;EAoCE;EACA;AD0DF;AC/FA;EAyCE;EACA;EACA;EACA;EAEA;ADwDF;ACvDE;EACC;ADyDH;ACzGA;ED2GE;;;;;;;;;;;;;;;;IAgBE;ECvDD;EACA;ADyDH;ACxDG;;EAEC;AD0DJ;ACpDE;EAAA;IAEE;IACA;IACA;EDsDF;ECrDE;;IAEC;IACA;EDuDH;AACF;AC9IA;;EA+FE;ADmDF;AClJA;;EAmGE;ADmDF;ACtJA;EAsGE;EACA;ADmDF;AC1JA;EA0GE;EACA;ADmDF;AC9JA;;;;EA+GE;EACA;ADqDF;ACrKA;;;;EAkHG;ADyDH;AC3KA;EAuHE;EACA;EACA;EACG;EACK;ADuDV;AClLA;;EA8HE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ADwDF;AC7LA;;EAuIG;EACA;EACA;EACA;EACA;EACA;AD0DH;ACtMA;;EAgJG;AD0DH;AC1MA;EAoJE;EACA;EACA;EACA;EACA;EACA;ADyDF;AClNA;EA6JE;EACA;EACA;EACA;EACA;EACA;ADwDF;AC1NA;EAsKE;ADuDF;AC7NA;EAwKG;ADwDH;AChOA;EAiLE;EACA;EACA;EAGA;EACA;ADgDF;AExFC;;EAEC;EACA;AF0FF;AExFC;EACC;AF0FF;AC/OA;EAyLG;EACA;ADyDH;ACnPA;EA6LG;ADyDH;ACtPA;EAiMG;EACA;ADwDH;AC1PA;EAqMG;ADwDH;AC7PA;;EAuMI;AD0DJ;ACjQA;;EA6MG;ADwDH;ACrQA;EAgNG;EACA;ADwDH;ACzQA;EAqNG;EACA;EACA;ADuDH;AC9QA;EA2NG;EACA;EACA;EACA;ADsDH;ACpRA;EAgOI;EACA;EACA;ADuDJ;ACzRA;EAwOG;EACA;EACA;ADoDH;AC9RA;EA4OI;ADqDJ;ACjSA;EAmPE;EACA;EACA;EACA;EACA;ADiDF;ACxSA;EA0PG;EACA;EACA;EACA;EACA;ADiDH;AC/SA;EAmQE;EACA;EACA;EACA;EACA;EACA;EACA;ECzLA;EACG;EACK;EDyLR;EACA;EACA;ADiDF;ACzCA;EACC;;;IAEE;IACA;ED4CD;AACF;ACrCA;EACC;;;IAEE;IACA;EDwCD;AACF;AClCA;EAEE;ADmCF;AACA;oDACoD;AGhVpD;EACC;EACA;EACA;EAKA;EACA;AH8UD;AG3UA;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EH8UC,sCAAsC;EG3UvC;EACA;AH6UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AACA;oDACoD;AI9hBpD;EACC;EFoIA;EACG;EACC;EACC;EACG;AF6ZT;AACA;oDACoD;AKviBpD;EACC;EAGA;EACA;EACA;EAIA;EAOA;EACA;EACA;EACA;EACA;AL8hBD;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;;;;;;;;;;;;;;;;;;;;;;CAsBC;AKpgBD;EACC;IACC;ELsgBA;EKpgBD;IACC;ELsgBA;AACF;AKpgBA;EACC;IAAM;ELugBL;EKtgBD;IAAI;ELygBH;AACF;AKxgBA;EACC;IAAM;EL2gBL;EK1gBD;IAAI;EL6gBH;AACF;AK5gBA;EACC;IAAM;EL+gBL;EK9gBD;IAAI;ELihBH;AACF;AACA;oDACoD;AMpnBpD;EAEI;EACH;EACA;EAGA;EACA;EACA;EACA;EACA;EAEA;ANknBD;AM7mBC;EACC;EACM;AN+mBR;AM7mBC;;EACC;EACA;ANgnBF;AM/mBE;;EACC;EACA;ANknBH;AM7mBA;EAEE;AN8mBF;AM7mBE;EAEC;EACA;AN8mBH;AM5mBE;EACC;EACA;AN8mBH;AMxmBA;EACC;IACC;EN0mBA;EMxmBD;IACC;EN0mBA;AACF;AMxmBA;EACC;IAAM;EN2mBL;EM1mBD;IAAI;EN6mBH;AACF;AM5mBA;EACC;IAAM;EN+mBL;EM9mBD;IAAI;ENinBH;AACF;AMhnBA;EACC;IAAM;ENmnBL;EMlnBD;IAAI;ENqnBH;AACF;AACA;oDACoD;AO3rBpD;;EACC;EAEA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;EACA;AP2rBD;AOxsBA;;EAeE;EACA;EACA;EACA;EACA;AP6rBF;AOhtBA;;EAsBG;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AP8rBH;AO3tBA;;EAgCI;AP+rBJ;AO/tBA;;EAoCG;EACA;EACA;EACA;ELgEF;EACG;EACK;EKhEN;EACA;EACA;EAEA;EACA;APgsBH;AO7rBE;EACC;IAAK;EPgsBN;EO/rBC;IAAM;EPksBP;EOjsBC;IAAO;EPosBR;AACF;AOlsBE;EACC;IAAK;EPqsBN;EOpsBC;IAAM;EPusBP;EOtsBC;IAAO;EPysBR;AACF;AOtsBA;ELyFC;AFgnBD;AOzsBA;;EAKE;EACA;APwsBF;AO9sBA;EAUG;EACA;EACA;EACA;EACA;EACA;APusBH;AOttBA;EAiBI;EACA;EACA;EACA;EACA;EACA;ELNF;EACG;EACK;AF+sBV;AACA;oDACoD;AQhyBpD;EAEC;EACA;EACA;EACA;EAEA;ARgyBD;AQvyBA;EAaE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AR6xBF;AQ3xBE;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;ER8xBD,sCAAsC;EQ3xBrC;EACA;EAEA;EACA;EACA;EACA;EACA;AR4xBH;AQ1xBE;EAEC;AR2xBH;AQzxBE;EACC;EACA;AR2xBH;AQ10BA;EAmDE;EACA;EACA;EACA;AR0xBF;AQxxBE;ENlCD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFy0BT;AQ11BA;EA8DG;EACA;EACA;EACA;EACA;AR+xBH;AQj2BA;EAqEG;EACA;EACA;AR+xBH;AQt2BA;EAyEI;EACA;ARgyBJ;AQ12BA;EA+EK;EACA;AR8xBL;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;ASt3BpD;EACC;EACA;EACA;EACA;EACA;ETw3BC;qDACmD;EEx2BpD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;EFs3BP;qDACmD;EACnD;qDACmD;EACnD;qDACmD;EACnD;qDACmD;EACnD;qDACmD;EACnD;wDACsD;EACtD;qDACmD;EACnD;qDACmD;EACnD;qDACmD;EACnD;qDACmD;EACnD;qDACmD;AACrD;AS74BC;EPMA;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFs5BT;ASv5BC;EPMA;EACG;EACE;EACG;AFo5BT;AS75BC;EPMA;EACG;EACE;EACG;AF05BT;ASn7BA;EAkCE;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EPpBD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFo7BT;ASr8BA;EAkDG;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ATs5BH;AS/8BA;EAmEE;EACA;AT+4BF;ASn9BA;EAyEE;EACA;AT64BF;ASv9BA;;EA8EE;EPtCD;EFo7BC,gCAAgC;EEn7B9B;EFq7BF,yBAAyB;EEp7BrB;EO4CJ;EAEA;EAEA;EACA;EAEA;EP/DD;EACE;EACC;EACE;EACC;EACI;EO6DT;AT44BF;AS14BE;;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EP/BD;EACG;EACK;AF46BV;AS3/BA;EAoHE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EPvGD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;EOmHP;EACA;EACA;AT44BF;ASp5BE;EACC;ATs5BH;ASrhCA;EAyIG;EACA;EACA;EACA;EACA;EPrGF;EFq/BC,gCAAgC;EEp/B9B;EFs/BF,yBAAyB;EEr/BrB;AFu/BN;ASjiCA;EAiJI;EACA;ATm5BJ;ASriCA;;EAqJK;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ATk5BL;ASh5BM;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EP3KN;EF+jCC,WAAW;EE9jCZ;EFgkCC,oBAAoB;EE/jCrB;EFikCC,yBAAyB;EEhkC1B;EFkkCC,iBAAiB;EEjkClB;EFmkCC,UAAU;EElkCX;EFokCC,QAAQ;EEnkCT;EFqkCC,UAAU;AACZ;AS9kCA;EAuLI;EACA;EACA;EACA;EACA;EACA;EPpJH;EF+iCC,gCAAgC;EE9iC9B;EFgjCF,yBAAyB;EE/iCrB;AFijCN;AS3lCA;EAgMK;EACA;EACA;AT85BL;AShmCA;;EAsMK;EACA;EACA;EACA;AT85BL;ASvmCA;EA6MK;AT65BL;ASx5BG;EAGG;EACA;EACA;ATw5BN;AS75BG;;EAUG;ATu5BN;ASz4BC;;EAGE;AT04BH;AS74BC;;EAMG;AT24BJ;ASj5BC;;;;EAUG;AT64BJ;AS54BI;;;;EACC;ATi5BL;AS75BC;;EAqBW;EACT;EP1OF;EACG;EACE;EACG;AFunCT;AS74BG;;EAEC;AT+4BJ;AS16BC;;EA6CK;ATi4BN;AS/3BO;;EPvRN;EF0pCC,WAAW;EEzpCZ;EF2pCC,oBAAoB;EE1pCrB;EF4pCC,yBAAyB;EE3pC1B;EF6pCC,iBAAiB;EE5pClB;EF8pCC,UAAU;EE7pCX;EF+pCC,QAAQ;EE9pCT;EFgqCC,UAAU;AACZ;AS/7BC;;EAyDK;AT04BN;ASn8BC;;;;EA4DK;AT64BN;AS53BQ;;EPrTP;EFqrCC,WAAW;EEprCZ;EFsrCC,oBAAoB;EErrCrB;EFurCC,yBAAyB;EEtrC1B;EFwrCC,iBAAiB;EEvrClB;EFyrCC,UAAU;EExrCX;EF0rCC,QAAQ;EEzrCT;EF2rCC,UAAU;AACZ;ASn5BE;;;;EAkBE;ATu4BJ;ASr4BI;;;;EAGC;ATw4BL;ASh4BI;EACI;ATk4BR;AS73BC;EAKE;EACA;AT23BH;ASj4BC;EASG;AT23BJ;ASp4BC;;EAgBE;EACA;EACA;EACA;ATw3BH;ASv3BG;;EAGC;ATw3BJ;AS/4BC;EA6BE;EAEA;EACA;EAEA;EAGA;ATi3BH;ASt5BC;EA0CK;AT+2BN;AS72BO;EPhYN;EFgvCC,WAAW;EE/uCZ;EFivCC,oBAAoB;EEhvCrB;EFkvCC,yBAAyB;EEjvC1B;EFmvCC,iBAAiB;EElvClB;EFovCC,UAAU;EEnvCX;EFqvCC,QAAQ;EEpvCT;EFsvCC,UAAU;AACZ;ASz6BC;EAuDK;ATq3BN;AS56BC;;EA2DK;ATq3BN;AS52BC;EAIG;AT22BJ;AS/2BC;;EAQG;AT22BJ;ASr2BG;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EPpWF;EACG;EACK;AF4sCV;ASl2BG;EACC;ATo2BJ;ASp4BC;EAwCE;AT+1BH;ASv4BC;EA2CE;AT+1BH;ASj1BI;EACC;ATm1BL;ASl0BI;EAEC;ATm0BL;ASv0BE;;EASE;ATk0BJ;ASj0BI;;EAEC;ATm0BL;AS/0BE;EAgBE;ATk0BJ;ASvzBK;EAEC;ATwzBN;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AUh0CpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EVk0CC;qDACmD;EEpzCpD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;EFk0CP;qDACmD;EACnD;qDACmD;AACrD;AUt0CC;ERKA;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFg1CT;AUj2CA;EA2BE;EACA;EACA;EACA;EACA;AVy0CF;AUt0CC;EAEE;AVu0CH;AUp0CC;EAEE;AVq0CH;AUl0CC;EAEE;AVm0CH;AUh0CC;EAEE;AVi0CH;AU9zCC;EAEE;AV+zCH;AU5zCC;EAEE;AV6zCH;AU13CA;EAmEE;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;ERrDD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;EQgEP;EACA;AV4zCF;AU94CA;EAsFG;EACA;EACA;EAEA;ERlDF;EF62CC,gCAAgC;EE52C9B;EF82CF,yBAAyB;EE72CrB;AF+2CN;AUz5CA;EA8FI;EACA;EAEA;AV6zCJ;AU95CA;EAoGK;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EACA;AV0zCL;AUvzCM;EACC;EACA;EACA;EACA;EACA;EACA;EACA;ER7HN;EFu7CC,WAAW;EEt7CZ;EFw7CC,oBAAoB;EEv7CrB;EFy7CC,yBAAyB;EEx7C1B;EF07CC,iBAAiB;EEz7ClB;EF27CC,UAAU;EE17CX;EF47CC,QAAQ;EE37CT;EF67CC,UAAU;AACZ;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AW98CpD;EAEC;EACA;EACA;EACA;EAEA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EX68CC;qDACmD;EEv8CpD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFq9CT;AWt+CA;EAqBE;EACA;EACA;AXo9CF;AW/8CC;EACC;AXi9CF;AW58CC;EACC;AX88CF;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AY1/CpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AZ4/CD;AY1/CA;EACC;EACA;EACA;EACA;EACA;EACA;AZ4/CD;AYlgDA;EASE;EACA;EACA;AZ4/CF;AYvgDA;;EAaG;EACA;AZ8/CH;AY5gDA;;EAiBI;EACA;EACA;EACA;EACA;EACA;AZ+/CJ;AYrhDA;;EA0BK;EAEA;EAEA;EACA;AZ6/CL;AY3/CI;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AZ8/CL;AY1/CG;;EV/BF;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFyiDT;AY9/CG;;EVtCF;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFojDT;AY5jDA;EA4DG;EACA;AZmgDH;AYhkDA;EA+DI;EACA;EACA;EACA;EACA;AZogDJ;AYlgDI;EACC;EAEA;EACA;EACA;EACA;AZmgDL;AY9kDA;EAuFI;EACA;EACA;EACA;EACA;AZ0/CJ;AYrlDA;EA6FK;EACA;EACA;EACA;AZ2/CL;AY3lDA;EAmGM;EACA;EACA;EACA;EACA;AZ2/CN;AYr/CI;EACC;EACA;EACA;AZu/CL;AYp/CI;EAEE;AZq/CN;AYn/CK;EACC;AZq/CN;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;Aa/nDpD;EACC;EACA;EACA;AbioDD;Aa/nDA;EXoBC;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AF0nDT;AapoDA;EXeC;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFooDT;AACA;oDACoD;AcxpDpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;Ad0pDD;AcjqDA;EAUE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EZ+BA;EACA;EACE;EACK;EYhCP;EACA;EACG;EACE;EACA;Ad6pDP;AcprDA;EA0BE;EACA;EACA;EACA;Ad6pDF;Ac1rDA;EAgCE;EACA;EACA;EACA;EACA;EAEA;Ad4pDF;AclsDA;EAwCY;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;Ad6pDZ;Ac/sDA;EAqDgB;EACA;EACA;EACA;EACA;EACA;EACA;Ad6pDhB;AcxtDA;EAiEgB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;Ad0pDhB;AACA;oDACoD;AchpDpD;EAIG;Ad+oDH;AcnpDA;EAQI;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;Ad6oDJ;Ac7pDA;EAuBI;EACA;EACA;EACA;EACA;EACA;AdyoDJ;AACA;oDACoD;Ac9nDpD;EAIG;Ad6nDH;AcjoDA;EAMI;EACA;EACA;EACA;EACA;Ad8nDJ;AACA;oDACoD;ActnDpD;;EZ1EC;EACA;AFosDD;Ac3nDA;;;;;;;;;;;;;;EZ1EC;EACA;AFqtDD;Ac5oDA;;;;;;;;;;EAOE;EACA;AdipDF;AczpDA;;EAWE;EACA;AdkpDF;Ac9pDA;;;;EZ1EC;EACA;AF8uDD;AcrqDA;;;;EZ1EC;EACA;AFqvDD;Ac5qDA;;;;EZ1EC;EACA;AF4vDD;AcnrDA;;;;EZ1EC;EACA;AFmwDD;AACA;oDACoD;AcvpDpD;EACC;EACA;EACG;EACE;EACA;EAGL;EACA;AdupDD;AchqDA;;;;;;;EAcE;Ad2pDF;AczqDA;;EAiBE;Ad4pDF;Ac7qDA;;EAsBG;Ad2pDH;AcjrDA;;EAwBI;Ad6pDJ;AACA;oDACoD;AACpD;oDACoD;AcppDpD;EAGG;EdopDD,wDAAwD;EElzDzD;EFozDC,0BAA0B;EElzD3B;EAYC;EACG;EACK;AFyyDV;Ac9pDA;EAOI;Ad0pDJ;AACA;oDACoD;AclpDpD;EAGE;EACA;AdkpDF;ActpDA;EAMG;EACA;EACA;EACA;EdmpDD,WAAW;EclpDV;EACA;EACA;EdopDD,gBAAgB;AAClB;AcjqDA;EAcI;EAEG;EdqpDL,WAAW;EcppDT;EACA;EACA;EdspDF,WAAW;EcrpDT;EACA;EACA;EACA;AdupDJ;Ac9qDA;EAyBK;EACA;EACA;EACA;EAEA;EAEA;AdspDL;ActrDA;EAmCK;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AdspDL;AcjsDA;EA8CM;EACA;EACA;AdspDN;AchpDE;;EAII;AdgpDN;Ac1oDE;EAGG;EACA;Ed0oDH,WAAW;AACb;Ac/oDE;EAMI;EACA;Ad4oDN;AACA;oDACoD;AACpD;oDACoD;Ac3nDpD;;;;;EAMM;Ad4nDN;AACA;oDACoD;AACpD;oDACoD;Ae38DpD;;EACC;EACA;EACA;EACA;EACG;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;Af88DJ;Ae39DA;;EAgBE;EACA;Af+8DF;Aeh+DA;;;;EAsBE;EACA;EACK;EACL;Efg9DA,4BAA4B;EAC5B;;;;;GAKC;AACH;Aeh/DA;;;;EAyCG;Af68DH;Aet/DA;;EA6CE;EbAA;EACA;EACE;EACK;EaDP;EACA;Afg9DF;AehgEA;;EAoDE;EACA;EbRA;EACA;EACE;EACK;AFy9DT;AezgEA;;EAwDG;Afq9DH;AACA;oDACoD;Ae/8DpD;;;;;;EAGG;EACA;Afo9DH;Aex9DA;;;;;;EASG;EACA;Afu9DH;AACA;oDACoD;Ael9DpD;;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;Afo9DF;Aeh9DA;EACC;EACA;EACG;Afk9DJ;Aer9DA;;EAKE;Afo9DF;Aez9DA;EAQE;Afo9DF;Ae59DA;EAWE;Afo9DF;Aej9DA;EACC;EACA;Afm9DD;Aer9DA;EAIE;Afo9DF;Aex9DA;EAOE;Afo9DF;AACA;oDACoD;Ae78DhD;;;;EblFF;EACA;EACE;EACK;AFqiET;Aet9DI;;;;EblFF;EACA;EACE;EACK;AF8iET;Aer9DI;;EAEQ;Afu9DZ;Ael9DI;;EAEQ;Afo9DZ;Aez8DA;EAEK;Af08DL;Ae58DA;EAIG;Af28DH;Ae/8DA;;EASG;EACA;Af08DH;Aep9DA;;;;EAaG;Af68DH;Ae19DA;;EbhHE;EACA;EACE;EACK;AF8kET;Ae78DQ;;EAEQ;EbtId;EACA;EACE;EACK;AFslET;Ae78DQ;;EAEQ;Eb9Id;EACA;EACE;EACK;AF8lET;Aev8DQ;Efy8DN;;;aAGW;AACb;Ae78DQ;EAMQ;EbhKd;EACA;EACE;EACK;AF2mET;Aez8DQ;EAEQ;Af08DhB;Aer8DQ;Efu8DN;;;aAGW;AACb;Ae38DQ;EAMQ;EblLd;EACA;EACE;EACK;AF2nET;Aev8DQ;EAEQ;Afw8DhB;Ael8DA;Eb/LE;EACA;EACE;EACK;AFooET;Aex8DA;Eb/LE;EACA;EACE;EACK;AF0oET;Ae98DA;Eb/LE;EACA;EACE;EACK;AFgpET;Aep9DA;Eb/LE;EACA;EACE;EACK;AFspET;Ael8DA;;;;;;;;EAEE;Af08DF;AACA;oDACoD;AACpD;oDACoD;AgBptEpD;EACC;EACA;EACA;Ed+HA;EACG;EACC;EACC;EACG;EcjIR;EACA;EAGA;AhBwtED;AgBjuEA;;;;;EAWE;EACA;AhB6tEF;AgBzuEA;EAeE;EACA;EACA;EACA;EACA;EACA;AhB6tEF;AgBjvEA;EAwBE;EACA;EACA;EAEA;EACA;EACA;AhB2tEF;AgBzvEA;EAiCE;EACA;EACA;EAEA;EACA;AhB0tEF;AgBhwEA;EAwCG;EACA;EACA;EACA;EACA;EACA;AhB2tEH;AgBxwEA;EAgDI;EACA;EACA;EACA;AhB2tEJ;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AiBzxEpD;EAGC;EACA;EACA;EACA;EACA;EACA;EACA;AjByxED;AiBrxEE;EACC;EACA;AjBuxEH;AiBtyEA;EAkBG;AjBuxEH;AE5pEC;;EAEC;EACA;AF8pEF;AE5pEC;EACC;AF8pEF;AiBjzEA;EAuBK;EAIA;AjB0xEL;AiBrzEA;EAyBM;AjB+xEN;AiBxzEA;;EAiCK;EACA;EACA;AjB2xEL;AiB9zEA;;;;EAwCI;EACA;AjB4xEJ;AACA;oDACoD;AiBlxEjD;EACC;EACA;AjBoxEJ;AACA;oDACoD;AiB5wEpD;EACC;EACA;EfoCA;EACG;EACK;AF2uET;AiBzwEA;;;;EAEE;EACA;AjB6wEF;AiBhxEA;;EAME;EACA;AjB8wEF;AACA;oDACoD;AiB3wEpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AjB6wED;AACA;oDACoD;AiB1wEpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AjB4wED;AACA;oDACoD;AiBzwEpD;;;;EAGE;EfbD;EACG;EACK;AF0xET;AACA;oDACoD;AiBjwEpD;EAEE;EACA;EACA;EACA;AjBkwEF;AiBhwEG;EACC;EACA;AjBkwEJ;AiB3wEA;;EAgBI;EACA;EACA;EACA;AjB+vEJ;AiBlxEA;EAsBI;AjB+vEJ;AACA;oDACoD;AACpD;oDACoD;AiBnvEpD;EAEE;EACA;EACA;EACA;AjBovEF;AiBjvEG;EACC;EACA;AjBmvEJ;AACA;oDACoD;AkBx6EpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;AlBy6ED;AkBn7EA;EAYE;AlB06EF;AkBt7EA;EAmBY;EACA;EACA;ElBs6EV,WAAW;AACb;AkB57EA;;EAyBE;AlBu6EF;AkBh8EA;;EA4BE;EACA;EACA;EACA;EACA;EACA;AlBw6EF;AkBz8EA;;EAmCG;EACA;EACA;EACA;AlB06EH;AkBh9EA;EA0CE;EACA;EACA;EACA;EACA;EACA;AlBy6EF;AkB95EA;;;;EAEE;EACA;AlBk6EF;AkBr6EA;;;;;;;;EAKG;AlB06EH;AkB/6EA;;;;;;;;EAOI;AlBk7EJ;AkBz7EA;;;;EAWG;EACA;AlBo7EH;AACA;oDACoD;AkB96EpD;EAEE;EACA;EACA;EACA;EACA;AlB+6EF;AkBr7EA;;EAcG;EACA;AlB26EH;AACA;oDACoD;AkBt6EpD;;EAIG;EACA;AlBs6EH;AACA;oDACoD;AACpD;oDACoD;AmB/gFpD;EAGG;AnB+gFH;AoBzhFA;EAEE;EAIA;ApBuhFF;AoB7hFA;EAQG;EACA;EACA;EACA;EACA;ApBwhFH;AoBpiFA;EAcI;EACA;EACA;ApByhFJ;AoBziFA;EAuBG;ApBqhFH;AoB5iFA;EA0BG;ApBqhFH;AoB/iFA;EA8BG;ApBohFH;AoBljFA;;EAkCI;EACA;ApBohFJ;AoBvjFA;;;;EAqCK;ApBwhFL;AoB9gFA;EAGG;EACA;EACA;ApB8gFH;AoB1gFA;EAMK;EACA;ApBugFL;AoBhgFA;EAIG;EACA;ApB+/EH;AoBpgFA;EAQK;EACA;ApB+/EL;AqB9kFA;EAEE;EACA;ArB+kFF;AqBllFA;EAMG;EACA;EACA;EACA;EACA;EACA;ArB+kFH;AqB1lFA;EAaI;EACA;EACA;ArBglFJ;AqB/kFI;;EACC;EACA;ArBklFL;AqB5kFI;EACC;EACA;ArB8kFL;AqB5kFI;EACC;EACA;ArB8kFL;AqB5mFA;EAkCI;EACA;EAEA;EACA;EACA;ArB4kFJ;AqBnkFA;EAGG;EACA;EACA;EACA;ArBmkFH;AqB9jFA;EACC;IAKI;IACA;ErB4jFH;AACF;AqBrjFA;EACC;IAKI;IACA;ErBmjFH;AACF;AsB7nFA;EAGG;AtB6nFH;AuBxoFA;EAEE;AvByoFF;AwB3oFA;EAEE;EACA;AxB4oFF;AwB/oFA;EAKG;EACA;AxB6oFH;AyBnpFA;EAIE;EACA;EACA;EAEA;AzBipFF;AyBzpFA;EAUG;EACA;EAEA;EACA;AzBipFH;AyB/pFA;EAoBG;EACA;EACA;EACA;AzB8oFH;AyBrqFA;EA0BG;EACA;EACA;EACA;AzB8oFH;AyB3qFA;EAiCG;EACA;EACA;EAEA;EACA;EAEA;AzB2oFH;AyBnrFA;EA2CG;EAEA;AzB0oFH;AyBvrFA;EAiDG;EACA;AzByoFH;AyB3rFA;EAsDG;EACA;AzBwoFH;AyBloFA;EAGG;EACA;EACA;EACA;EACA;EACA;EACA;AzBkoFH;AyB9nFA;;EAGG;EzB+nFD,wDAAwD;EE1oFzD;EF4oFC,0BAA0B;EE1oF3B;EAYC;EACG;EACK;AFioFV;AyBzoFA;;EvBDC;EACA;AF8oFD;AyB9oFA;;EAUI;EACA;AzBwoFJ;AyBnpFA;;EAcI;AzByoFJ;AyBvpFA;;EAiBI;AzB0oFJ;AyBpoFA;;EAGG;EACA;AzBqoFH;A0B1uFA;EAIE;EACA;EACA;EAEA;A1BwuFF;A0BhvFA;EAWG;EACA;EACA;EACA;EACA;A1BwuFH;A0BvvFA;EAkBG;EAEA;EACA;A1BuuFH;A0B5vFA;EAwBG;EACA;A1BuuFH;A0BhwFA;EA6BG;EACA;A1BsuFH;A0BpwFA;EAsCK;EACA;EACA;EACA;A1BiuFL;A0BhuFK;EACC;EACA;EACA;EACA;EACA;A1BkuFN;A0BztFA;;EAGG;E1B0tFD,wDAAwD;EEntFzD;EFqtFC,0BAA0B;EEntF3B;EAYC;EACG;EACK;AF0sFV;A0BpuFA;;ExBiBC;EACA;AFutFD;A0BzuFA;;EAUI;EACA;A1BmuFJ;A0B7tFA;EAGG;EACA;A1B6tFH;AACA;oDACoD;A2BpvFpD;EACC;EACA;EACA;EACA;EACA;EACA;EzByEA;EACG;EACC;EACC;EACG;EyB3ER;EACA;EACA;EACA;EACA;A3B0vFD;A2BxvFC;EACC;EACA;EACA;EACA;A3B0vFF;A2BvvFC;EACC;EACA;EACA;A3ByvFF;A2BjxFA;EA4BQ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;A3BwvFR;A2B7xFA;EAwCY;A3BwvFZ;A2BvvFY;;EACI;EACA;A3B0vFhB;A2B5vFY;;EAIQ;A3B4vFpB;A2BzyFA;EAmDY;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;A3ByvFZ;AACA;oDACoD;A2BnvFpD;EzBnBC;EACG;EACK;AFywFT;A2BjvFA;;;;;;;;;;;EAEE;EACA;A3B4vFF;A2B/vFA;;EAQG;A3B2vFH;A2BnwFA;EAaE;A3ByvFF;A2BtwFA;EAiBE;A3BwvFF;A2BzwFA;EAqBE;A3BuvFF;A2B5wFA;EAyBE;A3BsvFF","sources":["webpack://TL/TL.Timeline.less","webpack://TL/./src/less/Typography.less","webpack://TL/./src/less/core/Mixins.less","webpack://TL/./src/less/icons/Icons.less","webpack://TL/./src/less/core/TL.less","webpack://TL/./src/less/ui/TL.MenuBar.less","webpack://TL/./src/less/ui/TL.MenuBar.Button.less","webpack://TL/./src/less/ui/TL.Message.less","webpack://TL/./src/less/timenav/TL.TimeNav.less","webpack://TL/./src/less/timenav/TL.TimeMarker.less","webpack://TL/./src/less/timenav/TL.TimeEra.less","webpack://TL/./src/less/timenav/TL.TimeGroup.less","webpack://TL/./src/less/timenav/TL.TimeAxis.less","webpack://TL/./src/less/animation/TL.Animate.less","webpack://TL/./src/less/slider/TL.Slide.less","webpack://TL/./src/less/slider/TL.SlideNav.less","webpack://TL/./src/less/slider/TL.StorySlider.less","webpack://TL/./src/less/media/TL.Media.less","webpack://TL/./src/less/media/types/TL.Media.Text.less","webpack://TL/./src/less/media/types/TL.Media.Image.less","webpack://TL/./src/less/media/types/TL.Media.Twitter.less","webpack://TL/./src/less/media/types/TL.Media.Blockquote.less","webpack://TL/./src/less/media/types/TL.Media.Instagram.less","webpack://TL/./src/less/media/types/TL.Media.Profile.less","webpack://TL/./src/less/media/types/TL.Media.IFrame.less","webpack://TL/./src/less/media/types/TL.Media.Wikipedia.less","webpack://TL/./src/less/media/types/TL.Media.Website.less","webpack://TL/./src/less/TL.Timeline.Base.less"],"sourcesContent":["/*!\n\tTimeline JS 3 \n\t\n\tDesigned and built by Zach Wise for the Northwestern University Knight Lab\n\t\n\tThis Source Code Form is subject to the terms of the Mozilla Public\n\tLicense, v. 2.0. If a copy of the MPL was not distributed with this\n\tfile, You can obtain one at https://mozilla.org/MPL/2.0/.\n\n*/\n/* Includes \n================================================== */\n/*\tVARIABLES\n\tBASE\n----------------------------------------------------- */\n/* ICON PATH\n================================================== */\n/* TYPEFACE\n================================================== */\n/* COLOR SCHEME\n================================================== */\n/* UI COLOR\n================================================== */\n/* UI\n================================================== */\n/* Animation\n================================================== */\n/* GFX\n================================================== */\n/*!\n\tTimeline JS 3\n\n\tDesigned and built by Zach Wise for the Northwestern University Knight Lab\n\n\tThis Source Code Form is subject to the terms of the Mozilla Public\n\tLicense, v. 2.0. If a copy of the MPL was not distributed with this\n\tfile, You can obtain one at https://mozilla.org/MPL/2.0/.\n\n*/\n/* Includes\n================================================== */\n/*\tMixins.less\n\tSnippets of reusable CSS to develop faster and keep code readable\n * ----------------------------------------------------------------- */\n.tl-timeline {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n /* VCard\n\t================================================== */\n}\n.tl-timeline h1,\n.tl-timeline h2,\n.tl-timeline h3,\n.tl-timeline h4,\n.tl-timeline h5,\n.tl-timeline h6 {\n color: #000;\n}\n.tl-timeline h1,\n.tl-timeline h2,\n.tl-timeline h3 {\n font-size: 28px;\n line-height: 28px;\n}\n.tl-timeline h1 small,\n.tl-timeline h2 small,\n.tl-timeline h3 small {\n font-size: 24px;\n line-height: 24px;\n}\n.tl-timeline h4,\n.tl-timeline h5,\n.tl-timeline h6 {\n font-size: 24px;\n line-height: 24px;\n margin-bottom: 0px;\n}\n.tl-timeline h4 small,\n.tl-timeline h5 small,\n.tl-timeline h6 small {\n font-size: 15px;\n line-height: 15px;\n}\n.tl-timeline h2.tl-headline-title {\n font-size: 38px;\n line-height: 38px;\n}\n.tl-timeline h2.tl-headline-title small {\n display: block;\n margin-top: 5px;\n font-size: 24px;\n line-height: 24px;\n}\n.tl-timeline h2 {\n margin-top: 20px;\n margin-bottom: 5px;\n}\n.tl-timeline p {\n margin-top: 5px;\n margin-bottom: 10px;\n font-size: 15px;\n line-height: 1.42857143;\n color: #666666;\n}\n.tl-timeline p.lead {\n font-size: 24px;\n}\n.tl-timeline p a {\n /*\n\t\t\tcolor: lighten(@color-dark, 40%);\n\t\t\ttext-decoration: none;\n\t\t\tbackground-image: -moz-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: -webkit-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: -o-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: linear-gradient(to bottom, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-repeat: repeat-x;\n\t\t\tbackground-size: 2px 2px;\n\t\t\tbackground-position: 0 @base-font-size+2;\n\t\t\ttext-shadow: -2px -1px 0 white, 2px -1px 0 white, -2px 1px 0 white, 2px 1px 0 white;\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\tcolor:@color-theme;\n\t\t\t\ttext-decoration: none;\n\t\t\t}\n\t\t\t*/\n color: #666666;\n text-decoration: underline;\n}\n.tl-timeline p a:hover,\n.tl-timeline p a:focus {\n color: #c34528;\n}\n@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {\n .tl-timeline p a {\n text-decoration: underline;\n background-image: none;\n text-shadow: none;\n }\n .tl-timeline p a:hover,\n .tl-timeline p a:focus {\n color: #c34528;\n text-decoration: underline;\n }\n}\n.tl-timeline b,\n.tl-timeline strong {\n font-weight: bold;\n}\n.tl-timeline i,\n.tl-timeline em {\n font-style: italic;\n}\n.tl-timeline a {\n text-decoration: none;\n color: #c34528;\n}\n.tl-timeline a:hover {\n text-decoration: underline;\n color: #6e2717;\n}\n.tl-timeline .tl-caption,\n.tl-timeline .tl-credit,\n.tl-timeline .tl-slidenav-next,\n.tl-timeline .tl-slidenav-previous {\n font-size: 11px;\n line-height: 11px;\n}\n.tl-timeline .tl-caption a,\n.tl-timeline .tl-credit a,\n.tl-timeline .tl-slidenav-next a,\n.tl-timeline .tl-slidenav-previous a {\n color: #000;\n}\n.tl-timeline .tl-makelink {\n word-break: break-all;\n word-break: break-word;\n -webkit-hyphens: auto;\n -moz-hyphens: auto;\n hyphens: auto;\n}\n.tl-timeline blockquote,\n.tl-timeline blockquote p {\n font-family: \"Georgia\", \"Times New Roman\", Times, serif;\n color: #999999;\n font-size: 24px;\n line-height: 24px;\n text-align: left;\n background: transparent;\n border: 0px;\n padding: 0px;\n}\n.tl-timeline blockquote cite,\n.tl-timeline blockquote p cite {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 11px;\n color: #666666;\n display: block;\n text-align: right;\n font-style: normal;\n}\n.tl-timeline blockquote cite:before,\n.tl-timeline blockquote p cite:before {\n content: \"\\2014\";\n}\n.tl-timeline blockquote p:before {\n content: open-quote;\n display: inline-block;\n font-size: 28px;\n position: relative;\n top: 8px;\n margin-right: 5px;\n}\n.tl-timeline blockquote p:after {\n content: close-quote;\n display: inline-block;\n font-size: 28px;\n position: relative;\n top: 8px;\n margin-left: 3px;\n}\n.tl-timeline blockquote {\n margin: 10px;\n}\n.tl-timeline blockquote p {\n margin: 0;\n}\n.tl-timeline .vcard {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 15px;\n line-height: 15px;\n margin-bottom: 15px;\n margin-top: 10px;\n}\n.tl-timeline .vcard:before,\n.tl-timeline .vcard:after {\n display: table;\n content: \"\";\n}\n.tl-timeline .vcard:after {\n clear: both;\n}\n.tl-timeline .vcard .twitter-date {\n text-align: left;\n font-size: 11px;\n}\n.tl-timeline .vcard .author {\n float: right;\n}\n.tl-timeline .vcard a {\n color: #333333;\n text-decoration: none;\n}\n.tl-timeline .vcard a:hover {\n text-decoration: none;\n}\n.tl-timeline .vcard a:hover .fn,\n.tl-timeline .vcard a:hover .nickname {\n color: #c34528;\n}\n.tl-timeline .vcard .fn,\n.tl-timeline .vcard .nickname {\n padding-left: 42px;\n}\n.tl-timeline .vcard .fn {\n display: block;\n font-weight: bold;\n}\n.tl-timeline .vcard .nickname {\n margin-top: 1px;\n display: block;\n color: #666666;\n}\n.tl-timeline .vcard .avatar {\n float: left;\n display: block;\n width: 32px;\n height: 32px;\n}\n.tl-timeline .vcard .avatar img {\n -moz-border-radius: 5px;\n -webkit-border-radius: 5px;\n border-radius: 5px;\n}\n.tl-timeline .tl-text ul {\n padding: 0px;\n padding-left: 30px;\n margin: 0;\n}\n.tl-timeline .tl-text ul li {\n margin-bottom: 5px;\n}\n.tl-timeline .tl-button-calltoaction {\n cursor: pointer;\n font-weight: bold;\n padding-top: 10px;\n margin-bottom: 10px;\n padding-bottom: 10px;\n}\n.tl-timeline .tl-button-calltoaction .tl-button-calltoaction-text {\n display: inline-block;\n background-color: #c34528;\n color: #fff;\n padding: 10px 15px 10px 15px;\n border-radius: 7px;\n}\n.tl-timeline .tl-note {\n display: block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: italic;\n background-color: #fcf8e3;\n font-size: 15px;\n line-height: 17px;\n padding: 10px;\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n color: #8a6d3b;\n border: 1px solid #faebcc;\n text-shadow: none;\n}\n@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {\n .tl-timeline h1,\n .tl-timeline h2,\n .tl-timeline h3 {\n font-size: 28px;\n line-height: 28px;\n }\n}\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n .tl-timeline h1,\n .tl-timeline h2,\n .tl-timeline h3 {\n font-size: 24px;\n line-height: 24px;\n }\n}\n.tl-skinny h2 {\n margin-top: 0px;\n}\n/* Icons\n================================================== */\n@font-face {\n font-family: 'tl-icons';\n src: url('../css/icons/tl-icons.eot');\n src: url('../css/icons/tl-icons.eot?#iefix') format('embedded-opentype'), url('../css/icons/tl-icons.ttf') format('truetype'), url('../css/icons/tl-icons.woff2') format('woff2'), url('../css/icons/tl-icons.woff') format('woff'), url('../css/icons/tl-icons.svg#tl-icons') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n[class^=\"tl-icon-\"],\n[class*=\" tl-icon-\"] {\n font-family: 'tl-icons';\n speak: none;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.tl-icon-vine:after {\n content: \"\\e64d\";\n}\n.tl-icon-wikipedia:after {\n content: \"\\e64e\";\n}\n.tl-icon-chevron-right:after {\n content: \"\\e64f\";\n}\n.tl-icon-chevron-left:after {\n content: \"\\e650\";\n}\n.tl-icon-youtube-logo:after {\n content: \"\\e651\";\n}\n.tl-icon-foursquare:after {\n content: \"\\e652\";\n}\n.tl-icon-camera-retro:after {\n content: \"\\e653\";\n}\n.tl-icon-doc:after {\n content: \"\\e654\";\n}\n.tl-icon-weibo:after {\n content: \"\\e655\";\n}\n.tl-icon-resize-horizontal:after {\n content: \"\\e656\";\n}\n.tl-icon-resize-vertical:after {\n content: \"\\e657\";\n}\n.tl-icon-resize-full:after {\n content: \"\\e658\";\n}\n.tl-icon-resize-small:after {\n content: \"\\e659\";\n}\n.tl-icon-twitter:after {\n content: \"\\e62b\";\n}\n.tl-icon-google-plus:after {\n content: \"\\e62c\";\n}\n.tl-icon-video:after {\n content: \"\\e62d\";\n}\n.tl-icon-youtube:after {\n content: \"\\e62d\";\n}\n.tl-icon-plaintext:after {\n content: \"\\e62e\";\n}\n.tl-icon-storify:after {\n content: \"\\e62e\";\n}\n.tl-icon-image-v2:after {\n content: \"\\e62f\";\n}\n.tl-icon-quote-v2:after {\n content: \"\\e630\";\n}\n.tl-icon-zoom-in:after {\n content: \"\\e631\";\n}\n.tl-icon-zoom-out:after {\n content: \"\\e632\";\n}\n.tl-icon-list:after {\n content: \"\\e633\";\n}\n.tl-icon-music:after {\n content: \"\\e634\";\n}\n.tl-icon-spotify:after {\n content: \"\\e634\";\n}\n.tl-icon-location:after {\n content: \"\\e635\";\n}\n.tl-icon-googlemaps:after {\n content: \"\\e635\";\n}\n.tl-icon-web:after {\n content: \"\\e636\";\n}\n.tl-icon-share-v2:after {\n content: \"\\e637\";\n}\n.tl-icon-soundcloud:after {\n content: \"\\e639\";\n}\n.tl-icon-video-v2:after {\n content: \"\\e63a\";\n}\n.tl-icon-dailymotion:after {\n content: \"\\e63a\";\n}\n.tl-icon-tumblr:after {\n content: \"\\e63b\";\n}\n.tl-icon-lastfm:after {\n content: \"\\e63c\";\n}\n.tl-icon-github:after {\n content: \"\\e63d\";\n}\n.tl-icon-goback:after {\n content: \"\\e63e\";\n}\n.tl-icon-goend:after {\n content: \"\\e969\";\n}\n.tl-icon-prev2:after {\n content: \"\\ea23\";\n}\n.tl-icon-next2:after {\n content: \"\\ea24\";\n}\n.tl-icon-doc-v2:after {\n content: \"\\e63f\";\n}\n.tl-icon-googledrive:after {\n content: \"\\e640\";\n}\n.tl-icon-facebook:after {\n content: \"\\e641\";\n}\n.tl-icon-flickr:after {\n content: \"\\e642\";\n}\n.tl-icon-dribbble:after {\n content: \"\\e643\";\n}\n.tl-icon-image:after {\n content: \"\\e605\";\n}\n.tl-icon-vimeo:after {\n content: \"\\e606\";\n}\n.tl-icon-instagram:after {\n content: \"\\e644\";\n}\n.tl-icon-pinterest:after {\n content: \"\\e645\";\n}\n.tl-icon-arrow-left:after {\n content: \"\\e646\";\n}\n.tl-icon-arrow-down:after {\n content: \"\\e647\";\n}\n.tl-icon-arrow-up:after {\n content: \"\\e648\";\n}\n.tl-icon-arrow-right:after {\n content: \"\\e649\";\n}\n.tl-icon-share:after {\n content: \"\\e64a\";\n}\n.tl-icon-blockquote:after {\n content: \"\\e64b\";\n}\n.tl-icon-evernote:after {\n content: \"\\e64c\";\n}\n.tl-icon-mappin:after {\n content: \"\\e600\";\n}\n.tl-icon-swipe-right:after {\n content: \"\\e601\";\n}\n.tl-icon-swipe-left:after {\n content: \"\\e602\";\n}\n.tl-icon-touch-spread:after {\n content: \"\\e603\";\n}\n.tl-icon-touch-pinch:after {\n content: \"\\e604\";\n}\n/* Disable Text selection when dragging\n================================================== */\n.tl-dragging {\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n -o-user-select: none;\n user-select: none;\n}\n/* MenuBar \n================================================== */\n.tl-menubar {\n position: absolute;\n z-index: 11;\n text-align: center;\n color: #333;\n overflow: hidden;\n border-bottom-right-radius: 10px;\n border-top-right-radius: 10px;\n top: 100%;\n left: 50%;\n left: 0;\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* Color\n================================================== */\n/*\n.tl-sizebar.tl-sizebar-inverted {\n\tborder-bottom: 1px solid #FFF;\n\t//background-color:#000;\n\tcolor:#a5a5a5;\n\t.tl-sizebar-button {\n\t\tborder-left: 1px solid darken(@color-background, 70);\n\t\t//color:#a5a5a5;\n\t}\n\t.tl-sizebar-button:hover {\n\t\t//background:@color-theme;\n\t\tcolor:@color-background;\n\t}\n}\n.tl-sizebar.tl-sizebar-inverted:before {\n\tbackground-color:#000;\n\t//.gradient-vertical (rgba(0,0,0,0.25), rgba(0,0,0,1));\n\t//.translucent-background(rgb(0,0,0), .5);\n\tborder-top: 2px solid #000;\n\tanimation: invertToBlack 1s;\n\t-webkit-animation:invertToBlack 1s; \n}\n*/\n@keyframes invertToBlack {\n from {\n background-color: #FFF;\n }\n to {\n background-color: #000;\n }\n}\n@-webkit-keyframes invertToBlack {\n from {\n background: #FFF;\n }\n to {\n background: #000;\n }\n}\n@keyframes invertToWhite {\n from {\n background-color: #000;\n }\n to {\n background-color: #FFF;\n }\n}\n@-webkit-keyframes invertToWhite {\n from {\n background: #000;\n }\n to {\n background: #FFF;\n }\n}\n/* MenuBar Button\n================================================== */\n.tl-menubar-button {\n border: none;\n font-size: 18px;\n line-height: 18px;\n background-color: rgba(242, 242, 242, 0.9);\n cursor: pointer;\n padding: 5px 10px 5px 10px;\n display: inline-block;\n display: block;\n color: #bfbfbf;\n}\n.tl-menubar-button:disabled {\n opacity: 0.33;\n cursor: default;\n}\n.tl-menubar-button:hover,\n.tl-menubar-button:focus-visible {\n background: #333;\n color: #FFF;\n}\n.tl-menubar-button:hover:disabled,\n.tl-menubar-button:focus-visible:disabled {\n color: #bfbfbf;\n background-color: rgba(242, 242, 242, 0.9);\n}\n.tl-mobile .tl-menubar-button {\n display: block;\n}\n.tl-mobile .tl-menubar-button:hover {\n background-color: rgba(242, 242, 242, 0.67);\n color: #737373;\n}\n.tl-mobile .tl-menubar-button:active {\n background: #c34528;\n color: #FFF;\n}\n@keyframes invertToBlack {\n from {\n background-color: #FFF;\n }\n to {\n background-color: #000;\n }\n}\n@-webkit-keyframes invertToBlack {\n from {\n background: #FFF;\n }\n to {\n background: #000;\n }\n}\n@keyframes invertToWhite {\n from {\n background-color: #000;\n }\n to {\n background-color: #FFF;\n }\n}\n@-webkit-keyframes invertToWhite {\n from {\n background: #000;\n }\n to {\n background: #FFF;\n }\n}\n/* MESSAGE \n================================================== */\n.tl-message,\n.tl-message-full {\n width: 100%;\n height: 100%;\n position: absolute;\n display: table;\n overflow: hidden;\n top: 0px;\n left: 0px;\n z-index: 99;\n margin: auto;\n text-align: center;\n}\n.tl-message .tl-message-container,\n.tl-message-full .tl-message-container {\n padding: 20px;\n margin: 20px;\n text-align: center;\n vertical-align: middle;\n display: table-cell;\n}\n.tl-message .tl-message-container .tl-message-content,\n.tl-message-full .tl-message-container .tl-message-content {\n color: #666;\n text-align: center;\n font-size: 11px;\n line-height: 13px;\n text-transform: uppercase;\n margin-top: 7.5px;\n margin-bottom: 7.5px;\n text-shadow: 1px 1px 1px #FFF;\n}\n.tl-message .tl-message-container .tl-message-content strong,\n.tl-message-full .tl-message-container .tl-message-content strong {\n text-transform: uppercase;\n}\n.tl-message .tl-message-container .tl-loading-icon,\n.tl-message-full .tl-message-container .tl-loading-icon {\n width: 30px;\n height: 30px;\n background-color: #666;\n vertical-align: middle;\n -webkit-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);\n -moz-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);\n margin-left: auto;\n margin-right: auto;\n text-align: center;\n -webkit-animation: rotateplane 1.2s infinite ease-in-out;\n animation: rotateplane 1.2s infinite ease-in-out;\n}\n@-webkit-keyframes rotateplane {\n 0% {\n -webkit-transform: perspective(120px);\n }\n 50% {\n -webkit-transform: perspective(120px) rotateY(180deg);\n }\n 100% {\n -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);\n }\n}\n@keyframes rotateplane {\n 0% {\n transform: perspective(120px) rotateX(0deg) rotateY(0deg);\n }\n 50% {\n transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);\n }\n 100% {\n transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);\n }\n}\n.tl-message-full {\n background-color: hsla(0, 0%, 100%, 0.8);\n}\n.tl-message-full [class^=\"tl-icon-\"],\n.tl-message-full [class*=\" tl-icon-\"] {\n color: #666;\n font-size: 72px;\n}\n.tl-message-full .tl-message-container .tl-message-content {\n font-size: 22px;\n line-height: 22px;\n text-shadow: none;\n color: #666;\n text-transform: none;\n font-weight: normal;\n}\n.tl-message-full .tl-message-container .tl-message-content .tl-button {\n display: inline-block;\n cursor: pointer;\n background-color: #FFF;\n color: #333;\n padding: 10px;\n margin-top: 10px;\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n}\n/* TL.TimeNav\n================================================== */\n.tl-timenav {\n width: 100%;\n background-color: #f2f2f2;\n position: relative;\n overflow: hidden;\n border-top: 1px solid #e5e5e5;\n}\n.tl-timenav .tl-timenav-line {\n position: absolute;\n top: 0;\n left: 50%;\n width: 1px;\n height: 100%;\n background-color: #d9d9d9;\n z-index: 2;\n display: none;\n}\n.tl-timenav .tl-timenav-line:before,\n.tl-timenav .tl-timenav-line:after {\n font-family: 'tl-icons';\n speak: none;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n color: #c34528;\n font-size: 32px;\n line-height: 32px;\n position: absolute;\n left: -14px;\n}\n.tl-timenav .tl-timenav-line:before {\n top: -10px;\n}\n.tl-timenav .tl-timenav-line:after {\n content: \"\\e648\";\n bottom: 24px;\n}\n.tl-timenav .tl-timenav-slider {\n position: absolute;\n height: 100%;\n width: 100%;\n top: 0;\n}\n.tl-timenav .tl-timenav-slider.tl-timenav-slider-animate {\n -webkit-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timenav .tl-timenav-slider .tl-timenav-slider-background {\n position: absolute;\n height: 100%;\n width: 100%;\n cursor: move;\n z-index: 6;\n}\n.tl-timenav .tl-timenav-slider .tl-timenav-container-mask {\n position: absolute;\n height: 100%;\n top: 0;\n}\n.tl-timenav .tl-timenav-slider .tl-timenav-container-mask .tl-timenav-container {\n position: absolute;\n height: 100%;\n}\n.tl-timenav .tl-timenav-slider .tl-timenav-container-mask .tl-timenav-container .tl-timenav-item-container {\n position: absolute;\n height: 100%;\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* TL.TimeMarker\n================================================== */\n.tl-timemarker {\n height: 100%;\n position: absolute;\n top: 0;\n left: 0;\n cursor: pointer;\n /* Animate Left Width and Top\n\t================================================== */\n -webkit-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n /* Timespan\n\t================================================== */\n /* Lines\n\t================================================== */\n /* Content\n\t================================================== */\n /* Hover | Focus State\n\t================================================== */\n /* Hover | Focus Active State\n\t================================================== */\n /* Focus-visible State\n ================================================== */\n /* Active Markers\n\t================================================== */\n /* Markers with End Dates\n\t================================================== */\n /* Markers with End Dates and Hover\n\t================================================== */\n /* Markers with End Dates and Active\n\t================================================== */\n /* Markers with End Dates and Active and Hover\n\t================================================== */\n}\n.tl-timemarker.tl-timemarker-fast {\n -webkit-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timemarker.tl-timemarker-fast .tl-timemarker-content-container {\n -webkit-transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timemarker.tl-timemarker-fast .tl-timemarker-timespan {\n -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timemarker .tl-timemarker-timespan {\n pointer-events: none;\n position: absolute;\n margin: 0;\n width: 100%;\n height: 100%;\n background-color: rgba(229, 229, 229, 0.15);\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timemarker .tl-timemarker-timespan .tl-timemarker-timespan-content {\n display: none;\n position: absolute;\n width: 100%;\n background-color: #e5e5e5;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n height: 100px;\n box-sizing: border-box;\n}\n.tl-timemarker .tl-timemarker-line-right {\n display: none;\n right: 0px;\n}\n.tl-timemarker .tl-timemarker-line-left {\n width: 1px;\n left: 0px;\n}\n.tl-timemarker .tl-timemarker-line-left,\n.tl-timemarker .tl-timemarker-line-right {\n margin-top: 7px;\n -webkit-box-sizing: border-box;\n /* Safari/Chrome, other WebKit */\n -moz-box-sizing: border-box;\n /* Firefox, other Gecko */\n box-sizing: border-box;\n border-left: 1px solid #d9d9d9;\n z-index: 5;\n content: \" \";\n position: absolute;\n height: 100%;\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -khtml-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n box-shadow: 1px 1px 1px #FFF;\n}\n.tl-timemarker .tl-timemarker-line-left:after,\n.tl-timemarker .tl-timemarker-line-right:after {\n display: block;\n content: \" \";\n position: absolute;\n left: -4px;\n bottom: 0px;\n height: 6px;\n width: 6px;\n background-color: #919191;\n z-index: 8;\n -webkit-border-radius: 50%;\n -moz-border-radius: 50%;\n border-radius: 50%;\n}\n.tl-timemarker .tl-timemarker-content-container {\n position: absolute;\n background-color: #e5e5e5;\n border: 0;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n height: 100%;\n width: 100px;\n overflow: hidden;\n z-index: 6;\n -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n box-sizing: border-box;\n border: 1px solid #d9d9d9;\n box-shadow: 1px 1px 1px #FFF;\n}\n.tl-timemarker .tl-timemarker-content-container:hover {\n z-index: 9;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content {\n position: relative;\n overflow: hidden;\n height: 100%;\n z-index: 8;\n padding: 5px;\n -webkit-box-sizing: border-box;\n /* Safari/Chrome, other WebKit */\n -moz-box-sizing: border-box;\n /* Firefox, other Gecko */\n box-sizing: border-box;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text {\n overflow: hidden;\n position: relative;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline,\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p {\n display: -webkit-box;\n line-clamp: 2;\n -webkit-line-clamp: 2;\n box-orient: vertical;\n -webkit-box-orient: vertical;\n text-overflow: ellipsis;\n font-size: 12px;\n line-height: 12px;\n height: 100%;\n overflow: hidden;\n font-weight: normal;\n margin: 0;\n color: #bfbfbf;\n position: relative;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after,\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p.tl-headline-fadeout:after {\n content: \"\";\n text-align: right;\n position: absolute;\n bottom: 0;\n right: 0;\n width: 100%;\n height: 50%;\n background: -moz-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* FF3.6+ */\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(229, 229, 229, 0)), color-stop(50%, #e5e5e5));\n /* Chrome,Safari4+ */\n background: -webkit-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* Chrome10+,Safari5.1+ */\n background: -o-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* Opera 11.10+ */\n background: -ms-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* IE10+ */\n background: linear-gradient(to bottom, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* W3C */\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);\n /* IE6-9 */\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container {\n float: left;\n max-width: 24px;\n max-height: 24px;\n overflow: hidden;\n margin-right: 5px;\n height: 100%;\n -webkit-box-sizing: border-box;\n /* Safari/Chrome, other WebKit */\n -moz-box-sizing: border-box;\n /* Firefox, other Gecko */\n box-sizing: border-box;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media {\n max-width: 24px;\n max-height: 100%;\n opacity: 0.25;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=\"tl-icon-\"],\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=\" tl-icon-\"] {\n display: block;\n font-size: 24px;\n color: #bfbfbf;\n margin-top: 0px;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-icon-wikipedia {\n font-size: 16px;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-text h2.tl-headline {\n display: block;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-media-container [class^=\"tl-icon-\"],\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-media-container [class*=\" tl-icon-\"] {\n font-size: 12px;\n}\n.tl-timemarker:hover .tl-timemarker-timespan,\n.tl-timemarker:focus .tl-timemarker-timespan {\n background-color: rgba(191, 191, 191, 0.25);\n}\n.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-timespan-content,\n.tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-timespan-content {\n background-color: #bfbfbf;\n}\n.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left,\n.tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-left,\n.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right,\n.tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-right {\n border-color: #a6a6a6;\n}\n.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left:after,\n.tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-left:after,\n.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right:after,\n.tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-right:after {\n background-color: #3d3d3d;\n}\n.tl-timemarker:hover .tl-timemarker-content-container,\n.tl-timemarker:focus .tl-timemarker-content-container {\n background-color: #737373;\n border-color: #a6a6a6;\n -webkit-transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timemarker:hover .tl-timemarker-content-container.tl-timemarker-content-container-small,\n.tl-timemarker:focus .tl-timemarker-content-container.tl-timemarker-content-container-small {\n width: 200px;\n}\n.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline,\n.tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline {\n color: #FFF;\n}\n.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after,\n.tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after {\n background: -moz-linear-gradient(top, rgba(115, 115, 115, 0) 0%, #737373 80%);\n /* FF3.6+ */\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(115, 115, 115, 0)), color-stop(80%, #737373));\n /* Chrome,Safari4+ */\n background: -webkit-linear-gradient(top, rgba(115, 115, 115, 0) 0%, #737373 80%);\n /* Chrome10+,Safari5.1+ */\n background: -o-linear-gradient(top, rgba(115, 115, 115, 0) 0%, #737373 80%);\n /* Opera 11.10+ */\n background: -ms-linear-gradient(top, rgba(115, 115, 115, 0) 0%, #737373 80%);\n /* IE10+ */\n background: linear-gradient(to bottom, rgba(115, 115, 115, 0) 0%, #737373 80%);\n /* W3C */\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);\n /* IE6-9 */\n}\n.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media,\n.tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media {\n opacity: 1;\n}\n.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=\"tl-icon-\"],\n.tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=\"tl-icon-\"],\n.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=\" tl-icon-\"],\n.tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=\" tl-icon-\"] {\n color: #FFF;\n}\n.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after,\n.tl-timemarker:focus.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after {\n background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* FF3.6+ */\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(80%, #FFF));\n /* Chrome,Safari4+ */\n background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* Chrome10+,Safari5.1+ */\n background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* Opera 11.10+ */\n background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* IE10+ */\n background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* W3C */\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);\n /* IE6-9 */\n}\n.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-left,\n.tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-left,\n.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-right,\n.tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-right {\n border-color: #000;\n}\n.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-left:after,\n.tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-left:after,\n.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-right:after,\n.tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-right:after {\n background-color: #000;\n}\n.tl-timemarker:focus-visible {\n outline: none;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-timespan {\n background-color: rgba(255, 255, 255, 0.5);\n z-index: 8;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-timespan .tl-timemarker-timespan-content {\n background-color: #333;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left,\n.tl-timemarker.tl-timemarker-active .tl-timemarker-line-right {\n border-color: rgba(51, 51, 51, 0.5);\n border-width: 1px;\n z-index: 8;\n box-shadow: 0px 1px 3px rgba(145, 145, 145, 0.5);\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left:after,\n.tl-timemarker.tl-timemarker-active .tl-timemarker-line-right:after {\n background-color: #333;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container {\n background-color: #FFF;\n color: #333;\n z-index: 9;\n border-color: rgba(51, 51, 51, 0.5);\n box-shadow: 1px 1px 3px rgba(145, 145, 145, 0.5);\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline {\n color: #333;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after {\n background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* FF3.6+ */\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(80%, #FFF));\n /* Chrome,Safari4+ */\n background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* Chrome10+,Safari5.1+ */\n background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* Opera 11.10+ */\n background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* IE10+ */\n background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* W3C */\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);\n /* IE6-9 */\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media {\n opacity: 1;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=\"tl-icon-\"],\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=\" tl-icon-\"] {\n color: #333;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-timespan-content {\n display: block;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-line-left,\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-line-right {\n z-index: 5;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan:after {\n display: block;\n content: \" \";\n position: absolute;\n left: 0px;\n bottom: -7px;\n height: 6px;\n width: 100%;\n background-color: rgba(115, 115, 115, 0.15);\n z-index: 6;\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-content-container.tl-timemarker-content-container-long {\n box-shadow: none;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-line-right {\n display: block;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-line-left {\n box-shadow: none;\n}\n.tl-timemarker.tl-timemarker-with-end:hover .tl-timemarker-timespan:after {\n background-color: rgba(0, 0, 0, 0.35);\n}\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-timespan:after {\n background-color: rgba(51, 51, 51, 0.5);\n}\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left,\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-right {\n border-width: 1px;\n}\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left:after,\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-right:after {\n background-color: #333 !important;\n}\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left {\n box-shadow: none;\n}\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active:hover .tl-timemarker-timespan:after {\n background-color: rgba(51, 51, 51, 0.5);\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* TL.TimeMarker\n================================================== */\n.tl-timeera {\n height: 100%;\n height: 40px;\n position: absolute;\n bottom: 0;\n left: 0;\n pointer-events: none;\n z-index: 3;\n /* Animate Left Width and Top\n\t================================================== */\n -webkit-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n /* Timespan\n\t================================================== */\n /* Content\n\t================================================== */\n}\n.tl-timeera.tl-timeera-fast {\n -webkit-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timeera .tl-timeera-background {\n position: absolute;\n background-color: #28a6c3;\n width: 100%;\n height: 100%;\n opacity: 1;\n}\n.tl-timeera.tl-timeera-color0 .tl-timeera-background {\n background-color: #c34528;\n}\n.tl-timeera.tl-timeera-color1 .tl-timeera-background {\n background-color: #28a6c3;\n}\n.tl-timeera.tl-timeera-color2 .tl-timeera-background {\n background-color: #2832c3;\n}\n.tl-timeera.tl-timeera-color3 .tl-timeera-background {\n background-color: #28c36c;\n}\n.tl-timeera.tl-timeera-color4 .tl-timeera-background {\n background-color: #286dc3;\n}\n.tl-timeera.tl-timeera-color5 .tl-timeera-background {\n background-color: #28c3a7;\n}\n.tl-timeera .tl-timeera-content-container {\n position: absolute;\n border: 0;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n height: 100%;\n width: 100px;\n overflow: hidden;\n -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n box-sizing: border-box;\n border: 1px solid #d9d9d9;\n}\n.tl-timeera .tl-timeera-content-container .tl-timeera-content {\n position: relative;\n overflow: hidden;\n height: 100%;\n padding: 5px;\n -webkit-box-sizing: border-box;\n /* Safari/Chrome, other WebKit */\n -moz-box-sizing: border-box;\n /* Firefox, other Gecko */\n box-sizing: border-box;\n}\n.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text {\n overflow: hidden;\n position: relative;\n height: 100%;\n}\n.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text h2.tl-headline {\n bottom: 0px;\n position: absolute;\n display: -webkit-box;\n line-clamp: 4;\n -webkit-line-clamp: 4;\n box-orient: vertical;\n -webkit-box-orient: vertical;\n text-overflow: ellipsis;\n font-size: 10px;\n line-height: 10px;\n overflow: hidden;\n font-weight: normal;\n margin: 0;\n color: #FFF;\n margin-left: 10px;\n}\n.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text h2.tl-headline.tl-headline-fadeout:after {\n content: \"\";\n text-align: right;\n position: absolute;\n bottom: 0;\n right: 0;\n width: 100%;\n height: 50%;\n background: -moz-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* FF3.6+ */\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(229, 229, 229, 0)), color-stop(50%, #e5e5e5));\n /* Chrome,Safari4+ */\n background: -webkit-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* Chrome10+,Safari5.1+ */\n background: -o-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* Opera 11.10+ */\n background: -ms-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* IE10+ */\n background: linear-gradient(to bottom, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* W3C */\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);\n /* IE6-9 */\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* TL.TimeMarker\n================================================== */\n.tl-timegroup {\n width: 100%;\n position: absolute;\n top: 0;\n left: 0;\n background-color: #f2f2f2;\n display: -ms-flexbox;\n display: -webkit-flex;\n display: flex;\n align-items: center;\n -ms-flex-align: center;\n -webkit-align-items: center;\n -webkit-box-align: center;\n /* Animate Left Width and Top\n\t================================================== */\n -webkit-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timegroup .tl-timegroup-message {\n color: #e0e0e0;\n text-shadow: #FFF 0px 2px 2px;\n margin-left: 80px;\n}\n.tl-timegroup.tl-timegroup-alternate {\n background-color: #fafafa;\n}\n.tl-timegroup.tl-timegroup-hidden {\n display: none;\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* TL.TimeAxis\n================================================== */\n.tl-timeaxis-background {\n height: 39px;\n width: 100%;\n position: absolute;\n bottom: 0;\n left: 0;\n background-color: #FFF;\n border-top: 1px solid #e5e5e5;\n z-index: 2;\n}\n.tl-timeaxis {\n height: 39px;\n width: 100%;\n position: absolute;\n bottom: 0;\n left: 0;\n z-index: 3;\n}\n.tl-timeaxis .tl-timeaxis-content-container {\n position: relative;\n bottom: 0;\n height: 39px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor {\n opacity: 0;\n position: absolute;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick {\n position: absolute;\n display: block;\n top: 0;\n left: 0;\n text-align: center;\n font-weight: normal;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick .tl-timeaxis-tick-text,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text {\n display: inline-block;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before {\n content: \"|\";\n display: block;\n color: #FFF;\n width: 1px;\n overflow: hidden;\n border-left: 1px solid #bfbfbf;\n text-align: center;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major.tl-timeaxis-animate .tl-timeaxis-tick,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor.tl-timeaxis-animate .tl-timeaxis-tick {\n -webkit-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major.tl-timeaxis-animate-opacity .tl-timeaxis-tick,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor.tl-timeaxis-animate-opacity .tl-timeaxis-tick {\n -webkit-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major {\n z-index: 1;\n background-color: #FFF;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick {\n font-size: 12px;\n line-height: 14px;\n color: #737373;\n width: 100px;\n margin-left: -50px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before {\n border-color: #a6a6a6;\n font-size: 18px;\n line-height: 18px;\n margin-bottom: 2px;\n margin-left: 50px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick {\n font-size: 11px;\n line-height: 13px;\n color: #bfbfbf;\n width: 50px;\n margin-left: -25px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text {\n opacity: 0;\n white-space: normal;\n padding-left: 2px;\n padding-right: 2px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text span {\n display: block;\n font-size: 9px;\n line-height: 9px;\n margin-top: -2px;\n color: #e6e6e6;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before {\n font-size: 9px;\n line-height: 9px;\n margin-left: 25px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick.tl-timeaxis-tick-hidden .tl-timeaxis-tick-text {\n opacity: 0 !important;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick.tl-timeaxis-tick-hidden:before {\n opacity: 0.33;\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n.tlanimate {\n -webkit-transform: translateZ(0);\n -webkit-perspective: 1000;\n -webkit-backface-visibility: hidden;\n}\n.tl-animate {\n -webkit-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-animate-opacity {\n -webkit-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n/* SLIDE\n================================================== */\n.tl-slide {\n position: absolute;\n width: 100%;\n height: 100%;\n padding: 0;\n margin: 0;\n overflow-x: hidden;\n overflow-y: auto;\n}\n.tl-slide .tl-slide-background {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n z-index: -1;\n overflow: hidden;\n display: none;\n filter: alpha(opacity=50);\n -khtml-opacity: 0.5;\n -moz-opacity: 0.5;\n opacity: 0.5;\n background: no-repeat center center;\n -webkit-background-size: cover;\n -moz-background-size: cover;\n -o-background-size: cover;\n background-size: cover;\n}\n.tl-slide .tl-slide-scrollable-container {\n display: table;\n table-layout: fixed;\n height: 100%;\n z-index: 1;\n}\n.tl-slide .tl-slide-content-container {\n display: table-cell;\n vertical-align: middle;\n position: relative;\n width: 100%;\n height: 100%;\n z-index: 3;\n}\n.tl-slide .tl-slide-content-container .tl-slide-content {\n display: table;\n vertical-align: middle;\n direction: rtl;\n padding-left: 100px;\n padding-right: 100px;\n position: relative;\n max-width: 100%;\n user-select: text;\n -webkit-box-sizing: content-box;\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n}\n.tl-slide .tl-slide-content-container .tl-slide-content .tl-media {\n direction: ltr;\n position: relative;\n width: 100%;\n min-width: 50%;\n float: left;\n margin-top: auto;\n margin-bottom: auto;\n}\n.tl-slide .tl-slide-content-container .tl-slide-content .tl-text {\n direction: ltr;\n width: 50%;\n max-width: 50%;\n min-width: 120px;\n padding: 0 20px 0 20px;\n display: table-cell;\n vertical-align: middle;\n text-align: left;\n}\n/* Only Media (no text)\n================================================== */\n.tl-slide-media-only .tl-slide-content-container .tl-slide-content {\n text-align: center;\n}\n.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-media {\n text-align: center;\n position: relative;\n width: 100%;\n min-width: 50%;\n max-width: 100%;\n float: none;\n margin-top: auto;\n margin-bottom: auto;\n}\n.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-text {\n width: 100%;\n max-width: 100%;\n display: block;\n margin-left: auto;\n margin-right: auto;\n text-align: center;\n}\n/* Only Text (no media)\n================================================== */\n.tl-slide-text-only .tl-slide-content-container .tl-slide-content {\n text-align: center;\n}\n.tl-slide-text-only .tl-slide-content-container .tl-slide-content .tl-text {\n max-width: 80%;\n width: 80%;\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n/* Background\n================================================== */\n.tl-slide.tl-full-image-background,\n.tl-slide.tl-full-color-background {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background p,\n.tl-slide.tl-full-color-background p,\n.tl-slide.tl-full-image-background h1,\n.tl-slide.tl-full-color-background h1,\n.tl-slide.tl-full-image-background h2,\n.tl-slide.tl-full-color-background h2,\n.tl-slide.tl-full-image-background h3,\n.tl-slide.tl-full-color-background h3,\n.tl-slide.tl-full-image-background h4,\n.tl-slide.tl-full-color-background h4,\n.tl-slide.tl-full-image-background h5,\n.tl-slide.tl-full-color-background h5,\n.tl-slide.tl-full-image-background h6,\n.tl-slide.tl-full-color-background h6 {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background a,\n.tl-slide.tl-full-color-background a,\n.tl-slide.tl-full-image-background b,\n.tl-slide.tl-full-color-background b,\n.tl-slide.tl-full-image-background i,\n.tl-slide.tl-full-color-background i,\n.tl-slide.tl-full-image-background blockquote,\n.tl-slide.tl-full-color-background blockquote,\n.tl-slide.tl-full-image-background blockquote p,\n.tl-slide.tl-full-color-background blockquote p {\n text-shadow: 1px 1px 1px #000;\n color: #ffffff;\n}\n.tl-slide.tl-full-image-background a:hover,\n.tl-slide.tl-full-color-background a:hover {\n text-decoration: underline;\n color: #c34528;\n}\n.tl-slide.tl-full-image-background .tl-caption,\n.tl-slide.tl-full-color-background .tl-caption,\n.tl-slide.tl-full-image-background .tl-credit,\n.tl-slide.tl-full-color-background .tl-credit {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background .tl-media-twitter blockquote,\n.tl-slide.tl-full-color-background .tl-media-twitter blockquote,\n.tl-slide.tl-full-image-background .tl-media-blockquote blockquote,\n.tl-slide.tl-full-color-background .tl-media-blockquote blockquote {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background .tl-media-twitter blockquote p,\n.tl-slide.tl-full-color-background .tl-media-twitter blockquote p,\n.tl-slide.tl-full-image-background .tl-media-blockquote blockquote p,\n.tl-slide.tl-full-color-background .tl-media-blockquote blockquote p {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background .vcard a,\n.tl-slide.tl-full-color-background .vcard a,\n.tl-slide.tl-full-image-background .vcard .nickname,\n.tl-slide.tl-full-color-background .vcard .nickname {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n/* Full Image Background\n================================================== */\n.tl-slide.tl-full-image-background {\n background: no-repeat center center;\n -webkit-background-size: cover;\n -moz-background-size: cover;\n -o-background-size: cover;\n background-size: cover;\n background-position: center 25%;\n text-shadow: 1px 1px 2px #000;\n}\n.tl-slide.tl-full-image-background p,\n.tl-slide.tl-full-image-background h1,\n.tl-slide.tl-full-image-background h2,\n.tl-slide.tl-full-image-background h3,\n.tl-slide.tl-full-image-background h4,\n.tl-slide.tl-full-image-background h5,\n.tl-slide.tl-full-image-background h6 {\n text-shadow: 1px 1px 2px #000;\n}\n.tl-slide.tl-full-image-background .tl-caption,\n.tl-slide.tl-full-image-background .tl-credit {\n text-shadow: 1px 1px 2px #000;\n}\n.tl-slide.tl-full-image-background .tl-media-twitter blockquote,\n.tl-slide.tl-full-image-background .tl-media-blockquote blockquote {\n text-shadow: 1px 1px 2px #000 !important;\n}\n.tl-slide.tl-full-image-background .tl-media-twitter blockquote p,\n.tl-slide.tl-full-image-background .tl-media-blockquote blockquote p {\n text-shadow: 1px 1px 2px #000 !important;\n}\n/* Color Background\n================================================== */\n/* Text Background\n================================================== */\n.tl-slide.tl-text-background .tl-text .tl-text-content-container {\n padding: 20px;\n /* Fallback for web browsers that doesn't support RGBa */\n background: #000000 transparent;\n /* RGBa with 0.6 opacity */\n background: rgba(0, 0, 0, 0.6);\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n}\n.tl-slide.tl-text-background .tl-text .tl-text-content-container h2 {\n margin-top: 5px;\n}\n/* Skinny\n================================================== */\n.tl-skinny .tl-slide {\n display: block;\n padding-top: 10px;\n}\n.tl-skinny .tl-slide .tl-slide-content-container {\n display: block;\n position: static;\n height: 100%;\n display: -webkit-flex;\n /* Safari */\n display: flex;\n align-items: center;\n -webkit-align-items: center;\n /* Safari 7.0+ */\n}\n.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content {\n display: block;\n display: -webkit-flex;\n /* Safari */\n display: flex;\n flex-direction: column;\n -webkit-flex-direction: column;\n /* Safari */\n position: static;\n height: auto;\n padding-left: 50px;\n padding-right: 50px;\n}\n.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media {\n width: 100%;\n height: auto;\n float: none;\n display: block;\n padding-top: 20px;\n border-top: 1px solid #e6e6e6;\n}\n.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-text {\n display: block;\n height: auto;\n vertical-align: initial;\n position: static;\n width: 100%;\n max-width: 100%;\n min-width: 0;\n float: none;\n padding: 0;\n}\n.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-text .tl-text-content-container {\n padding-left: 10px;\n padding-right: 10px;\n padding-bottom: 10px;\n}\n.tl-skinny .tl-slide.tl-slide.tl-full-color-background .tl-slide-content-container .tl-slide-content .tl-media,\n.tl-skinny .tl-slide.tl-full-image-background .tl-slide-content-container .tl-slide-content .tl-media {\n border-color: rgba(230, 230, 230, 0.25);\n}\n.tl-skinny .tl-slide.tl-slide-media-only .tl-slide-content-container .tl-slide-content {\n flex-direction: column;\n -webkit-flex-direction: column;\n /* Safari */\n}\n.tl-skinny .tl-slide.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-media {\n border-top: none;\n padding-top: 0px;\n}\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media img,\n.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media embed,\n.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media object,\n.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media video,\n.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media iframe {\n max-height: 175px;\n}\n/* SlideNav\n================================================== */\n/* NAVIGATION\n================================================== */\n.tl-slidenav-previous,\n.tl-slidenav-next {\n position: absolute;\n top: 45%;\n z-index: 10;\n cursor: pointer;\n padding: 0;\n outline-offset: 5px;\n background-color: transparent;\n border: none;\n text-align: inherit;\n text-transform: inherit;\n font-family: inherit;\n font-size: inherit;\n font-weight: inherit;\n}\n.tl-slidenav-previous .tl-slidenav-content-container,\n.tl-slidenav-next .tl-slidenav-content-container {\n width: 100px;\n position: absolute;\n}\n.tl-slidenav-previous .tl-slidenav-title,\n.tl-slidenav-next .tl-slidenav-title,\n.tl-slidenav-previous .tl-slidenav-description,\n.tl-slidenav-next .tl-slidenav-description {\n width: 80px;\n -webkit-line-clamp: 2;\n line-clamp: 2;\n text-overflow: ellipsis;\n /* Non standard for webkit */\n /*\n\t -webkit-hyphens: auto;\n\t -moz-hyphens: auto;\n\t -ms-hyphens: auto;\n\t hyphens: auto;\n\t\t*/\n}\n.tl-slidenav-previous .tl-slidenav-title small,\n.tl-slidenav-next .tl-slidenav-title small,\n.tl-slidenav-previous .tl-slidenav-description small,\n.tl-slidenav-next .tl-slidenav-description small {\n display: block;\n}\n.tl-slidenav-previous .tl-slidenav-title,\n.tl-slidenav-next .tl-slidenav-title {\n margin-top: 10px;\n filter: alpha(opacity=15);\n -khtml-opacity: 0.15;\n -moz-opacity: 0.15;\n opacity: 0.15;\n font-size: 11px;\n line-height: 11px;\n}\n.tl-slidenav-previous .tl-slidenav-description,\n.tl-slidenav-next .tl-slidenav-description {\n font-size: 11px;\n margin-top: 5px;\n filter: alpha(opacity=0);\n -khtml-opacity: 0;\n -moz-opacity: 0;\n opacity: 0;\n}\n.tl-slidenav-previous .tl-slidenav-description small,\n.tl-slidenav-next .tl-slidenav-description small {\n display: none;\n}\n/* NAVIGATION COLOR\n================================================== */\n.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-icon,\n.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-icon,\n.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-title,\n.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-title,\n.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-description,\n.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-description {\n text-shadow: 1px 1px 1px #FFF;\n color: #333;\n}\n.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon,\n.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon,\n.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title,\n.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title,\n.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description,\n.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description {\n color: #f2f2f2;\n text-shadow: 1px 1px 1px #333;\n}\n/* ICONS\n================================================== */\n.tl-slidenav-next .tl-slidenav-icon,\n.tl-slidenav-previous .tl-slidenav-icon {\n font-family: 'tl-icons';\n speak: none;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n font-size: 32px;\n margin-bottom: 5px;\n}\n.tl-slidenav-next {\n text-align: right;\n margin-right: 10px;\n right: 100px;\n}\n.tl-slidenav-next .tl-slidenav-title,\n.tl-slidenav-next .tl-slidenav-description {\n margin-left: 20px;\n}\n.tl-slidenav-next .tl-slidenav-icon {\n margin-left: 76px;\n}\n.tl-slidenav-next .tl-slidenav-icon:before {\n content: \"\\e64f\";\n}\n.tl-slidenav-previous {\n text-align: left;\n margin-left: 10px;\n}\n.tl-slidenav-previous .tl-slidenav-icon {\n margin-left: 0px;\n}\n.tl-slidenav-previous .tl-slidenav-icon:before {\n content: \"\\e650\";\n}\n/* NAVIGATION HOVER\n================================================== */\n.tl-slidenav-previous:hover .tl-slidenav-title,\n.tl-slidenav-next:hover .tl-slidenav-title,\n.tl-slidenav-previous:focus-visible .tl-slidenav-title,\n.tl-slidenav-next:focus-visible .tl-slidenav-title {\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-slidenav-previous:hover .tl-slidenav-description,\n.tl-slidenav-next:hover .tl-slidenav-description,\n.tl-slidenav-previous:focus-visible .tl-slidenav-description,\n.tl-slidenav-next:focus-visible .tl-slidenav-description {\n filter: alpha(opacity=50);\n -khtml-opacity: 0.5;\n -moz-opacity: 0.5;\n opacity: 0.5;\n}\n.tl-slidenav-next:hover .tl-slidenav-icon,\n.tl-slidenav-next:focus-visible .tl-slidenav-icon {\n margin-left: 80px;\n}\n.tl-slidenav-previous:hover .tl-slidenav-icon,\n.tl-slidenav-previous:focus-visible .tl-slidenav-icon {\n margin-left: -4px;\n}\n.tl-skinny .tl-slidenav-next {\n right: 32px;\n}\n.tl-skinny .tl-slidenav-next .tl-slidenav-icon {\n margin-left: 8px;\n}\n.tl-skinny .tl-slidenav-previous .tl-slidenav-content-container,\n.tl-skinny .tl-slidenav-next .tl-slidenav-content-container {\n width: 32px;\n height: 32px;\n}\n.tl-skinny .tl-slidenav-previous .tl-slidenav-title,\n.tl-skinny .tl-slidenav-next .tl-slidenav-title,\n.tl-skinny .tl-slidenav-previous .tl-slidenav-description,\n.tl-skinny .tl-slidenav-next .tl-slidenav-description {\n display: none;\n}\n.tl-skinny .tl-slidenav-previous .tl-slidenav-icon,\n.tl-skinny .tl-slidenav-next .tl-slidenav-icon {\n filter: alpha(opacity=33);\n -khtml-opacity: 0.33;\n -moz-opacity: 0.33;\n opacity: 0.33;\n}\n.tl-skinny .tl-slidenav-next:hover .tl-slidenav-icon,\n.tl-skinny .tl-slidenav-next:focus-visible .tl-slidenav-icon {\n margin-left: 12px;\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-skinny .tl-slidenav-previous:hover .tl-slidenav-icon,\n.tl-skinny .tl-slidenav-previous:focus-visible .tl-slidenav-icon {\n margin-left: -4px;\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-next:hover {\n /**\n * On mobile the hover state stays on the button after the click\n * Show the default margin as before the click\n */\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-next:hover .tl-slidenav-icon {\n margin-left: 76px;\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-next:active .tl-slidenav-icon {\n margin-left: 80px;\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-previous:hover {\n /**\n * On mobile the hover state stays on the button after the click\n * Show the default margin as before the click\n */\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-previous:hover .tl-slidenav-icon {\n margin-left: 0px;\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-previous:active .tl-slidenav-icon {\n margin-left: -4px;\n}\n.tl-layout-portrait.tl-mobile .tl-slidenav-next:hover .tl-slidenav-icon {\n filter: alpha(opacity=33);\n -khtml-opacity: 0.33;\n -moz-opacity: 0.33;\n opacity: 0.33;\n}\n.tl-layout-portrait.tl-mobile .tl-slidenav-next:active .tl-slidenav-icon {\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-layout-portrait.tl-mobile .tl-slidenav-previous:hover .tl-slidenav-icon {\n filter: alpha(opacity=33);\n -khtml-opacity: 0.33;\n -moz-opacity: 0.33;\n opacity: 0.33;\n}\n.tl-layout-portrait.tl-mobile .tl-slidenav-previous:active .tl-slidenav-icon {\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-mobile .tl-slidenav-previous,\n.tl-skinny.tl-mobile .tl-slidenav-previous,\n.tl-skinny.tl-layout-landscape.tl-mobile .tl-slidenav-previous,\n.tl-skinny.tl-layout-portrait.tl-mobile .tl-slidenav-previous,\n.tl-mobile .tl-slidenav-next,\n.tl-skinny.tl-mobile .tl-slidenav-next,\n.tl-skinny.tl-layout-landscape.tl-mobile .tl-slidenav-next,\n.tl-skinny.tl-layout-portrait.tl-mobile .tl-slidenav-next {\n display: none;\n}\n/* StorySlider\n================================================== */\n/* SLIDER CONTAINERS\n================================================== */\n.tl-storyslider {\n width: 100%;\n height: 100%;\n overflow: hidden;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n -o-user-select: none;\n user-select: none;\n position: relative;\n box-sizing: content-box;\n z-index: 8;\n}\n.tl-storyslider img,\n.tl-storyslider embed,\n.tl-storyslider object,\n.tl-storyslider video,\n.tl-storyslider iframe {\n max-width: 100%;\n position: relative;\n}\n.tl-storyslider .tl-slider-background {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: 1;\n}\n.tl-storyslider .tl-slider-touch-mask {\n width: 100%;\n height: 100%;\n z-index: 25;\n top: 0px;\n left: 0px;\n position: absolute;\n}\n.tl-storyslider .tl-slider-container-mask {\n text-align: center;\n width: 100%;\n height: 100%;\n position: relative;\n z-index: 5;\n}\n.tl-storyslider .tl-slider-container-mask .tl-slider-container {\n position: absolute;\n top: 0px;\n left: 0px;\n width: 100%;\n height: 100%;\n text-align: center;\n}\n.tl-storyslider .tl-slider-container-mask .tl-slider-container .tl-slider-item-container {\n width: 100%;\n height: 100%;\n display: table-cell;\n vertical-align: middle;\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* Requires Variables.less\n================================================== */\n.tl-media {\n width: 100%;\n min-width: 50%;\n height: 100%;\n float: left;\n margin-top: auto;\n margin-bottom: auto;\n position: relative;\n}\n.tl-media .tl-media-content-container.tl-media-content-container-text {\n border-right: 1px solid #e6e6e6;\n padding-right: 20px;\n}\n.tl-media .tl-media-content-container .tl-media-content {\n position: relative;\n}\n.tl-media .tl-media-content-container .tl-media-content:before,\n.tl-media .tl-media-content-container .tl-media-content:after {\n display: table;\n content: \"\";\n}\n.tl-media .tl-media-content-container .tl-media-content:after {\n clear: both;\n}\n.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror p {\n color: #f2f2f2;\n text-align: center;\n}\n.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror p span {\n color: #f2f2f2;\n}\n.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror [class^=\"tl-icon-\"],\n.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror [class*=\" tl-icon-\"] {\n font-size: 28px;\n color: #f2f2f2;\n text-align: center;\n}\n.tl-media .tl-media-content-container .tl-media-content img,\n.tl-media .tl-media-content-container .tl-media-content embed,\n.tl-media .tl-media-content-container .tl-media-content object,\n.tl-media .tl-media-content-container .tl-media-content video {\n max-width: 100%;\n max-height: 100%;\n}\n/* Media Only Slides\n================================================== */\n.tl-slide-media-only .tl-media .tl-media-content-container.tl-media-content-container-text {\n border-right: none;\n padding-right: 0;\n}\n/* Media Shodow\n================================================== */\n.tl-media-shadow {\n position: relative;\n z-index: 1;\n -webkit-box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.6);\n -moz-box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.6);\n box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.6);\n}\n.tl-slide.tl-full-image-background a,\n.tl-slide.tl-full-color-background a,\n.tl-slide.tl-full-image-background .vcard a,\n.tl-slide.tl-full-color-background .vcard a {\n text-shadow: 1px 1px 1px #000;\n color: #ffffff;\n}\n.tl-slide.tl-full-image-background a:hover,\n.tl-slide.tl-full-color-background a:hover {\n text-decoration: underline;\n color: #c34528;\n}\n/* Credit\n================================================== */\n.tl-credit {\n color: #999999;\n text-align: right;\n display: block;\n margin: 0 auto;\n margin-top: 6px;\n font-size: 10px;\n line-height: 13px;\n}\n/* Caption\n================================================== */\n.tl-caption {\n text-align: left;\n margin-right: auto;\n margin-left: auto;\n margin-top: 10px;\n color: #666666;\n font-size: 11px;\n line-height: 14px;\n text-rendering: optimizeLegibility;\n word-wrap: break-word;\n}\n/* Full Image Background\n================================================== */\n.tl-full-image-background .tl-media-shadow:before,\n.tl-full-color-background .tl-media-shadow:before,\n.tl-full-image-background .tl-media-shadow:after,\n.tl-full-color-background .tl-media-shadow:after {\n background: none;\n -webkit-box-shadow: 0 0px 0px #000;\n -moz-box-shadow: 0 0px 0px #000;\n box-shadow: 0 0px 0px #000;\n}\n/* Skinny\n================================================== */\n.tl-skinny .tl-media {\n width: 100%;\n height: auto;\n float: none;\n display: block;\n}\n.tl-skinny .tl-media .tl-media-content-container.tl-media-content-container-text {\n border-right: 0;\n padding-right: 0;\n}\n.tl-skinny .tl-media .tl-media-content-container .tl-credit,\n.tl-skinny .tl-media .tl-media-content-container .tl-caption {\n margin-top: 2px;\n padding-left: 10px;\n padding-right: 10px;\n font-size: 8px;\n}\n.tl-skinny .tl-media .tl-media-content-container .tl-credit {\n margin-top: 0px;\n}\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny .tl-media {\n width: 100%;\n height: auto;\n float: none;\n display: block;\n}\n.tl-mobile.tl-skinny .tl-media .tl-media-content-container.tl-media-content-container-text {\n border-right: 0;\n padding-right: 0;\n}\n/* Requires Variables.less\n================================================== */\n.tl-text {\n width: 50%;\n max-width: 50%;\n min-width: 120px;\n padding: 0 20px 0 20px;\n display: table-cell;\n vertical-align: middle;\n text-align: left;\n text-shadow: none;\n color: #737373;\n}\n.tl-text p {\n color: #737373;\n}\n.tl-text .tl-text-content-container .tl-text-headline-container {\n display: flex;\n flex-direction: column-reverse;\n -webkit-flex-direction: column-reverse;\n /* Safari */\n}\n.tl-text h2.tl-headline-title,\n.tl-text h2.tl-headline {\n margin-top: 0;\n}\n.tl-text .tl-headline-date,\n.tl-text h3.tl-headline-date {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 15px;\n line-height: 15px;\n font-weight: normal;\n margin: 0 0 3px 0;\n color: #b3b3b3;\n}\n.tl-text .tl-headline-date small,\n.tl-text h3.tl-headline-date small {\n font-size: 15px;\n line-height: 15px;\n font-weight: normal;\n color: #b3b3b3;\n}\n.tl-text .tl-text-date {\n display: inline-block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-weight: normal;\n margin-top: 10px;\n font-size: 12px;\n color: #b3b3b3;\n}\n.tl-full-image-background .tl-text,\n.tl-full-color-background .tl-text,\n.tl-full-image-background .tl-text p,\n.tl-full-color-background .tl-text p {\n color: #f2f2f2 !important;\n text-shadow: 1px 1px 2px #000;\n}\n.tl-full-image-background .tl-text .tl-headline-date,\n.tl-full-color-background .tl-text .tl-headline-date,\n.tl-full-image-background .tl-text p .tl-headline-date,\n.tl-full-color-background .tl-text p .tl-headline-date,\n.tl-full-image-background .tl-text h3.tl-headline-date,\n.tl-full-color-background .tl-text h3.tl-headline-date,\n.tl-full-image-background .tl-text p h3.tl-headline-date,\n.tl-full-color-background .tl-text p h3.tl-headline-date {\n color: #f2f2f2 !important;\n}\n.tl-full-image-background .tl-text .tl-headline-date small,\n.tl-full-color-background .tl-text .tl-headline-date small,\n.tl-full-image-background .tl-text p .tl-headline-date small,\n.tl-full-color-background .tl-text p .tl-headline-date small,\n.tl-full-image-background .tl-text h3.tl-headline-date small,\n.tl-full-color-background .tl-text h3.tl-headline-date small,\n.tl-full-image-background .tl-text p h3.tl-headline-date small,\n.tl-full-color-background .tl-text p h3.tl-headline-date small {\n color: #f2f2f2 !important;\n}\n.tl-full-image-background .tl-text a:hover,\n.tl-full-color-background .tl-text a:hover,\n.tl-full-image-background .tl-text p a:hover,\n.tl-full-color-background .tl-text p a:hover {\n text-decoration: underline;\n color: #c34528;\n}\n/* Skinny\n================================================== */\n.tl-skinny .tl-text {\n width: 100%;\n max-width: 100%;\n min-width: auto;\n float: none;\n margin-top: 20px;\n}\n.tl-skinny .tl-text h2.tl-headline-title,\n.tl-skinny .tl-text h2.tl-headline {\n font-size: 32px;\n line-height: 36px;\n}\n/* Medium\n================================================== */\n.tl-medium .tl-text h2.tl-headline-title,\n.tl-medium .tl-text h2.tl-headline {\n font-size: 32px;\n line-height: 36px;\n}\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny .tl-media .tl-media-image {\n max-height: 250px !important;\n}\n.tl-media .tl-media-twitter {\n text-align: left;\n clear: both;\n}\n.tl-media .tl-media-twitter blockquote {\n margin: 0;\n margin-right: 15px;\n font-size: 15px;\n line-height: 21px;\n color: #333;\n}\n.tl-media .tl-media-twitter blockquote p {\n font-size: 28px;\n line-height: 30px;\n color: #000;\n}\n.tl-media .tl-media-twitter blockquote p:before {\n display: none;\n}\n.tl-media .tl-media-twitter blockquote p:after {\n display: none;\n}\n.tl-media .tl-media-twitter .tl-icon-twitter {\n color: #55ACEE;\n}\n.tl-media .tl-media-twitter .vcard a:hover,\n.tl-media .tl-media-twitter .vcard a.tl-date:hover {\n text-decoration: none;\n color: #55ACEE;\n}\n.tl-media .tl-media-twitter .vcard a:hover .fn,\n.tl-media .tl-media-twitter .vcard a.tl-date:hover .fn,\n.tl-media .tl-media-twitter .vcard a:hover .nickname,\n.tl-media .tl-media-twitter .vcard a.tl-date:hover .nickname {\n color: #55ACEE;\n}\n.tl-slide-media-only .tl-media .tl-media-twitter {\n width: 80%;\n margin-left: auto;\n margin-right: auto;\n}\n.tl-mobile.tl-skinny .tl-media .tl-media-twitter blockquote p {\n font-size: 15px;\n line-height: 21px;\n}\n.tl-skinny .tl-media .tl-media-twitter {\n margin-left: 10px;\n margin-right: 10px;\n}\n.tl-skinny .tl-media .tl-media-twitter blockquote p {\n font-size: 24px;\n line-height: 26px;\n}\n.tl-media .tl-media-blockquote {\n text-align: left;\n clear: both;\n}\n.tl-media .tl-media-blockquote blockquote {\n margin: 0;\n margin-right: 15px;\n text-align: left;\n font-size: 28px;\n line-height: 30px;\n color: #333;\n}\n.tl-media .tl-media-blockquote blockquote p {\n font-size: 28px;\n line-height: 30px;\n color: #333;\n}\n.tl-media .tl-media-blockquote blockquote p:before,\n.tl-media .tl-media-blockquote blockquote p:after {\n display: inline-block;\n font-size: 36px;\n}\n.tl-media .tl-media-blockquote blockquote p:before {\n content: open-quote;\n margin-right: 5px;\n}\n.tl-media .tl-media-blockquote blockquote p:after {\n content: close-quote;\n margin-left: 3px;\n}\n.tl-media .tl-media-blockquote blockquote cite {\n font-size: 15px;\n line-height: 21px;\n color: #999999;\n text-align: right;\n margin-top: 15px;\n}\n.tl-slide-media-only .tl-media .tl-media-blockquote {\n border-right: 0;\n width: 80%;\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {\n .tl-media .tl-media-blockquote blockquote p {\n font-size: 24px;\n line-height: 26px;\n }\n}\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n .tl-media .tl-media-blockquote blockquote p {\n font-size: 15px;\n line-height: 21px;\n }\n}\n.tl-mobile.tl-skinny .tl-media .tl-media-instagram {\n max-height: 250px !important;\n}\n.tl-media .tl-media-profile {\n border-radius: 50%;\n}\n.tl-media .tl-media-iframe {\n width: 100%;\n height: 100%;\n}\n.tl-media .tl-media-iframe iframe {\n width: 100%;\n height: 100%;\n}\n.tl-media .tl-media-wikipedia {\n text-align: left;\n margin-left: auto;\n margin-right: auto;\n clear: both;\n}\n.tl-media .tl-media-wikipedia .tl-icon-wikipedia {\n font-size: 32px;\n margin-right: 10px;\n float: left;\n padding-top: 3px;\n}\n.tl-media .tl-media-wikipedia .tl-wikipedia-pageimage {\n float: left;\n margin-right: 10px;\n margin-bottom: 5px;\n margin-top: 5px;\n}\n.tl-media .tl-media-wikipedia .tl-wikipedia-title {\n margin-left: 60px;\n padding-left: 10px;\n border-left: 1px solid #e6e6e6;\n margin-bottom: 10px;\n}\n.tl-media .tl-media-wikipedia .tl-wikipedia-source {\n font-size: 13px;\n line-height: 15px;\n font-style: italic;\n margin-top: 3px;\n display: block;\n color: rgba(0, 0, 0, 0.5);\n}\n.tl-media .tl-media-wikipedia h4 {\n margin-top: 0px;\n margin-bottom: 0px;\n}\n.tl-media .tl-media-wikipedia h4 a {\n color: #000;\n text-decoration: none;\n}\n.tl-media .tl-media-wikipedia p {\n font-size: 13px;\n line-height: 19px;\n}\n.tl-slide-media-only .tl-media .tl-media-wikipedia {\n border-right: 0;\n border-top: 1px solid #e6e6e6;\n width: 80%;\n margin-left: auto;\n margin-right: auto;\n margin-top: 25px;\n padding-top: 25px;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia,\n.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia {\n padding: 20px;\n /* Fallback for web browsers that doesn't support RGBa */\n background: #000000 transparent;\n /* RGBa with 0.6 opacity */\n background: rgba(0, 0, 0, 0.6);\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia h4 a,\n.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia h4 a {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia a:hover,\n.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia a:hover {\n text-decoration: underline;\n color: #c34528;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia .tl-wikipedia-title,\n.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia .tl-wikipedia-title {\n border-color: rgba(230, 230, 230, 0.25);\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia .tl-wikipedia-source,\n.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia .tl-wikipedia-source {\n color: rgba(230, 230, 230, 0.85);\n}\n.tl-mobile.tl-skinny .tl-media .tl-media-wikipedia,\n.tl-skinny .tl-media .tl-media-wikipedia {\n margin-left: 10px;\n margin-right: 10px;\n}\n.tl-media .tl-media-website {\n text-align: left;\n margin-left: auto;\n margin-right: auto;\n clear: both;\n}\n.tl-media .tl-media-website .tl-media-website-description {\n font-size: 16px;\n line-height: 19px;\n font-style: italic;\n margin-bottom: 10px;\n text-transform: uppercase;\n}\n.tl-media .tl-media-website h4 {\n margin-top: 0px;\n margin-bottom: 0px;\n line-height: 1;\n}\n.tl-media .tl-media-website h4 a {\n color: #000;\n text-decoration: none;\n}\n.tl-media .tl-media-website p {\n font-size: 13px;\n line-height: 19px;\n}\n.tl-media .tl-media-content-container .tl-media-content .tl-media-website img {\n float: right;\n max-width: 120px;\n max-height: 120px;\n margin: 4px 0 0 15px;\n}\n.tl-media .tl-media-content-container .tl-media-content .tl-media-website img.tl-media-website-icon {\n max-width: 16px;\n max-height: 16px;\n float: none;\n margin: 0;\n margin-right: 3px;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-website,\n.tl-slide.tl-full-color-background .tl-media .tl-media-website {\n padding: 20px;\n /* Fallback for web browsers that doesn't support RGBa */\n background: #000000 transparent;\n /* RGBa with 0.6 opacity */\n background: rgba(0, 0, 0, 0.6);\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-website h4 a,\n.tl-slide.tl-full-color-background .tl-media .tl-media-website h4 a {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-website a:hover,\n.tl-slide.tl-full-color-background .tl-media .tl-media-website a:hover {\n text-decoration: underline;\n color: #c34528;\n}\n.tl-mobile.tl-skinny .tl-media .tl-media-website {\n margin-left: 10px;\n margin-right: 10px;\n}\n/* Timeline\n================================================== */\n.tl-timeline {\n width: 100%;\n height: 100%;\n font-size: 16px;\n line-height: normal;\n overflow: hidden;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n -o-user-select: none;\n user-select: none;\n background-color: #FFF;\n color: #737373;\n -webkit-box-sizing: content-box;\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n}\n.tl-timeline.tl-timeline-embed {\n box-sizing: border-box;\n border-top: 1px solid #cccccc;\n border-bottom: 1px solid #cccccc;\n border-radius: 0;\n}\n.tl-timeline.tl-timeline-full-embed {\n box-sizing: border-box;\n border: 1px solid #cccccc;\n border-radius: 8px;\n}\n.tl-timeline .tl-attribution {\n cursor: pointer;\n z-index: 9;\n position: absolute;\n bottom: 2px;\n left: 0px;\n font-size: 10px;\n line-height: 10px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif !important;\n background-color: rgba(255, 255, 255, 0.85);\n padding: 3px;\n}\n.tl-timeline .tl-attribution a {\n color: #cccccc;\n}\n.tl-timeline .tl-attribution a:hover,\n.tl-timeline .tl-attribution a:focus-visible {\n color: #000;\n text-decoration: none;\n}\n.tl-timeline .tl-attribution a:hover .tl-knightlab-logo,\n.tl-timeline .tl-attribution a:focus-visible .tl-knightlab-logo {\n background-color: #c34528;\n}\n.tl-timeline .tl-attribution .tl-knightlab-logo {\n display: inline-block;\n vertical-align: middle;\n height: 8px;\n width: 8px;\n margin-right: 3px;\n background-color: #c34528;\n background-color: #cccccc;\n transform: rotate(45deg);\n -ms-transform: rotate(45deg);\n -webkit-transform: rotate(45deg);\n}\n/* Portrait\n================================================== */\n.tl-layout-portrait .tl-storyslider {\n -webkit-box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.2);\n -moz-box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.2);\n box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.2);\n}\n.tl-rtl .tl-text-content,\n.tl-rtl .tl-headline,\n.tl-rtl .tl-media-blockquote,\n.tl-rtl .tl-headline-date,\n.tl-rtl .tl-timeline blockquote p,\n.tl-rtl .tl-media-website,\n.tl-rtl .tl-media-wikipedia,\n.tl-rtl .tl-media .tl-media-blockquote blockquote,\n.tl-rtl .blockquote,\n.tl-rtl blockquote p,\n.tl-rtl .tl-text-content p {\n text-align: right;\n direction: rtl;\n}\n.tl-rtl .tl-slide-media-only .tl-headline,\n.tl-rtl .tl-slide-media-only .tl-headline-date {\n text-align: center;\n}\n.tl-rtl .tl-timemarker-text {\n margin-right: 35px;\n}\n.tl-rtl .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container {\n float: right;\n}\n.tl-rtl .tl-caption {\n text-align: right;\n}\n.tl-rtl .tl-credit {\n text-align: left;\n}\n",".tl-timeline {\n\tfont-family: @font-main;\n\t\n\th1, h2, h3, h4, h5, h6 {\n\t\tcolor:@color-header-text;\n\t}\n\t\n\th1, h2, h3 {\n\t\tfont-size: @base-font-size-xlarge;\n\t\tline-height:@base-font-size-xlarge;\n\t\tsmall {\n\t\t\tfont-size: \t\t@base-font-size-large;\n\t\t\tline-height:\t@base-font-size-large;\n\t\t}\n\t}\n\th4, h5, h6 {\n\t\tfont-size: @base-font-size-large;\n\t\tline-height:@base-font-size-large;\n\t\tmargin-bottom:0px;\n\t\tsmall {\n\t\t\tfont-size: @base-font-size;\n\t\t\tline-height:@base-font-size;\n\t\t}\n\t}\n\th2.tl-headline-title {\n\t\tfont-size: @base-font-size-xlarge + 10;\n\t\tline-height: @base-font-size-xlarge + 10;\n\t\tsmall {\n\t\t\tdisplay:block;\n\t\t\tmargin-top:5px;\n\t\t\tfont-size: @base-font-size-large;\n\t\t\tline-height:@base-font-size-large;\n\t\t}\n\t}\n\t\n\th2 {\n\t\tmargin-top:20px;\n\t\tmargin-bottom:5px;\n\t}\n\t\n\tp {\n\t\tmargin-top:5px;\n\t\tmargin-bottom:10px;\n\t\tfont-size: @base-font-size;\n\t\tline-height:@base-line-height;\n\t\t//font-family: @font-secondary;\n\t\tcolor: lighten(@color-dark, 40%);\n\t\t&.lead {\n\t\t\tfont-size: @base-font-size-large;\n\t\t}\n\t\ta {\n\t\t\t/*\n\t\t\tcolor: lighten(@color-dark, 40%);\n\t\t\ttext-decoration: none;\n\t\t\tbackground-image: -moz-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: -webkit-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: -o-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: linear-gradient(to bottom, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-repeat: repeat-x;\n\t\t\tbackground-size: 2px 2px;\n\t\t\tbackground-position: 0 @base-font-size+2;\n\t\t\ttext-shadow: -2px -1px 0 white, 2px -1px 0 white, -2px 1px 0 white, 2px 1px 0 white;\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\tcolor:@color-theme;\n\t\t\t\ttext-decoration: none;\n\t\t\t}\n\t\t\t*/\n\t\t\tcolor: lighten(@color-dark, 40%);\n\t\t\ttext-decoration: underline;\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\tcolor:@color-theme;\n\t\t\t\t//text-decoration: none;\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\t@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {\n\t\t\ta {\n\t\t\t\ttext-decoration: underline;\n\t\t\t\tbackground-image:none;\n\t\t\t\ttext-shadow: none;\n\t\t\t\t&:hover,\n\t\t\t\t&:focus {\n\t\t\t\t\tcolor:@color-theme;\n\t\t\t\t\ttext-decoration: underline;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t\n\t\t\n\t}\n\tb, strong {\n\t\tfont-weight: bold;\n\t\t//color: @color-dark;\n\t}\n\ti, em {\n\t\tfont-style: italic;\n\t}\n\ta {\n\t\ttext-decoration:none;\n\t\tcolor:@color-theme;\n\t}\n\ta:hover {\n\t\ttext-decoration:underline;\n\t\tcolor: darken(@color-theme, 20%);\n\t}\n\t.tl-caption, .tl-credit, .tl-slidenav-next, .tl-slidenav-previous {\n\t\t//font-family: @font-sanserif;\n\t\tfont-size:@base-font-size-small;\n\t\tline-height:@base-font-size-small;\n\t\ta {\n\t\t\tcolor: @color-dark;\n\t\t}\n\t}\n\t.tl-makelink {\n\n\t\tword-break: break-all;\n\t\tword-break: break-word;\n\t\t-webkit-hyphens: auto;\n\t\t -moz-hyphens: auto;\n\t\t hyphens: auto;\n\t}\n\tblockquote, blockquote p {\n\t\tfont-family: @font-serif;\n\t\tcolor: lighten(@color-dark, 60%);\n\t\tfont-size: @base-font-size-large;\n\t\tline-height:@base-font-size-large;\n\t\ttext-align:left;\n\t\tbackground:transparent;\n\t\tborder:0px;\n\t\tpadding:0px;\n\t\tcite {\n\t\t\tfont-family: @font-sanserif;\n\t\t\tfont-size: @base-font-size-small;\n\t\t\tcolor: lighten(@color-dark, 40%);\n\t\t\tdisplay:block;\n\t\t\ttext-align:right;\n\t\t\tfont-style: normal;\n\t\t\t\n\t\t}\n\t\tcite:before {\n\t\t\tcontent: \"\\2014\";\n\t\t}\n\t}\n\tblockquote p:before {\n\t\tcontent: open-quote;\n\t\tdisplay:inline-block;\n\t\tfont-size: @base-font-size-xlarge;\n\t\tposition: relative; \n\t\ttop: 8px;\n\t\tmargin-right:5px;\n\t\t\n\t}\n\tblockquote p:after {\n\t\tcontent: close-quote;\n\t\tdisplay:inline-block;\n\t\tfont-size: @base-font-size-xlarge;\n\t\tposition: relative; \n\t\ttop: 8px;\n\t\tmargin-left:3px;\n\t\t\n\t}\n\tblockquote {\n\t\tmargin:10px;\n\t\tp {\n\t\t\tmargin:0;\n\t\t}\n\t\t//margin-left:18px;\n\t}\n\t\n\n\t/* VCard\n\t================================================== */\n\t.vcard {\n\t\tfont-family: @font-main;\n\t\tfont-size: @base-font-size;\n\t\tline-height:@base-font-size;\n\n\t\t.clearfix();\n\t\tmargin-bottom:@base-spacing;\n\t\tmargin-top:10px;\n\t\t.twitter-date {\n\t\t\ttext-align:left;\n\t\t\tfont-size:@base-font-size-small;\n\t\t}\n\t\t.author {\n\t\t\tfloat:right;\n\t\t\t//text-align:right;\n\t\t}\n\t\ta {\n\t\t\tcolor: lighten(@color-dark, 20%);\n\t\t\ttext-decoration:none;\n\t\t}\n\t\ta:hover {\n\t\t\ttext-decoration: none;\n\t\t\t.fn, .nickname {\n\t\t\t\tcolor:@color-theme;\n\t\t\t\t//text-decoration: underline;\n\t\t\t}\n\t\t}\n\t\t.fn, .nickname {\n\t\t\t\t\n\t\t\tpadding-left: 42px;\n\t\t}\n\t\t.fn {\n\t\t\tdisplay:block;\n\t\t\tfont-weight: bold;\n\n\t\t}\n\t\t.nickname {\n\t\t\tmargin-top:1px;\n\t\t\tdisplay:block;\n\t\t\tcolor: lighten(@color-dark, 40%);\n\t\t}\n\t\t\t\n\t\t.avatar {\n\t\t\tfloat:left;\n\t\t\tdisplay: block;\n\t\t\twidth: 32px;\n\t\t\theight: 32px;\n\t\t\timg {\n\t\t\t\t-moz-border-radius: 5px;\n\t\t\t\t-webkit-border-radius: 5px;\n\t\t\t\tborder-radius: 5px;\n\t\t\t}\n\t\t}\n\t}\n\t.tl-text {\n\t\tul {\n\t\t\tpadding:0px;\n\t\t\tpadding-left:30px;\n\t\t\tmargin:0;\n\t\t\tli {\n\t\t\t\tmargin-bottom:5px;\n\t\t\t}\n\t\t}\n\t\t\n\t}\n\n\t.tl-button-calltoaction {\n\t\tcursor: pointer;\n\t\tfont-weight: bold;\n\t\tpadding-top: 10px;\n\t\tmargin-bottom: 10px;\n\t\tpadding-bottom: 10px;\n\n\t\t.tl-button-calltoaction-text {\n\t\t\tdisplay: inline-block;\n\t\t\tbackground-color: #c34528;\n\t\t\tcolor: #fff;\n\t\t\tpadding: 10px 15px 10px 15px;\n\t\t\tborder-radius: 7px;\n\t\t}\n\t}\n\n\t.tl-note {\n\t\tdisplay:block;\n\t\tfont-family: @font-main;\n\t\tfont-style: italic;\n\t\tbackground-color:@note-color-background;\n\t\tfont-size:@base-font-size;\n\t\tline-height:@base-font-size+2;\n\t\tpadding:10px;\n\t\t.border-radius(7px); \n\t\tcolor: #8a6d3b;\n\t\tborder: 1px solid #faebcc;\n\t\ttext-shadow: none;\n\t}\n\n\n}\n\n\n// Skinnier\n@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {\n\t.tl-timeline {\n\t\th1, h2, h3 {\n\t\t\tfont-size: @base-font-size-xlarge;\n\t\t\tline-height: @base-font-size-xlarge;\n\t\t}\n\t\th2.tl-headline-title {\n\t\t}\n\t}\n\t\n}\n// Mobile, iPhone and skinny\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n\t.tl-timeline {\n\t\th1, h2, h3 {\n\t\t\tfont-size: @base-font-size-xlarge - 4;\n\t\t\tline-height: @base-font-size-xlarge - 4;\n\t\t}\n\t\th2.tl-headline-title {\n\n\t\t}\n\t}\n}\n.tl-skinny {\n\th2 {\n\t\tmargin-top:0px;\n\t\t//padding-top:20px;\n\t}\n}\n","/*\tMixins.less\n\tSnippets of reusable CSS to develop faster and keep code readable\n * ----------------------------------------------------------------- */\n// Marker bottom text fade\n.marker-text-fade(@thecolor, @thepercent: 100%) {\n\tbackground: -moz-linear-gradient(top, fadeout(@thecolor, 100%) 0%, @thecolor @thepercent); /* FF3.6+ */\n\tbackground: -webkit-gradient(linear, left top, left bottom, color-stop(0%,fadeout(@thecolor, 100%)), color-stop(@thepercent,@thecolor)); /* Chrome,Safari4+ */\n\tbackground: -webkit-linear-gradient(top, fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* Chrome10+,Safari5.1+ */\n\tbackground: -o-linear-gradient(top, fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* Opera 11.10+ */\n\tbackground: -ms-linear-gradient(top, fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* IE10+ */\n\tbackground: linear-gradient(to bottom, fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* W3C */\n\tfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr='@thecolor', endColorstr='@thecolor',GradientType=0 ); /* IE6-9 */\n}\n\n// Cubic Bezier \n.animation-timing-cubic-bezier() {\n\t\n\t-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);\n}\n\n// Property Animation\n.property-animation(@prop:height, @time:1000ms, @ease:cubic-bezier(0.770, 0.000, 0.175, 1.000)) {\n\t-webkit-transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t -moz-transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t -o-transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000);\n}\n\n// Disable Selection\n.disable-selection() {\n\t-webkit-touch-callout: none;\n\t -webkit-user-select: none;\n\t -khtml-user-select: none;\n\t -moz-user-select: none;\n\t -ms-user-select: none;\n\t user-select: none;\n}\n\n// Border Box\n.border-box() {\n\t-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */\n\t -moz-box-sizing: border-box; /* Firefox, other Gecko */\n\t\t box-sizing: border-box;\n}\n\n// Opacity\n.opacity(@opacity: 100) {\n \tfilter: e(%(\"alpha(opacity=%d)\", @opacity));\n \t-khtml-opacity: @opacity / 100;\n \t -moz-opacity: @opacity / 100;\n \t opacity: @opacity / 100;\n}\n// Background Opacity\n.background-opacity(@opacity: 100) {\n\t/* Fallback for web browsers that doesn't support RGBa */\n\tbackground: rgb(0, 0, 0) transparent;\n\t/* RGBa with 0.6 opacity */\n\tbackground: rgba(0, 0, 0, @opacity / 100);\n}\n\n// Background Color Opacity\n.background-color-opacity(@cr:0, @cg:0, @cb:0, @opacity: 100) {\n\t/* Fallback for web browsers that doesn't support RGBa */\n\tbackground: rgb(@cr, @cg, @cb) transparent;\n\t/* RGBa with 0.6 opacity */\n\tbackground: rgba(@cr, @cg, @cb, @opacity / 100);\n}\n\n// Slide Text Shadow\n.slide-text-shadow(@shadow: 1px 1px 1px #000) {\n\tcolor: #FFF !important;\n\ttext-shadow: @shadow !important;\n\n}\n\n// Border Radius\n.border-radius(@radius: 5px) {\n \t-webkit-border-radius: @radius;\n \t -moz-border-radius: @radius;\n \t border-radius: @radius;\n}\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Box Shadow\n.box-shadow(@shadow: 1px 1px 7px rgba(0,0,0,.30)) {\n\t-webkit-box-shadow: @shadow;\n\t -moz-box-shadow: @shadow;\n\t box-shadow: @shadow;\n}\n// Transform\n.transform(@transform) {\n \t-webkit-transform: @transform;\n \t -moz-transform: @transform;\n \t -ms-transform: @transform;\n \t -o-transform: @transform;\n \t transform: @transform;\n}\n// Transitions\n.transition(@transition) {\n \t-webkit-transition: @transition;\n \t -moz-transition: @transition;\n \t -ms-transition: @transition;\n \t -o-transition: @transition;\n \t transition: @transition;\n}\n// Hyphens\n.hyphens(@hyphens: auto) {\n \t-webkit-hyphens:@hyphens;\n \t -moz-hyphens:@hyphens;\n \t -ms-hyphens:@hyphens;\n \t hyphens:@hyphens;\n}\n// User select\n// For selecting text on the page\n.user-select(@select) {\n\t-webkit-user-select: @select;\n\t -moz-user-select: @select;\n\t -ms-user-select: @select; // IE10+\n\t -o-user-select: @select;\n\t user-select: @select;\n}\n// Clear Fix\n.clearfix() {\n\t&:before,\n\t&:after {\n\t\tdisplay: table;\n\t\tcontent: \"\";\n\t}\n\t&:after {\n\t\tclear: both;\n\t}\n}\n.translucent-background(@color: @white, @alpha: 1) {\n\tbackground-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);\n}\n// Add an alphatransparency value to any background or border color (via Elyse Holladay)\n#translucent {\n .background(@color: @white, @alpha: 1) {\n background-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);\n }\n .border(@color: @white, @alpha: 1) {\n border-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);\n background-clip: padding-box;\n }\n}\n// Reset filters for IE\n.reset-filter() {\n\tfilter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n// Center-align a block level element\n.center-block() {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n}\n// Create Vertical Gradient\n.gradient-vertical (@startColor: #555, @endColor: #333) {\n //background-color: @endColor;\n background-repeat: repeat-x;\n background-image: -khtml-gradient(linear, left top, left bottom, from(@startColor), to(@endColor)); // Konqueror\n background-image: -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+\n background-image: -ms-linear-gradient(top, @startColor, @endColor); // IE10\n background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @startColor), color-stop(100%, @endColor)); // Safari 4+, Chrome 2+\n background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+\n background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10\n background-image: linear-gradient(top, @startColor, @endColor); // The standard\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",@startColor,@endColor)); // IE9 and down\n}\n\n// GRADIENTS\n// --------------------------------------------------\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}","/* Icons\n================================================== */\n\n@font-face {\n\tfont-family: 'tl-icons';\n\tsrc:url('@{icon-path}tl-icons.eot');\n\tsrc:url('@{icon-path}tl-icons.eot?#iefix') format('embedded-opentype'),\n\t\turl('@{icon-path}tl-icons.ttf') format('truetype'),\n\t\turl('@{icon-path}tl-icons.woff2') format('woff2'),\n\t\turl('@{icon-path}tl-icons.woff') format('woff'),\n\t\turl('@{icon-path}tl-icons.svg#tl-icons') format('svg');\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\tfont-family: 'tl-icons';\n\tspeak: none;\n\tfont-style: normal;\n\tfont-weight: normal;\n\tfont-variant: normal;\n\ttext-transform: none;\n\tline-height: 1;\n\n\t/* Better Font Rendering =========== */\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n}\n\n\n.tl-icon-vine:after {\n\tcontent: \"\\e64d\";\n}\n.tl-icon-wikipedia:after {\n\tcontent: \"\\e64e\";\n}\n.tl-icon-chevron-right:after {\n\tcontent: \"\\e64f\";\n}\n.tl-icon-chevron-left:after {\n\tcontent: \"\\e650\";\n}\n.tl-icon-youtube-logo:after {\n\tcontent: \"\\e651\";\n}\n.tl-icon-foursquare:after {\n\tcontent: \"\\e652\";\n}\n.tl-icon-camera-retro:after {\n\tcontent: \"\\e653\";\n}\n.tl-icon-doc:after {\n\tcontent: \"\\e654\";\n}\n.tl-icon-weibo:after {\n\tcontent: \"\\e655\";\n}\n.tl-icon-resize-horizontal:after {\n\tcontent: \"\\e656\";\n}\n.tl-icon-resize-vertical:after {\n\tcontent: \"\\e657\";\n}\n.tl-icon-resize-full:after {\n\tcontent: \"\\e658\";\n}\n.tl-icon-resize-small:after {\n\tcontent: \"\\e659\";\n}\n.tl-icon-twitter:after {\n\tcontent: \"\\e62b\";\n}\n.tl-icon-google-plus:after {\n\tcontent: \"\\e62c\";\n}\n.tl-icon-video:after {\n\tcontent: \"\\e62d\";\n}\n.tl-icon-youtube:after {\n\tcontent: \"\\e62d\";\n}\n.tl-icon-plaintext:after {\n\tcontent: \"\\e62e\";\n}\n.tl-icon-storify:after {\n\tcontent: \"\\e62e\";\n}\n.tl-icon-image-v2:after {\n\tcontent: \"\\e62f\";\n}\n.tl-icon-quote-v2:after {\n\tcontent: \"\\e630\";\n}\n.tl-icon-zoom-in:after {\n\tcontent: \"\\e631\";\n}\n.tl-icon-zoom-out:after {\n\tcontent: \"\\e632\";\n}\n.tl-icon-list:after {\n\tcontent: \"\\e633\";\n}\n.tl-icon-music:after {\n\tcontent: \"\\e634\";\n}\n.tl-icon-spotify:after {\n\tcontent: \"\\e634\";\n}\n.tl-icon-location:after {\n\tcontent: \"\\e635\";\n}\n.tl-icon-googlemaps:after {\n\tcontent: \"\\e635\";\n}\n.tl-icon-web:after {\n\tcontent: \"\\e636\";\n}\n.tl-icon-share-v2:after {\n\tcontent: \"\\e637\";\n}\n.tl-icon-soundcloud:after {\n\tcontent: \"\\e639\";\n}\n.tl-icon-video-v2:after {\n\tcontent: \"\\e63a\";\n}\n.tl-icon-dailymotion:after {\n\tcontent: \"\\e63a\";\n}\n.tl-icon-tumblr:after {\n\tcontent: \"\\e63b\";\n}\n.tl-icon-lastfm:after {\n\tcontent: \"\\e63c\";\n}\n.tl-icon-github:after {\n\tcontent: \"\\e63d\";\n}\n.tl-icon-goback:after {\n\tcontent: \"\\e63e\";\n}\n.tl-icon-goend:after {\n\tcontent: \"\\e969\";\n}\n.tl-icon-prev2:after {\n\tcontent: \"\\ea23\";\n}\n.tl-icon-next2:after {\n\tcontent: \"\\ea24\";\n}\n.tl-icon-doc-v2:after {\n\tcontent: \"\\e63f\";\n}\n.tl-icon-googledrive:after {\n\tcontent: \"\\e640\";\n}\n.tl-icon-facebook:after {\n\tcontent: \"\\e641\";\n}\n.tl-icon-flickr:after {\n\tcontent: \"\\e642\";\n}\n.tl-icon-dribbble:after {\n\tcontent: \"\\e643\";\n}\n.tl-icon-image:after {\n\tcontent: \"\\e605\";\n}\n.tl-icon-vimeo:after {\n\tcontent: \"\\e606\";\n}\n.tl-icon-instagram:after {\n\tcontent: \"\\e644\";\n}\n.tl-icon-pinterest:after {\n\tcontent: \"\\e645\";\n}\n.tl-icon-arrow-left:after {\n\tcontent: \"\\e646\";\n}\n.tl-icon-arrow-down:after {\n\tcontent: \"\\e647\";\n}\n.tl-icon-arrow-up:after {\n\tcontent: \"\\e648\";\n}\n.tl-icon-arrow-right:after {\n\tcontent: \"\\e649\";\n}\n.tl-icon-share:after {\n\tcontent: \"\\e64a\";\n}\n.tl-icon-blockquote:after {\n\tcontent: \"\\e64b\";\n}\n.tl-icon-evernote:after {\n\tcontent: \"\\e64c\";\n}\n.tl-icon-mappin:after {\n\tcontent: \"\\e600\";\n}\n.tl-icon-swipe-right:after {\n\tcontent: \"\\e601\";\n}\n.tl-icon-swipe-left:after {\n\tcontent: \"\\e602\";\n}\n.tl-icon-touch-spread:after {\n\tcontent: \"\\e603\";\n}\n.tl-icon-touch-pinch:after {\n\tcontent: \"\\e604\";\n}\n","/* Disable Text selection when dragging\n================================================== */\n.tl-dragging {\n\t-webkit-touch-callout: none;\n\t\n\t.user-select(none);\n}","/* MenuBar \n================================================== */\n\n.tl-menubar {\n\tposition:absolute;\n\t//width:100%;\n\t//height:\t1px;\n\tz-index:11;\n\ttext-align:center;\n\tcolor:#333;\n\t//height:26px;\n\t//background-color:#FFF;\n\t//.box-shadow(0px -3px 6px rgba(0,0,0,.20));\n\toverflow:hidden;\n\t//margin-top:-25px;\n\t//border-top: 1px solid darken(@color-background,10);\n\t//border-bottom: 1px solid darken(@color-background,10);\n\t//border-right: 1px solid darken(@color-background,10);\n\t\n\t//.border-bottom-radius(7px);\n\tborder-bottom-right-radius: 10px;\n\tborder-top-right-radius: 10px;\n\ttop:100%;\n\tleft:50%;\n\tleft:0;\n}\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-menubar {\n\t\t\n\t}\n}\n\n\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-menubar {\n\t\t\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-menubar {\n\t\t\n\t}\n}\n\n\n/* Color\n================================================== */\n\n// Inverted\n/*\n.tl-sizebar.tl-sizebar-inverted {\n\tborder-bottom: 1px solid #FFF;\n\t//background-color:#000;\n\tcolor:#a5a5a5;\n\t.tl-sizebar-button {\n\t\tborder-left: 1px solid darken(@color-background, 70);\n\t\t//color:#a5a5a5;\n\t}\n\t.tl-sizebar-button:hover {\n\t\t//background:@color-theme;\n\t\tcolor:@color-background;\n\t}\n}\n.tl-sizebar.tl-sizebar-inverted:before {\n\tbackground-color:#000;\n\t//.gradient-vertical (rgba(0,0,0,0.25), rgba(0,0,0,1));\n\t//.translucent-background(rgb(0,0,0), .5);\n\tborder-top: 2px solid #000;\n\tanimation: invertToBlack 1s;\n\t-webkit-animation:invertToBlack 1s; \n}\n*/\n\n@keyframes invertToBlack {\n\tfrom {\n\t\tbackground-color:#FFF;\n\t}\n\tto {\n\t\tbackground-color:#000;\n\t}\n}\n@-webkit-keyframes invertToBlack {\n\tfrom {background:#FFF;}\n\tto {background:#000;}\n}\n@keyframes invertToWhite {\n\tfrom {background-color:#000;}\n\tto {background-color:#FFF;}\n}\n@-webkit-keyframes invertToWhite{\n\tfrom {background:#000;}\n\tto {background:#FFF;}\n}\n\n\n","/* MenuBar Button\n================================================== */\n\n.tl-menubar-button {\n\t//border-left: 1px solid darken(@color-background,10);\n border:none;\n\tfont-size: 18px;\n\tline-height:18px;\n\t//padding: 6px 12px 6px 12px;\n\t//padding:12px;\n\tbackground-color:fadeout(@ui-background-color, 10%);\n\tcursor:pointer;\n\tpadding: 5px 10px 5px 10px;\n\tdisplay:inline-block;\n\tdisplay:block;\n\t//color:@color-text;\n\tcolor:@marker-color-menubar-button;\n\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\n\t}\n\n\t&:disabled {\n\t\topacity:0.33;\n cursor:default;\n\t}\n\t&:hover, &:focus-visible {\n\t\tbackground:@color-foreground;\n\t\tcolor:@color-background;\n\t\t&:disabled {\n\t\t\tcolor:darken(@marker-color,15);\n\t\t\tbackground-color:fadeout(@ui-background-color, 10%);\n\t\t}\n\t}\n}\n\n.tl-mobile {\n\t.tl-menubar-button {\n\t\tdisplay:block;\n\t\t&:hover {\n\t\t\t//background-color:#FFF;\n\t\t\tbackground-color:fadeout(@ui-background-color, 33%);\n\t\t\tcolor:@color-text;\n\t\t}\n\t\t&:active {\n\t\t\tbackground:@color-theme;\n\t\t\tcolor:@color-background;\n\t\t}\n\t}\n}\n\n\n@keyframes invertToBlack {\n\tfrom {\n\t\tbackground-color:#FFF;\n\t}\n\tto {\n\t\tbackground-color:#000;\n\t}\n}\n@-webkit-keyframes invertToBlack {\n\tfrom {background:#FFF;}\n\tto {background:#000;}\n}\n@keyframes invertToWhite {\n\tfrom {background-color:#000;}\n\tto {background-color:#FFF;}\n}\n@-webkit-keyframes invertToWhite{\n\tfrom {background:#000;}\n\tto {background:#FFF;}\n}\n\n\n","/* MESSAGE \n================================================== */\n.tl-message, .tl-message-full {\n\twidth:\t\t\t\t100%;\n\t//max-width: \t\t\t200px;\n\theight:\t\t\t\t100%;\n\tposition: \t\t\tabsolute;\n\t//position: \t\t\trelative;\n\t\n\tdisplay: \t\t\ttable;\n\toverflow: \t\t\thidden;\n\ttop: \t\t\t\t0px;\n\tleft: \t\t\t\t0px;\n\tz-index:\t\t\t99;\n\tmargin:\t\t\t\tauto;\n\ttext-align:\t\t\tcenter;\n\t.tl-message-container {\n\t\tpadding: \t\t\t20px;\n\t\tmargin:20px;\n\t\ttext-align:\t\t\tcenter;\n\t\tvertical-align: \tmiddle;\n\t\tdisplay:table-cell;\n\n\t\t.tl-message-content {\n\t\t\tcolor:#666;\n\t\t\ttext-align: center;\n\t\t\tfont-size: 11px;\n\t\t\tline-height: 13px;\n\t\t\ttext-transform: uppercase;\n\t\t\tmargin-top: 7.5px;\n\t\t\tmargin-bottom: 7.5px;\n\t\t\ttext-shadow: 1px 1px 1px #FFF;\n\t\t\t\n\t\t\tstrong {\n\t\t\t\ttext-transform: uppercase;\n\t\t\t}\n\t\t}\n\t\t.tl-loading-icon {\n\t\t\twidth: 30px;\n\t\t\theight: 30px;\n\t\t\tbackground-color: #666;\n\t\t\tvertical-align: middle;\n\t\t\t.box-shadow(inset 0 1px 2px rgba(255,255,255,.1));\n\t\t\tmargin-left: auto;\n\t\t\tmargin-right: auto;\n\t\t\ttext-align: center;\n\t\t //margin: 100px auto;\n\t\t\t-webkit-animation: rotateplane 1.2s infinite ease-in-out;\n\t\t\tanimation: rotateplane 1.2s infinite ease-in-out;\n\t\t}\n\n\t\t@-webkit-keyframes rotateplane {\n\t\t\t0% { -webkit-transform: perspective(120px) }\n\t\t\t50% { -webkit-transform: perspective(120px) rotateY(180deg) }\n\t\t\t100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg) }\n\t\t}\n\n\t\t@keyframes rotateplane {\n\t\t\t0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg) }\n\t\t\t50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) }\n\t\t\t100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg) }\n\t\t}\n\t}\n}\n.tl-message-full {\n\t.translucent-background(#FFF, 0.80);\n\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t//width: 48px;\n\t\t//height: 48px;\n\t\tcolor:#666;\n\t\tfont-size:72px;\n\t}\n\t.tl-message-container {\n\t\t.tl-message-content {\n\t\t\tfont-size: 22px;\n\t\t\tline-height: 22px;\n\t\t\ttext-shadow: none;\n\t\t\tcolor:#666;\n\t\t\ttext-transform: none;\n\t\t\tfont-weight: normal;\n\t\t\t.tl-button {\n\t\t\t\tdisplay:inline-block;\n\t\t\t\tcursor:pointer;\n\t\t\t\tbackground-color:#FFF;\n\t\t\t\tcolor:#333;\n\t\t\t\tpadding:10px;\n\t\t\t\tmargin-top:10px;\n\t\t\t\t.border-radius(7px)\n\t\t\t}\n\t\t}\n\t}\n\n}\n.tl-message {\n\t\n}","/* TL.TimeNav\n================================================== */\n\n.tl-timenav {\n\t//height:200px;\n\twidth:100%;\n\tbackground-color:@ui-background-color;\n\tposition:relative;\n\toverflow:hidden;\n\t//border-top: 2px solid @ui-background-color;\n\tborder-top: 1px solid darken(@ui-background-color,5);\n\t//border-top: 1px solid #e3e3e3;\n\t//box-shadow: inset 10px 10px 5px 0px rgba(0,0,0,0.75);\n\t//.box-shadow(inset -7px 0px 7px rgba(0,0,0,.30));\n\n\t.tl-timenav-line {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 50%;\n\t\twidth: 1px;\n\t\theight: 100%;\n\t\tbackground-color: darken(@ui-background-color, 10);//@color-theme;//darken(@ui-background-color, 10);\n\t\tz-index: 2;\n\t\tdisplay:none;\n\t\t//box-shadow: 1px 1px 7px rgba(0,0,0,0.3);\n\t\t&:before, &:after {\n\t\t\tfont-family: 'tl-icons';\n\t\t\tspeak: none;\n\t\t\tfont-style: normal;\n\t\t\tfont-weight: normal;\n\t\t\tfont-variant: normal;\n\t\t\ttext-transform: none;\n\t\t\tline-height: 1;\n\t\t\t\n\t\t\t/* Better Font Rendering =========== */\n\t\t\t-webkit-font-smoothing: antialiased;\n\t\t\t-moz-osx-font-smoothing: grayscale;\n\t\t\t\n\t\t\tcolor:@color-theme;\n\t\t\tfont-size:32px;\n\t\t\tline-height:32px;\n\t\t\tposition: absolute;\n\t\t\tleft:-14px;\n\t\t}\n\t\t&:before {\n\t\t\t//content: \"\\e647\";\n\t\t\ttop: -10px;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: \"\\e648\";\n\t\t\tbottom:24px;\n\t\t}\n\t}\n\t.tl-timenav-slider {\n\t\tposition:absolute;\n\t\theight:100%;\n\t\twidth:100%;\n\t\ttop:0;\n\t\t\n\t\t&.tl-timenav-slider-animate {\n\t\t\t\n\t\t\t.property-animation(all, @animation-duration, @animation-ease);\n\t\t\t.animation-timing-cubic-bezier();\n\t\t}\n\t\t.tl-timenav-slider-background {\n\t\t\tposition:absolute;\n\t\t\theight:100%;\n\t\t\twidth:100%;\n\t\t\tcursor:move;\n\t\t\tz-index:6;\n\t\t}\n\t\t.tl-timenav-container-mask {\n\t\t\tposition:absolute;\n\t\t\theight:100%;\n\t\t\ttop:0;\n\t\t\t.tl-timenav-container {\n\t\t\t\tposition:absolute;\n\t\t\t\theight:100%;\n\n\t\t\t\n\t\t\t\t.tl-timenav-item-container {\n\t\t\t\t\t//margin-top:5px;\n\t\t\t\t\tposition:absolute;\n\t\t\t\t\theight:100%;\n\t\t\t\t}\n\t\t\t\n\t\t\t}\n\t\t\n\t\t}\n\t}\n\t\n\t\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-timenav {\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-timenav {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-timenav {\n\n\t}\n}\n","/* TL.TimeMarker\n================================================== */\n\n.tl-timemarker {\n\theight:100%;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\tcursor:pointer;\n\t\n\t/* Animate Left Width and Top\n\t================================================== */\n\t.property-animation(left, @animation-duration, @animation-ease);\n\t.property-animation(top, @animation-duration-fast, @animation-ease);\n\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t.property-animation(width, @animation-duration, @animation-ease);\n\t.animation-timing-cubic-bezier();\n\t\n\n\t&.tl-timemarker-fast {\n\t\t.property-animation(top, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(width, @animation-duration-fast, @animation-ease);\n\t\t.animation-timing-cubic-bezier();\n\n\t\t.tl-timemarker-content-container {\n\t\t\t.property-animation(width, @animation-duration-fast, @animation-ease);\n\t\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t}\n\t\t.tl-timemarker-timespan {\n\t\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t\t.property-animation(width, @animation-duration-fast, @animation-ease);\n\t\t}\n\t}\n\t/* Timespan\n\t================================================== */\n\t.tl-timemarker-timespan {\n\t\tpointer-events: none;\n\t\tposition:absolute;\n\t\tmargin:0;\n\t\twidth:100%;\n\t\theight:100%;\n\t\t//overflow:hidden;\n\t\tbackground-color: fadeout(@marker-color, 85%);\n\t\tborder-top-right-radius:@time-marker-border-radius;\n\t\tborder-top-left-radius:@time-marker-border-radius;\n\t\t\n\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(width, @animation-duration, @animation-ease);\n\t\t.animation-timing-cubic-bezier();\n\t\t//box-shadow: 1px 1px 1px @color-background;\n\t\t//box-sizing: border-box;\n\t\t.tl-timemarker-timespan-content {\n\t\t\tdisplay:none;\n\t\t\tposition:absolute;\n\t\t\twidth:100%;\n\t\t\tbackground-color: @marker-color;\n\t\t\tborder-top-left-radius:@time-marker-border-radius;\n\t\t\tborder-top-right-radius:@time-marker-border-radius;\n\t\t\theight:100px;\n\t\t\tbox-sizing: border-box;\n\t\t\t\n\t\t\t\n\t\t}\n\t\t\n\t}\n\t\n\t/* Lines\n\t================================================== */\n\t.tl-timemarker-line-right {\n\t\tdisplay:none;\n\t\tright:0px;\n\t\t\n\t}\n\t\n\t.tl-timemarker-line-left {\n\t\twidth:1px;\n\t\tleft:0px;\n\t}\n\t\n\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\tmargin-top:@marker-dot-offset;\n\t\t//margin-bottom:@time-marker-border-radius;\n\t\t//margin-top:10px; \n\t\t//overflow:hidden;\n\t\t//border-top-right-radius:@time-marker-border-radius;\n\t\t//border-top-left-radius:@time-marker-border-radius;\n\t\t//margin-top:10%;\n\t\t.border-box();\n\t\tborder-left: 1px solid @marker-outline-color;\n\t\t\n\t\tz-index:5;\n\t\t//.border-top-radius(10px);\n\t\tcontent:\" \";\n\t\tposition:absolute;\n\t\t//bottom:0;\n\t\theight:100%;\n\t\t.disable-selection();\n\t\t\n\t\tbox-shadow: 1px 1px 1px @color-background;\n\t\t\n\t\t&:after {\n\t\t\t\n\t\t\tdisplay:block;\n\t\t\tcontent:\" \";\n\t\t\tposition:absolute;\n\t\t\tleft:-4px;\n\t\t\tbottom:0px;\n\t\t\theight:6px;\n\t\t\twidth:6px;\n\t\t\tbackground-color:@marker-dot-color;\n\t\t\tz-index:8;\n\t\t\t.border-radius(50%);\n\t\t}\n\t}\n\t\n\t/* Content\n\t================================================== */\n\t.tl-timemarker-content-container {\n\t\tposition:absolute;\n\t\tbackground-color: @marker-color;\n\t\tborder:0;\n\t\tborder-top-left-radius:@time-marker-border-radius;\n\t\tborder-top-right-radius:@time-marker-border-radius;\n\t\tborder-bottom-right-radius:@time-marker-border-radius;\n\t\theight:100%;\n\t\twidth:100px;\n\t\toverflow:hidden;\n\t\tz-index:6;\n\t\t&:hover {\n\t\t\tz-index: 9;\n\t\t}\n\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(width, @animation-duration, @animation-ease);\n\t\t.animation-timing-cubic-bezier();\n\t\tbox-sizing: border-box;\n\t\tborder: 1px solid @marker-outline-color;\n\t\tbox-shadow: 1px 1px 1px @color-background;\n\t\t\t\t\n\t\t.tl-timemarker-content {\n\t\t\tposition:relative;\n\t\t\toverflow:hidden;\n\t\t\theight:100%;\n\t\t\tz-index:8;\n\t\t\tpadding:5px;\n\t\t\t.border-box();\n\t\t\t\n\t\t\t.tl-timemarker-text {\n\t\t\t\toverflow:hidden;\n\t\t\t\tposition: relative;\n\t\t\t\t\n\t\t\t\th2.tl-headline, h2.tl-headline p {\n\t\t\t\t\tdisplay: -webkit-box;\n\t\t\t\t\t\n\t\t\t\t\tline-clamp: 2;\n\t\t\t\t\t-webkit-line-clamp: 2;\n\t\t\t\t\tbox-orient: vertical;\n\t\t\t\t\t-webkit-box-orient: vertical;\n\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\t\n\t\t\t\t\tfont-size:12px;\n\t\t\t\t\tline-height:12px;\n\t\t\t\t\theight:100%;\n\t\t\t\t\toverflow:hidden;\n\t\t\t\t\tfont-weight:normal;\n\t\t\t\t\tmargin:0;\n\t\t\t\t\tcolor:@marker-text-color;\n\t\t\t\t\tposition: relative;\n\t\t\t\t\t&.tl-headline-fadeout {\n\t\t\t\t\t\t&:after {\n\t\t\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t\t\ttext-align: right;\n\t\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t\tbottom: 0;\n\t\t\t\t\t\t\tright: 0;\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\theight: 50%;\n\t\t\t\t\t\t\t.marker-text-fade(@marker-color,50%);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t.tl-timemarker-media-container {\n\t\t\t\tfloat:left;\n\t\t\t\tmax-width:@marker-icon-size;\n\t\t\t\tmax-height:@marker-icon-size;\n\t\t\t\toverflow:hidden;\n\t\t\t\tmargin-right:5px;\n\t\t\t\theight:100%;\n\t\t\t\t.border-box();\n\t\t\t\t\n\t\t\t\t.tl-timemarker-media {\n\t\t\t\t\tmax-width:@marker-icon-size;\n\t\t\t\t\tmax-height:100%;\n\t\t\t\t\topacity:0.25;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t\t\t\tdisplay:block;\n\t\t\t\t\tfont-size:@marker-icon-size;\n\t\t\t\t\tcolor:@marker-text-color;\n\t\t\t\t\tmargin-top:0px;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.tl-icon-wikipedia {\n\t\t\t\t\tfont-size:16px;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t&.tl-timemarker-content-small {\n\t\t\t\t.tl-timemarker-text {\n\t\t\t\t\th2.tl-headline {\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\twhite-space:nowrap; \n\t\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t.tl-timemarker-media-container {\n\t\t\t\t\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t\t\t\t\tfont-size:@marker-icon-size/2;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\n\t\t\n\t}\n\n\t/* Hover | Focus State\n\t================================================== */\n\t&:hover, &:focus {\n\t\t\n\t\t.tl-timemarker-timespan {\n\t\t\tbackground-color: fadeout(@marker-text-color, 75%);\n\n\t\t\t.tl-timemarker-timespan-content {\n\t\t\t\tbackground-color: @marker-text-color;\n\t\t\t}\n\t\t\t\n\t\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\tborder-color: darken(@marker-color,25);\n\t\t\t\t&:after {\n\t\t\t\t\tbackground-color:@marker-dot-hover-color;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\n\t\t\t\n\t\t}\n\t\t\n\t\t.tl-timemarker-content-container {\n background-color: darken(@marker-color,45);\n\t\t\tborder-color: darken(@marker-color,25);\n\t\t\t.property-animation(height, @animation-duration-fast/2, @animation-ease);\n\t\t\t.property-animation(width, @animation-duration-fast/2, @animation-ease);\n\t\t\t&.tl-timemarker-content-container-small {\n\t\t\t\t//height:56px !important;\n\t\t\t\twidth:200px;\n\t\t\t\t//min-width:100px;\n\t\t\t\t.tl-timemarker-content {\n\t\t\t\t\t.tl-timemarker-text {\n\t\t\t\t\t\th2.tl-headline {\n\t\t\t\t\t\t\t//line-clamp:3 !important;\n\t\t\t\t\t\t\t//-webkit-line-clamp:3 !important;\n\t\t\t\t\t\t\t//white-space: normal !important;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t.tl-timemarker-content {\n\t\t\t\t\n\t\t\t\t.tl-timemarker-text {\n\t\t\t\t\th2.tl-headline {\n\t\t\t\t\t\tcolor:@marker-selected-text-color;\n\t\t\t\t\t\t&.tl-headline-fadeout {\n\t\t\t\t\t\t\t&:after {\n .marker-text-fade(darken(@marker-color,45),80%);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.tl-timemarker-media-container {\n\t\t\t\t\t.tl-timemarker-media {\n\t\t\t\t\t\topacity:1;\n\t\t\t\t\t}\n\t\t\t\t\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t\t\t\t\tcolor:@marker-selected-text-color;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t}\n\t\n\t/* Hover | Focus Active State\n\t================================================== */\n\t&:hover, &:focus {\n\t\t&.tl-timemarker-active {\n\t\t\t.tl-timemarker-content-container {\n\t\t\t\t.tl-timemarker-content {\n\t\t\t\t\t.tl-timemarker-text {\n\t\t\t\t\t\th2.tl-headline {\n\t\t\t\t\t\t\t&.tl-headline-fadeout {\n\t\t\t\t\t\t\t\t&:after {\n\t\t\t\t\t\t\t\t\t//.marker-text-fade(@color-theme,80%);\n\t\t\t\t\t\t\t\t\t.marker-text-fade(@color-background,80%);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\t//border-color:@color-theme;\n\t\t\t\tborder-color:@color-dark;\n\t\t\t\n\t\t\t\t&:after {\n\t\t\t\t\t//z-index:6;\n\t\t\t\t\t//background-color:@color-theme;\n\t\t\t\t\tbackground-color:@color-dark;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n /* Focus-visible State\n ================================================== */\n &:focus-visible {\n outline: none;\n }\n\t\n\t/* Active Markers\n\t================================================== */\n\t&.tl-timemarker-active {\n\t\t\n\t\t.tl-timemarker-timespan {\n\t\t\t//background-color: fadeout(@color-theme, 85%);\n\t\t\t//background-color: fadeout(@color-foreground, 85%);\n\t\t\tbackground-color: fadeout(@color-background,50%);\n\t\t\tz-index: 8;\n\t\t\t.tl-timemarker-timespan-content {\n\t\t\t\t//background-color: @color-theme;\n\t\t\t\tbackground-color: @color-foreground;\n\t\t\t}\n\t\t}\n\t\t\n\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t//border-color:@color-theme;\n\t\t\t//border-color:@color-foreground;\n\t\t\tborder-color:fadeout(@color-foreground, 50%);\n\t\t\tborder-width: 1px;\n\t\t\tz-index:8;\n\t\t\tbox-shadow: 0px 1px 3px fadeout(@marker-dot-color, 50%);\n\t\t\t&:after {\n\t\t\t\t\n\t\t\t\t//background-color:@color-theme;\n\t\t\t\tbackground-color:@color-foreground;\n\t\t\t}\n\t\t}\n\t\t\n\t\t.tl-timemarker-content-container {\n\t\t\t//background-color:@color-theme;\n\t\t\tbackground-color:@color-background;\n\t\t\t//color:@color-background;\n\t\t\tcolor:@color-foreground;\n\t\t\tz-index:9;\n\t\t\t//border: none;\n\t\t\tborder-color:fadeout(@color-foreground, 50%);\n\t\t\t\n\t\t\t//box-shadow:none;\n\t\t\tbox-shadow: 1px 1px 3px fadeout(@marker-dot-color, 50%);\n\t\t\t.tl-timemarker-content {\n\t\t\t\t.tl-timemarker-text {\n\t\t\t\t\th2.tl-headline {\n\t\t\t\t\t\t//color:@marker-selected-text-color;\n\t\t\t\t\t\tcolor:@color-foreground; \n\t\t\t\t\t\t&.tl-headline-fadeout {\n\t\t\t\t\t\t\t&:after {\n\t\t\t\t\t\t\t\t//.marker-text-fade(@color-theme,80%);\n\t\t\t\t\t\t\t\t.marker-text-fade(@color-background,80%);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.tl-timemarker-media-container {\n\t\t\t\t\t.tl-timemarker-media {\n\t\t\t\t\t\topacity:1;\n\t\t\t\t\t}\n\t\t\t\t\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t\t\t\t\t//color:lighten(@color-theme,33);\n\t\t\t\t\t\tcolor:@color-foreground;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\t/* Markers with End Dates\n\t================================================== */\n\t&.tl-timemarker-with-end {\n\t\t\n\t\t.tl-timemarker-timespan {\n\t\t\t.tl-timemarker-timespan-content {\n\t\t\t\tdisplay:block;\n\t\t\t}\n\t\t\t\n\t\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\tz-index:5;\n\t\t\t\t&:after {\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t&:after {\n\t\t\t\tdisplay:block;\n\t\t\t\tcontent:\" \";\n\t\t\t\tposition:absolute;\n\t\t\t\tleft:0px;\n\t\t\t\tbottom:-@marker-dot-offset;\n\t\t\t\theight:6px;\n\t\t\t\twidth:100%;\n\t\t\t\tbackground-color: fadeout(darken(@ui-background-color, 50), 85%);\n\t\t\t\tz-index:6;\n\t\t\t\t.border-radius(7px);\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t.tl-timemarker-content-container {\n\t\t\t\n\t\t\t&.tl-timemarker-content-container-long {\n\t\t\t\tbox-shadow: none;\n\t\t\t}\n\t\t\t.tl-timemarker-content {\n\t\t\t\t\n\t\t\t}\n\t\t}\n\t\t\n\t\t.tl-timemarker-line-right {\n\t\t\tdisplay:block;\n\t\t}\n\t\t.tl-timemarker-line-left {\n\t\t\tbox-shadow: none;\n\t\t}\n\t\t\n\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\n\t\t}\n\t}\n\t\n\t/* Markers with End Dates and Hover\n\t================================================== */\n\t&.tl-timemarker-with-end {\n\t\t&:hover {\n\t\t\t\n\t\t\t.tl-timemarker-timespan {\n\t\t\t\t&:after {\n\t\t\t\t\tbackground-color: fadeout(darken(@ui-background-color,100),65%);\n\t\t\t\t}\n\t\t\t}\n\t\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\t&:after {\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t}\n\t}\n\t\n\t/* Markers with End Dates and Active\n\t================================================== */\n\t&.tl-timemarker-with-end {\n\t\t&.tl-timemarker-active {\n\t\t\t.tl-timemarker-timespan {\n\t\t\t\t&:after {\n\t\t\t\t\t//background-color: fadeout(@color-theme,50%);\n\t\t\t\t\tbackground-color: fadeout(@color-foreground,50%);\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\tborder-width: 1px;\n\t\t\t\t&:after {\n\t\t\t\t\t//background-color:@color-theme !important;\n\t\t\t\t\tbackground-color:@color-foreground !important;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.tl-timemarker-line-left {\n\t\t\t\tbox-shadow: none;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t/* Markers with End Dates and Active and Hover\n\t================================================== */\n\t&.tl-timemarker-with-end {\n\t\t&.tl-timemarker-active {\n\t\t\t&:hover {\n\t\t\t\t.tl-timemarker-timespan {\n\t\t\t\t\t&:after {\n\t\t\t\t\t\t//background-color: fadeout(@color-theme,50%);\n\t\t\t\t\t\tbackground-color: fadeout(@color-foreground,50%);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-timemarker {\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-timemarker {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-timemarker {\n\n\t}\n}\n","/* TL.TimeMarker\n================================================== */\n\n.tl-timeera {\n\theight:100%;\n\theight:40px;\n\tposition:absolute;\n\tbottom:0;\n\tleft:0;\n\tpointer-events: none;\n\tz-index:3;\n\t/* Animate Left Width and Top\n\t================================================== */\n\t.property-animation(left, @animation-duration, @animation-ease);\n\t.property-animation(top, @animation-duration-fast, @animation-ease);\n\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t.property-animation(width, @animation-duration, @animation-ease);\n\t.animation-timing-cubic-bezier();\n\t\n\n\t&.tl-timeera-fast {\n\t\t.property-animation(top, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(width, @animation-duration-fast, @animation-ease);\n\t\t.animation-timing-cubic-bezier();\n\t}\n\t/* Timespan\n\t================================================== */\n\n\t.tl-timeera-background {\n\t\tposition:absolute;\n\t\tbackground-color: @era-color-1;\n\t\twidth:100%;\n\t\theight:100%;\n\t\topacity:1;\n\t}\n\n\t&.tl-timeera-color0 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-0;\n\t\t}\n\t}\n\t&.tl-timeera-color1 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-1;\n\t\t}\n\t}\n\t&.tl-timeera-color2 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-2;\n\t\t}\n\t}\n\t&.tl-timeera-color3 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-3;\n\t\t}\n\t}\n\t&.tl-timeera-color4 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-4;\n\t\t}\n\t}\n\t&.tl-timeera-color5 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-5;\n\t\t}\n\t}\n\t/* Content\n\t================================================== */\n\t.tl-timeera-content-container {\n\t\tposition:absolute;\n\t\t// background-color: @era-color-1;\n\t\tborder:0;\n\t\tborder-top-left-radius:@time-marker-border-radius;\n\t\tborder-top-right-radius:@time-marker-border-radius;\n\t\tborder-bottom-right-radius:@time-marker-border-radius;\n\t\theight:100%;\n\t\twidth:100px;\n\t\toverflow:hidden;\n\t\t// z-index:6;\n\n\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(width, @animation-duration, @animation-ease);\n\t\t.animation-timing-cubic-bezier();\n\t\tbox-sizing: border-box;\n\t\tborder: 1px solid @marker-outline-color;\n\t\t// box-shadow: 1px 1px 1px @color-background;\n\t\t\t\t\n\t\t.tl-timeera-content {\n\t\t\tposition:relative;\n\t\t\toverflow:hidden;\n\t\t\theight:100%;\n\t\t\t// z-index:8;\n\t\t\tpadding:5px;\n\t\t\t.border-box();\n\t\t\t\n\t\t\t.tl-timeera-text {\n\t\t\t\toverflow:hidden;\n\t\t\t\tposition: relative;\n\t\t\t\t\n\t\t\t\theight:100%;\n\t\t\t\t\n\t\t\t\th2.tl-headline {\n\t\t\t\t\tbottom:0px;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tdisplay: -webkit-box;\n\t\t\t\t\t\n\t\t\t\t\tline-clamp: 4;\n\t\t\t\t\t-webkit-line-clamp: 4;\n\t\t\t\t\tbox-orient: vertical;\n\t\t\t\t\t-webkit-box-orient: vertical;\n\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\t\n\t\t\t\t\tfont-size:10px;\n\t\t\t\t\tline-height:10px;\n\t\t\t\t\t// height:100%;\n\t\t\t\t\toverflow:hidden;\n\t\t\t\t\tfont-weight:normal;\n\t\t\t\t\tmargin:0;\n\t\t\t\t\tcolor:@color-background;\n\t\t\t\t\tmargin-left:10px;\n\t\t\t\t\t\n\t\t\t\t\t&.tl-headline-fadeout {\n\t\t\t\t\t\t&:after {\n\t\t\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t\t\ttext-align: right;\n\t\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t\tbottom: 0;\n\t\t\t\t\t\t\tright: 0;\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\theight: 50%;\n\t\t\t\t\t\t\t.marker-text-fade(@marker-color,50%);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\n\t\t\n\t}\n\t\n\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-timeera {\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-timeera {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-timeera {\n\n\t}\n}\n","/* TL.TimeMarker\n================================================== */\n\n.tl-timegroup {\n\t//height:100%;\n\twidth:100%;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\t\n\tbackground-color:@ui-background-color;\n\t\n\tdisplay: -ms-flexbox;\n\tdisplay: -webkit-flex;\n\tdisplay: flex;\n\talign-items: center;\n\t-ms-flex-align: center;\n\t-webkit-align-items: center;\n\t-webkit-box-align: center;\n\t\n\n\t\n\t.tl-timegroup-message {\n\t\t//z-index:6;\n\t\tcolor:darken(@ui-background-color-darker,2);\n\t\ttext-shadow: @color-background 0px 2px 2px;\n\t\tmargin-left:80px;\n\t\t//background-color:@ui-background-color;\n\t\t\n\t}\n\t\n\t&.tl-timegroup-alternate {\n\t\tbackground-color:lighten(@ui-background-color,3);\n\t\t.tl-timegroup-message {\n\t\t\t//background-color:lighten(@ui-background-color,3);\n\t\t}\n\t}\n\t&.tl-timegroup-hidden {\n\t\tdisplay:none;\n\t}\n\t\n\t/* Animate Left Width and Top\n\t================================================== */\n\t.property-animation(left, @animation-duration, @animation-ease);\n\t.property-animation(top, @animation-duration-fast, @animation-ease);\n\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t.property-animation(width, @animation-duration, @animation-ease);\n\t.animation-timing-cubic-bezier();\n\t\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-timegroup {\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-timegroup {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-timegroup {\n\n\t}\n}\n","/* TL.TimeAxis\n================================================== */\n.tl-timeaxis-background {\n\theight:@axis-height;\n\twidth:100%;\n\tposition:absolute;\n\tbottom:0;\n\tleft:0;\n\tbackground-color:@color-background;\n\tborder-top: 1px solid darken(@ui-background-color,5);\n\tz-index:2;\n}\n.tl-timeaxis {\n\theight:@axis-height;\n\twidth:100%;\n\tposition:absolute;\n\tbottom:0;\n\tleft:0;\n\tz-index:3;\n\n\t.tl-timeaxis-content-container {\n\t\tposition:relative;\n\t\tbottom:0;\n\t\theight:@axis-height;\n\t\t.tl-timeaxis-major, .tl-timeaxis-minor {\n\t\t\topacity:0;\n\t\t\tposition:absolute;\n\n\t\t\t.tl-timeaxis-tick {\n\t\t\t\tposition:absolute;\n\t\t\t\tdisplay:block;\n\t\t\t\ttop:0;\n\t\t\t\tleft:0;\n\t\t\t\ttext-align: center;\n\t\t\t\tfont-weight:normal;\n\t\t\t\t//.property-animation(opacity, @animation-duration, @animation-ease);\n\t\t\t\t//.animation-timing-cubic-bezier();\n\t\t\t\t.tl-timeaxis-tick-text {\n\t\t\t\t\tdisplay:inline-block;\n\t\t\t\t\t//width:100%;\n\t\t\t\t\twhite-space: nowrap;\n\n\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\toverflow:hidden;\n\t\t\t\t}\n\t\t\t\t&:before {\n\t\t\t\t\tcontent: \"|\";\n\t\t\t\t\tdisplay:block;\n\t\t\t\t\tcolor:@color-background;\n\t\t\t\t\twidth:1px;\n\t\t\t\t\toverflow:hidden;\n\t\t\t\t\tborder-left: 1px solid @minor-ticks-line-color;\n\t\t\t\t\ttext-align:center;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.tl-timeaxis-animate {\n\t\t\t\t.tl-timeaxis-tick {\n\t\t\t\t\t.property-animation(all, @animation-duration, @animation-ease);\n\t\t\t\t\t.animation-timing-cubic-bezier();\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.tl-timeaxis-animate-opacity {\n\t\t\t\t.tl-timeaxis-tick {\n\t\t\t\t\t.property-animation(opacity, @animation-duration, @animation-ease);\n\t\t\t\t\t.animation-timing-cubic-bezier();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.tl-timeaxis-major {\n\t\t\tz-index:1;\n\t\t\tbackground-color:@color-background;\n\t\t\t.tl-timeaxis-tick {\n\t\t\t\tfont-size:@major-ticks-font-size;\n\t\t\t\tline-height:@major-ticks-font-size + @tick-padding;\n\t\t\t\tcolor:@major-ticks-color;\n\t\t\t\twidth:@major-ticks-width;\n\t\t\t\tmargin-left:-(@major-ticks-width/2);\n\n\t\t\t\t&:before {\n\t\t\t\t\tborder-color:@major-ticks-line-color;\n\t\t\t\t\t//border-left: 2px solid @major-ticks-line-color;\n\t\t\t\t\tfont-size:@major-ticks-font-size + (@tick-padding*3);\n\t\t\t\t\tline-height:@major-ticks-font-size + (@tick-padding*3);\n\t\t\t\t\tmargin-bottom:@tick-padding;\n\t\t\t\t\tmargin-left:(@major-ticks-width/2);\n\t\t\t\t}\n\n\t\t\t\t.tl-timeaxis-tick-text {\n\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.tl-timeaxis-minor {\n\n\t\t\t.tl-timeaxis-tick {\n\t\t\t\tfont-size:@minor-ticks-font-size;\n\t\t\t\tline-height:@minor-ticks-font-size + @tick-padding;\n\t\t\t\tcolor:@minor-ticks-color;\n\t\t\t\twidth:@minor-ticks-width;\n\t\t\t\tmargin-left:-(@minor-ticks-width/2);\n\t\t\t\t.tl-timeaxis-tick-text {\n\t\t\t\t\topacity:0;\n\t\t\t\t\twhite-space: normal;\n\t\t\t\t\tpadding-left:2px;\n\t\t\t\t\tpadding-right:2px;\n\t\t\t\t\tspan {\n\t\t\t\t\t\t//display:none;\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tfont-size:9px;\n\t\t\t\t\t\tline-height:9px;\n\t\t\t\t\t\tmargin-top:-2px;\n\t\t\t\t\t\tcolor:lighten(@minor-ticks-color,15);\n\t\t\t\t\t\t&.tl-timeaxis-timesuffix {\n\t\t\t\t\t\t\t//display:none;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t&:before {\n\t\t\t\t\tfont-size:@minor-ticks-font-size - @tick-padding;\n\t\t\t\t\tline-height:@minor-ticks-font-size - @tick-padding;\n\t\t\t\t\tmargin-left:(@minor-ticks-width/2);\n\t\t\t\t}\n\n\t\t\t\t&.tl-timeaxis-tick-hidden {\n\t\t\t\t\t.tl-timeaxis-tick-text {\n\t\t\t\t\t\topacity:0 !important;\n\t\t\t\t\t}\n\t\t\t\t\t&:before {\n\t\t\t\t\t\topacity:0.33;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\n\t}\n\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-timeaxis {\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-timeaxis {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-timeaxis {\n\n\t}\n}\n",".tlanimate {\n\t-webkit-transform: translateZ(0);\n\t-webkit-perspective: 1000;\n\t-webkit-backface-visibility: hidden;\n}\n.tl-animate {\n\t.property-animation(all, @animation-duration, @animation-ease);\n\t.animation-timing-cubic-bezier();\n}\n\n.tl-animate-opacity {\n\t.property-animation(opacity, @animation-duration, @animation-ease);\n\t.animation-timing-cubic-bezier();\n}","/* SLIDE\n================================================== */\n.tl-slide {\n\tposition:absolute;\n\twidth:100%;\n\theight:100%;\n\tpadding:0;\n\tmargin:0;\n\toverflow-x:hidden;\n\toverflow-y:auto;\n\n\t.tl-slide-background {\n\t\tposition:absolute;\n\t\tleft:0;\n\t\ttop:0;\n\t\twidth:100%;\n\t\theight:100%;\n\t\tz-index:-1;\n\t\toverflow:hidden;\n\t\tdisplay:none;\n\t\t.opacity(50);\n\t\tbackground: no-repeat center center;\n\t\t-webkit-background-size: cover;\n\t\t -moz-background-size: cover;\n\t\t -o-background-size: cover;\n\t\t\t background-size: cover;\n\t}\n\t.tl-slide-scrollable-container {\n\t\tdisplay:table;\n\t\ttable-layout: fixed;\n\t\theight:100%;\n\t\tz-index:1;\n\t}\n\t.tl-slide-content-container {\n\t\tdisplay:table-cell;\n\t\tvertical-align:middle;\n\t\tposition:relative;\n\t\twidth:100%;\n\t\theight:100%;\n\n\t\tz-index:3;\n .tl-slide-content {\n display:table;\n vertical-align:middle;\n direction:rtl; // Text content needs to be read before the media\n padding-left:100px;\n padding-right:100px;\n position:relative;\n max-width:100%;\n user-select: text;\n -webkit-box-sizing: content-box;\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n \n .tl-media {\n direction:ltr;\n position:relative;\n width:100%;\n min-width:50%;\n float: left;\n margin-top:auto;\n margin-bottom:auto;\n img, embed, object, video, iframe {\n\n }\n }\n .tl-text {\n direction:ltr;\n width:50%;\n max-width:50%;\n min-width:120px;\n padding: 0 20px 0 20px;\n display:table-cell;\n vertical-align:middle;\n text-align: left;\n }\n }\n\t}\n\n\t&.tl-slide-titleslide {\n\t\t//background-color:#333;\n\t}\n}\n\n/* Only Media (no text)\n================================================== */\n.tl-slide-media-only {\n\t.tl-slide-content-container {\n\t\t.tl-slide-content {\n\t\t\t//width:100%;\n\t\t\ttext-align:center;\n\t\t\t.tl-media {\n\t\t\t\t//display:table-cell;\n\t\t\t\t//vertical-align:middle;\n\t\t\t\ttext-align:center;\n\t\t\t\tposition:relative;\n\t\t\t\twidth:100%;\n\t\t\t\tmin-width:50%;\n\t\t\t\tmax-width:100%;\n\t\t\t\t//height:100%;\n\t\t\t\tfloat: none;\n\t\t\t\tmargin-top:auto;\n\t\t\t\tmargin-bottom:auto;\n\t\t\t\t//margin-right:auto;\n\t\t\t\timg, embed, object, video, iframe {\n\t\t\t\t\t//width:100%;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.tl-text {\n\t\t\t\twidth:\t\t\t\t100%;\n\t\t\t\tmax-width:\t\t\t100%;\n\t\t\t\tdisplay:\t\t\tblock;\n\t\t\t\tmargin-left:\t\tauto;\n\t\t\t\tmargin-right:\t\tauto;\n\t\t\t\ttext-align: \t\tcenter;\n\t\t\t\th2 {\n\t\t\t\t\t//margin-top: \t20px;\n\t\t\t\t\t//margin-bottom: \t20px;\n\t\t\t\t}\n\t\t\t\t//float:left;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* Only Text (no media)\n================================================== */\n.tl-slide-text-only {\n\t.tl-slide-content-container {\n\t\t.tl-slide-content {\n\t\t\t//width:100%;\n\t\t\ttext-align:center;\n\t\t\t.tl-text {\n\t\t\t\tmax-width:80%;\n\t\t\t\twidth:80%;\n\t\t\t\tdisplay:block;\n\t\t\t\tmargin-left:auto;\n\t\t\t\tmargin-right:auto;\n\t\t\t\t//float:left;\n\t\t\t}\n\t\t}\n\t}\n}\n/* Background\n================================================== */\n\n\n.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {\n\t.slide-text-shadow();\n\n\tp, h1, h2, h3, h4, h5, h6 {\n\t\t.slide-text-shadow();\n\t}\n\ta, b, i, blockquote, blockquote p {\n\t\ttext-shadow: 1px 1px 1px #000;\n\t\tcolor: lighten(@color-theme, 90%);\n\t}\n\ta:hover{\n\t\ttext-decoration: underline;\n\t\tcolor: @color-theme;\n\t}\n\t.tl-caption, .tl-credit {\n\t\t.slide-text-shadow();\n\t}\n\t.tl-media-twitter, .tl-media-blockquote {\n\t\tblockquote {\n\t\t\t.slide-text-shadow();\n\t\t\tp {\n\t\t\t\t.slide-text-shadow();\n\t\t\t}\n\t\t}\n\t}\n\t.vcard {\n\t\ta, .nickname {\n\t\t\t.slide-text-shadow();\n\t\t}\n\t}\n\n}\n\n\n\n/* Full Image Background\n================================================== */\n.tl-slide.tl-full-image-background {\n\tbackground: no-repeat center center;\n\t-webkit-background-size: cover;\n\t -moz-background-size: cover;\n\t -o-background-size: cover;\n\t\t background-size: cover;\n\t//filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale');\n\t//-ms-filter: \"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')\";\n\tbackground-position:center 25%;\n\ttext-shadow: 1px 1px 2px #000;\n\t.tl-slide-content-container {\n\t\t//.translucent-background(#000, 0.50);\n\t}\n\tp, h1, h2, h3, h4, h5, h6 {\n\t\ttext-shadow: 1px 1px 2px #000;\n\t}\n\t.tl-caption, .tl-credit {\n\t\ttext-shadow: 1px 1px 2px #000;\n\t}\n\n\t.tl-media-twitter, .tl-media-blockquote {\n\t\tblockquote {\n\t\t\ttext-shadow: 1px 1px 2px #000 !important;\n\t\t\tp {\n\t\t\t\ttext-shadow: 1px 1px 2px #000 !important;\n\t\t\t}\n\t\t}\n\t}\n\n}\n/* Color Background\n================================================== */\n.tl-slide.tl-full-color-background {\n\n}\n/* Text Background\n================================================== */\n.tl-slide.tl-text-background {\n\t.tl-text {\n\t\t.tl-text-content-container {\n\t\t\tpadding:20px;\n\t\t\t.background-color-opacity(0,0,0, 60);\n\t\t\t.border-radius(7px);\n\t\t\th2 {\n\t\t\t\tmargin-top:5px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\n\t.tl-slide {\n\t\tdisplay:block;\n\t\tpadding-top:10px;\n\t\t.tl-slide-content-container {\n\t\t\tdisplay:block;\n\t\t\tposition:static;\n\t\t\theight:100%;\n\t\t\tdisplay: -webkit-flex; /* Safari */\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\t-webkit-align-items: center; /* Safari 7.0+ */\n\t\t\t.tl-slide-content {\n\t\t\t\tdisplay:block;\n\n \t\t\tdisplay: -webkit-flex; /* Safari */\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction:column;\n\t\t\t\t-webkit-flex-direction:column; /* Safari */\n\t\t\t\tposition:static;\n\t\t\t\theight:auto;\n\t\t\t\tpadding-left:50px;\n\t\t\t\tpadding-right:50px;\n\t\t\t\t.tl-media {\n\t\t\t\t\twidth:100%;\n\t\t\t\t\theight:auto;\n\t\t\t\t\tfloat: none;\n\t\t\t\t\tdisplay:block;\n\t\t\t\t\t//margin-top:20px;\n\t\t\t\t\tpadding-top:20px;\n\t\t\t\t\t//padding-bottom:20px;\n\t\t\t\t\tborder-top: 1px solid @ui-background-color-darker;\n\t\t\t\t}\n\t\t\t\t.tl-text {\n\t\t\t\t\tdisplay:block;\n\t\t\t\t\theight:auto;\n\t\t\t\t\tvertical-align:initial;\n\t\t\t\t\tposition:static;\n\t\t\t\t\twidth:100%;\n\t\t\t\t\tmax-width:100%;\n\t\t\t\t\tmin-width:0;\n\t\t\t\t\tfloat:none;\n\t\t\t\t\tpadding: 0;\n\n\t\t\t\t\t.tl-text-content-container {\n\t\t\t\t\t\tpadding-left:10px;\n\t\t\t\t\t\tpadding-right:10px;\n\t\t\t\t\t\tpadding-bottom:10px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.tl-slide.tl-full-color-background, &.tl-full-image-background {\n\t\t\t.tl-slide-content-container {\n\t\t\t\t.tl-slide-content {\n\t\t\t\t\t.tl-media {\n\t\t\t\t\t\tborder-color: fadeout(@ui-background-color-darker,75);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.tl-slide-media-only {\n\t\t\t.tl-slide-content-container {\n\t\t\t\t.tl-slide-content {\n\t\t\t\t\tflex-direction:column;\n\t\t\t\t\t-webkit-flex-direction:column; /* Safari */\n\t\t\t\t\t.tl-media {\n\t\t\t\t\t\tborder-top: none;\n\t\t\t\t\t\tpadding-top:0px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\t}\n}\n\n\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-storyslider {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-slide {\n\t\t.tl-slide-content-container {\n\t\t\t.tl-slide-content {\n\t\t\t\t.tl-media {\n\t\t\t\t\timg, embed, object, video, iframe {\n\t\t\t\t\t\tmax-height:175px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","/* SlideNav\n================================================== */\n\n/* NAVIGATION\n================================================== */\n.tl-slidenav-previous, .tl-slidenav-next {\n\tposition:absolute;\n\ttop: 45%;\n\tz-index:10;\n\tcursor:pointer;\n padding: 0;\n outline-offset:5px;\n background-color: transparent;\n border: none;\n text-align: inherit;\n text-transform: inherit;\n font-family: inherit;\n font-size: inherit;\n font-weight: inherit;\n\n .tl-slidenav-content-container {\n\t\twidth:100px;\n\t\tposition:absolute;\n\t}\n\t.tl-slidenav-title, .tl-slidenav-description {\n\t\t//width:100%;\n\t\t//word-break:break-all;\n\t\twidth:80px;\n\t\t-webkit-line-clamp: 2;\n\t\t\t line-clamp: 2;\n\t\ttext-overflow: ellipsis;\n\t //-ms-word-break: break-all;\n\t // word-break: break-all;\n\n\t /* Non standard for webkit */\n\t // word-break: break-word;\n\t /*\n\t -webkit-hyphens: auto;\n\t -moz-hyphens: auto;\n\t -ms-hyphens: auto;\n\t hyphens: auto;\n\t\t*/\n\t\ta {\n\t\t\t\n\t\t}\n\t\tsmall {\n\t\t\tdisplay:block;\n\t\t}\n\t}\n\t.tl-slidenav-title {\n\t\tmargin-top:10px;\n\t\t.opacity(@opacity-slide-nav-title);\n\t\tfont-size: @base-font-size-small;\n\t\tline-height: @base-font-size-small;\n\t\t//font-weight: bold;\n\t}\n\t.tl-slidenav-description {\n\t\tfont-size: @base-font-size-small;\n\t\tmargin-top:5px;\n\t\t.opacity(@opacity-slide-nav-desc);\n\t\tsmall {\n\t\t\tdisplay:none;\n\t\t}\n\t}\n\t\n}\n\n/* NAVIGATION COLOR\n================================================== */\n.tl-slidenav-previous, .tl-slidenav-next {\n\t.tl-slidenav-content-container {\n\t\t.tl-slidenav-icon, .tl-slidenav-title, .tl-slidenav-description {\n\t\t\ttext-shadow: 1px 1px 1px @color-background;\n\t\t\tcolor: @color-foreground;\n\t\t}\n\t}\n\t.tl-slidenav-content-container.tl-slidenav-inverted {\n\t\t.tl-slidenav-icon, .tl-slidenav-title, .tl-slidenav-description {\n\t\t\tcolor:@color-text-inverted;\n\t\t\ttext-shadow: 1px 1px 1px @color-foreground;\n\t\t}\n\t}\n}\n\n/* ICONS\n================================================== */\n.tl-slidenav-next, .tl-slidenav-previous {\n\t.tl-slidenav-icon {\n\t\tfont-family: 'tl-icons';\n\t\tspeak: none;\n\t\tfont-style: normal;\n\t\tfont-weight: normal;\n\t\tfont-variant: normal;\n\t\ttext-transform: none;\n\t\tline-height: 1;\n\t\t-webkit-font-smoothing: antialiased;\n\t\t-moz-osx-font-smoothing: grayscale;\n\t\tfont-size:32px;\n\t\tmargin-bottom: 5px;\n\t}\n}\n\n.tl-slidenav-next {\n\ttext-align: right;\n\tmargin-right:10px;\n right: 100px;\n\t.tl-slidenav-title, .tl-slidenav-description {\n\t\tmargin-left:20px;\n\t}\n\t.tl-slidenav-icon {\n\t\tmargin-left: 100 - 24px;\n\t}\n\t.tl-slidenav-icon:before {\n\t\tcontent: \"\\e64f\";\n\t}\n}\n.tl-slidenav-previous {\n\ttext-align: left;\n\tmargin-left:10px;\n\t.tl-slidenav-icon {\n\t\tmargin-left: 0px;\n\t}\n\t.tl-slidenav-icon:before {\n\t\tcontent: \"\\e650\";\n\t}\n}\n\n\n\n/* NAVIGATION HOVER\n================================================== */\n.tl-slidenav-previous, .tl-slidenav-next {\n &:hover, &:focus-visible {\n .tl-slidenav-title {\n .opacity(100);\n }\n .tl-slidenav-description {\n .opacity(@opacity-slide-nav-desc-hover);\n }\n }\n}\n.tl-slidenav-next {\n &:hover, &:focus-visible {\n .tl-slidenav-icon {\n margin-left: 100 - 20px;\n }\n }\n}\n.tl-slidenav-previous {\n &:hover, &:focus-visible {\n .tl-slidenav-icon {\n margin-left: -4px;\n }\n }\n}\n\n// Mobile, iPhone and skinny\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n\t.tl-slidenav-previous, .tl-slidenav-next {\n\t\t\n\t}\n} \n.tl-skinny {\n\t.tl-slidenav-next {\n\t right: 32px;\n\t\t.tl-slidenav-icon {\n\t\t\tmargin-left:32 - 24px;\n\t\t}\n\t}\n\t.tl-slidenav-previous, .tl-slidenav-next {\n\t\t.tl-slidenav-content-container {\n\t\t\twidth:32px;\n\t\t\theight:32px;\n\t\t}\n\t\t.tl-slidenav-title, .tl-slidenav-description {\n\t\t\tdisplay:none;\n\t\t}\n\t\t.tl-slidenav-icon {\n\t\t\t.opacity(33);\n\t\t}\n\t}\n\t.tl-slidenav-next {\n &:hover, &:focus-visible {\n .tl-slidenav-icon {\n margin-left:32 - 20px;\n .opacity(100);\n }\n }\n\t}\n\t.tl-slidenav-previous {\n &:hover, &:focus-visible {\n .tl-slidenav-icon {\n margin-left: -4px;\n .opacity(100);\n }\n }\n\t}\n\t\n}\n\n\n\n.tl-layout-landscape.tl-mobile {\n .tl-slidenav-next {\n &:hover {\n /**\n * On mobile the hover state stays on the button after the click\n * Show the default margin as before the click\n */\n .tl-slidenav-icon {\n margin-left: 100 - 24px;\n .opacity(100);\n }\n }\n\n &:active {\n .tl-slidenav-icon {\n margin-left: 100 - 20px;\n }\n }\n }\n .tl-slidenav-previous {\n &:hover {\n /**\n * On mobile the hover state stays on the button after the click\n * Show the default margin as before the click\n */\n .tl-slidenav-icon {\n margin-left: 0px;\n .opacity(100);\n }\n }\n\n &:active {\n .tl-slidenav-icon {\n margin-left: -4px;\n }\n }\n }\n}\n\n.tl-layout-portrait.tl-mobile {\n\t.tl-slidenav-next:hover {\n\t\t.tl-slidenav-icon {\n\t\t .opacity(33);\n\t\t}\n\t}\n\t.tl-slidenav-next:active {\n\t\t.tl-slidenav-icon {\n\t\t .opacity(100);\n\t\t}\n\t}\n\t.tl-slidenav-previous:hover {\n\t\t.tl-slidenav-icon {\n\t\t\t.opacity(33);\n\t\t}\n\t}\n\t.tl-slidenav-previous:active {\n\t\t.tl-slidenav-icon {\n\t\t .opacity(100);\n\n\t\t}\n\t}\n}\n\n.tl-mobile, .tl-skinny.tl-mobile, .tl-skinny.tl-layout-landscape.tl-mobile, .tl-skinny.tl-layout-portrait.tl-mobile {\n\t.tl-slidenav-previous, .tl-slidenav-next {\n\t\tdisplay:none;\n\t}\n}\n","/* StorySlider\n================================================== */\n\n/* SLIDER CONTAINERS\n================================================== */\n.tl-storyslider {\n\twidth:100%;\n\theight:100%;\n\toverflow:hidden;\n\t.user-select(none);\n\tposition:relative;\n\tbox-sizing:content-box;\n\t//.box-shadow(1px 1px 7px rgba(0,0,0,.30));\n\n\tz-index:8;\n\timg, embed, object, video, iframe {\n\t\tmax-width: 100%;\n\t\tposition:relative;\n\t}\n\t.tl-slider-background {\n\t\tposition:absolute;\n\t\ttop:0;\n\t\tleft:0;\n\t\twidth:100%;\n\t\theight:100%;\n\t\tz-index:1;\n\n\t}\n\t.tl-slider-touch-mask {\n\t\twidth:100%;\n\t\theight:100%;\n\t\tz-index:25;\n\n\t\ttop:0px;\n\t\tleft:0px;\n\t\tposition: absolute;\n\t}\n\t.tl-slider-container-mask {\n\t\ttext-align: center;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\t//overflow: scroll;\n\t\tposition: relative;\n\t\tz-index:5;\n\t\t.tl-slider-container {\n\t\t\tposition: absolute;\n\t\t\ttop: 0px;\n\t\t\tleft: 0px;\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\ttext-align: center;\n\n\t\t\t.tl-slider-item-container {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tdisplay:table-cell;\n\t\t\t\tvertical-align:middle;\n\n\t\t\t}\n\t\t}\n\t}\n\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-storyslider {\n\t\t.tl-slider-container-mask {\n\n\t\t\t.tl-slider-container {\n\t\t\t\t.tl-slider-item-container {\n\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-storyslider {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-storyslider {\n\n\t}\n}\n","/* Requires Variables.less\n================================================== */\n.tl-media {\n\t//display:table-cell;\n\t//vertical-align:middle;\n\twidth:100%;\n\tmin-width:50%;\n\theight:100%;\n\tfloat: left;\n\tmargin-top:auto;\n\tmargin-bottom:auto;\n\tposition:relative;\n\t//margin-right:auto;\n\n\t.tl-media-content-container {\n\t\t&.tl-media-content-container-text {\n\t\t\tborder-right: 1px solid @ui-background-color-darker;\n\t\t\tpadding-right:20px;\n\t\t}\n\t\t.tl-media-content{\n\t\t\tposition: relative;\n\t\t\t.clearfix();\n\n\t\t\t.tl-media-loaderror {\n\t\t\t\tp {\n\t\t\t\t\tcolor:@ui-background-color;\n\t\t\t\t\tspan {\n\t\t\t\t\t\tcolor:@ui-background-color;\n\t\t\t\t\t}\n\t\t\t\t\ttext-align:center;\n\t\t\t\t\tem {\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t\t\t\tfont-size:@base-font-size-xlarge;\n\t\t\t\t\tcolor:@ui-background-color;\n\t\t\t\t\ttext-align:center;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\timg, embed, object, video {\n\t\t\t\tmax-width: 100%;\n\t\t\t\tmax-height:100%;\n\t\t\t}\n\n\t\t}\n\t}\n}\n\n/* Media Only Slides\n================================================== */\n.tl-slide-media-only {\n\t.tl-media {\n\t\t.tl-media-content-container {\n\t\t\t&.tl-media-content-container-text {\n\t\t\t\tborder-right: none;\n\t\t\t\tpadding-right:0;\n\t\t\t}\n\t\t}\n\t}\n\n}\n\n/* Media Shodow\n================================================== */\n\n.tl-media-shadow {\n\tposition: relative;\n\tz-index: 1;\n\t//display:block;\n\t//background:@color-background;\n\t//.box-shadow(1px 1px 7px rgba(0,0,0,.50));\n\t.box-shadow(0 12px 10px -10px rgba(0,0,0,.60));\n\n}\n\n.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {\n\ta, .vcard a {\n\t\ttext-shadow: 1px 1px 1px #000;\n\t\tcolor: lighten(@color-theme, 90%);\n\t}\n\ta:hover{\n\t\ttext-decoration: underline;\n\t\tcolor: @color-theme;\n\t}\n}\n/* Credit\n================================================== */\n.tl-credit {\n\tcolor: @color-text-credit;\n\ttext-align: right;\n\tdisplay: block;\n\tmargin: 0 auto;\n\tmargin-top: 6px;\n\tfont-size: @base-font-size-small - 1;\n\tline-height: 13px;\n}\n\n/* Caption\n================================================== */\n.tl-caption {\n\ttext-align: left;\n\tmargin-right: auto;\n\tmargin-left: auto;\n\tmargin-top: 10px;\n\tcolor: #666666;\n\tfont-size: @base-font-size-small;\n\tline-height: 14px;\n\ttext-rendering: optimizeLegibility;\n\tword-wrap: break-word;\n}\n\n/* Full Image Background\n================================================== */\n.tl-full-image-background, .tl-full-color-background {\n\n\t.tl-media-shadow:before, .tl-media-shadow:after {\n\t\tbackground: none;\n\t\t.box-shadow(0 0px 0px #000);\n\t}\n\n}\n.tl-full-image-background {\n\n}\n\n.tl-full-color-background {\n\n}\n\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-media {\n\t\twidth:100%;\n\t\theight:auto;\n\t\tfloat: none;\n\t\tdisplay:block;\n\t\t.tl-media-content-container {\n\t\t\t&.tl-media-content-container-text {\n\t\t\t\tborder-right: 0;\n\t\t\t\tpadding-right:0;\n\t\t\t}\n\t\t\t.tl-media-content{\n\n\t\t\t}\n\n\t\t\t.tl-credit, .tl-caption {\n\t\t\t\tmargin-top: 2px;\n\t\t\t\tpadding-left:10px;\n\t\t\t\tpadding-right:10px;\n\t\t\t\tfont-size:8px;\n\t\t\t}\n\t\t\t.tl-credit {\n\t\t\t\tmargin-top: 0px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-media {\n\t\twidth:100%;\n\t\theight:auto;\n\t\tfloat: none;\n\t\tdisplay:block;\n\n\t\t.tl-media-content-container {\n\t\t\t&.tl-media-content-container-text {\n\t\t\t\tborder-right: 0;\n\t\t\t\tpadding-right:0;\n\t\t\t}\n\t\t\t.tl-media-content{\n\n\t\t\t}\n\t\t\t.tl-credit {\n\n\t\t\t}\n\t\t\t.tl-caption {\n\n\t\t\t}\n\n\t\t}\n\t}\n}\n","/* Requires Variables.less\n================================================== */\n\n.tl-text {\n\twidth:50%;\n\tmax-width:50%;\n\tmin-width:120px;\n\tpadding: 0 20px 0 20px;\n\tdisplay:table-cell;\n\tvertical-align:middle;\n\ttext-align: left;\n\t//float:left;\n\ttext-shadow: none;\n\tcolor:@color-text;\n\tp {\n\t\tcolor:@color-text;\n\t}\n\t.tl-text-content-container {\n\t\t.tl-text-content{\n\n\t\t}\n .tl-text-headline-container {\n display: flex;\n flex-direction:column-reverse;\n -webkit-flex-direction:column-reverse; /* Safari */\n }\n\t}\n\th2.tl-headline-title, h2.tl-headline {\n\t\tmargin-top:0;\n\t}\n\t.tl-headline-date, h3.tl-headline-date {\n\t\tfont-family:@font-main;\n\t\tfont-size:@base-font-size;\n\t\tline-height: @base-font-size;\n\t\tfont-weight: normal;\n\t\tmargin:0 0 3px 0;\n\t\tcolor: lighten(@color-text,25);\n\t\tsmall {\n\t\t\tfont-size:@base-font-size;\n\t\t\tline-height: @base-font-size;\n\t\t\tfont-weight: normal;\n\t\t\tcolor: lighten(@color-text,25);\n\t\t}\n\t}\n\t.tl-text-date {\n\t\tdisplay:inline-block;\n\t\tfont-family:@font-main;\n\t\tfont-weight:normal;\n\t\tmargin-top:10px;\n\t\tfont-size:12px;\n\t\tcolor: lighten(@color-text,25);\n\t\t&:after {\n\t\t\t//margin-left:3px;\n\t\t\t//color:#999;\n\t\t\t//font-weight:normal;\n\t\t}\n\t}\n\n}\n\n// When the background is an image\n.tl-full-image-background, .tl-full-color-background {\n\t.tl-text, .tl-text p {\n\t\tcolor: @color-text-inverted !important;\n\t\ttext-shadow: 1px 1px 2px #000;\n\t\t.tl-headline-date, h3.tl-headline-date {\n\t\t\tcolor: @color-text-inverted !important;\n\t\t\tsmall {\n\t\t\t\tcolor: @color-text-inverted !important;\n\t\t\t}\n\t\t}\n\t\ta:hover {\n\t\t\ttext-decoration: underline;\n\t\t\tcolor: @color-theme;\n\t\t}\n\t}\n}\n\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-text {\n\t\twidth:100%;\n\t\tmax-width:100%;\n\t\tmin-width:auto;\n\t\tfloat:none;\n\t\tmargin-top:20px;\n\t\t.tl-text-content-container {\n\t\t\t.tl-text-content{\n\n\t\t\t}\n\t\t}\n\t\th2.tl-headline-title, h2.tl-headline {\n\t\t\t//word-break: break-all;\n\t\t\tfont-size:32px;\n\t\t\tline-height:36px;\n\t\t}\n\t}\n}\n\n/* Medium\n================================================== */\n.tl-medium {\n\t.tl-text {\n\t\th2.tl-headline-title, h2.tl-headline {\n\t\t\t//word-break: break-all;\n\t\t\tfont-size:32px;\n\t\t\tline-height:36px;\n\t\t}\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\n}\n",".tl-media {\n\t.tl-media-image {\n\t\t\n\t}\n\n}\n\n.tl-mobile.tl-skinny {\n\t.tl-media {\n\t\t.tl-media-image {\n\t\t\tmax-height:250px !important;\n\t\t}\n\n\t}\n}",".tl-media {\n\t.tl-media-twitter {\n\t\ttext-align:left;\n\t\t//margin-left: auto;\n\t\t//margin-right: auto;\n\t\t//margin-bottom:@base-space;\n\t\tclear:both;\n\t\tblockquote {\n\t\t\tmargin:0;\n\t\t\tmargin-right: \t@base-spacing;\n\t\t\tfont-size: \t\t@base-font-size;\n\t\t\tline-height:\tfloor(@base-font-size * @base-line-height);\n\t\t\tcolor:\t\t\t@color-foreground;\n\t\t\tp {\n\t\t\t\tfont-size: \t\t@base-font-size-xlarge;\n\t\t\t\tline-height: \tfloor(@base-font-size-xlarge * 1.1);\n\t\t\t\tcolor:\t\t\t@color-dark;\n\t\t\t}\n\t\t\t.quote-mark {\n\t\t\t\t\n\t\t\t}\n\t\t}\n\t\tblockquote p:before {\n\t\t\tdisplay:none;\n\t\t}\n\t\tblockquote p:after {\n\t\t\tdisplay:none;\n\t\t}\n\t\t\n\t\t.tl-icon-twitter {\n\t\t\tcolor:#55ACEE;\n\t\t}\n\t\t.vcard {\n\t\t\ta:hover, a.tl-date:hover {\n\t\t\t\ttext-decoration: none;\n\t\t\t\tcolor:#55ACEE;\n\t\t\t\t.fn, .nickname {\n\t\t\t\t\tcolor:#55ACEE;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\n\t}\n\n}\n.tl-slide-media-only {\n\t.tl-media {\n\t\t.tl-media-twitter {\n\t\t\twidth:80%;\n\t\t\tmargin-left:auto;\n\t\t\tmargin-right:auto;\n\t\t}\n\t}\n}\n.tl-mobile.tl-skinny {\n\t.tl-media {\n\t\t.tl-media-twitter {\n\t\t\t\n\t\t\tblockquote {\n\t\t\t\tp {\n\t\t\t\t\tfont-size: \t\t@base-font-size;\n\t\t\t\t\tline-height:\tfloor(@base-font-size * @base-line-height);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n}\n.tl-skinny {\n\t\n\t.tl-media {\n\t\t.tl-media-twitter {\n\t\t\tmargin-left:10px;\n\t\t\tmargin-right:10px;\n\t\t\tblockquote {\n\t\t\t\tp {\n\t\t\t\t\tfont-size: \t\t@base-font-size-large;\n\t\t\t\t\tline-height:\tfloor(@base-font-size-large * 1.1);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n}\n",".tl-media {\n\t.tl-media-blockquote {\n\t\ttext-align:left;\n\t\tclear:both;\n\t\t\n\t\tblockquote {\n\t\t\tmargin:0;\n\t\t\tmargin-right: \t@base-spacing;\n\t\t\ttext-align: \tleft;\n\t\t\tfont-size: \t\t@base-font-size-xlarge;\n\t\t\tline-height: \tfloor(@base-font-size-xlarge * 1.1);\n\t\t\tcolor:\t\t\t@color-foreground;\n\t\t\tp {\n\t\t\t\tfont-size: \t\t@base-font-size-xlarge;\n\t\t\t\tline-height: \tfloor(@base-font-size-xlarge * 1.1);\n\t\t\t\tcolor:\t\t\t@color-foreground;\n\t\t\t\t&:before, &:after {\n\t\t\t\t\tdisplay:inline-block;\n\t\t\t\t\tfont-size: \t\tfloor(@base-font-size-xlarge * 1.3);\n\t\t\t\t\t//line-height: \tfloor(@base-font-size-xlarge * 1.1);\n\t\t\t\t\t//color:\t\t\tlighten(@color-foreground,50);\n\t\t\t\t\t//width:@base-font-size-xlarge;\n\t\t\t\t\t//height:@base-font-size-xlarge;\n\t\t\t\t}\n\t\t\t\t&:before {\n\t\t\t\t\tcontent: open-quote;\n\t\t\t\t\tmargin-right:5px;\n\t\t\t\t}\n\t\t\t\t&:after {\n\t\t\t\t\tcontent: close-quote;\n\t\t\t\t\tmargin-left:3px;\n\t\t\t\t} \n\t\t\t}\n\t\t\tcite {\n\t\t\t\tfont-size: \t\t@base-font-size;\n\t\t\t\tline-height:\tfloor(@base-font-size * @base-line-height);\n\t\t\t\t//color:\t\t\t@color-foreground;\n\t\t\t\tcolor: \t\t\tlighten(@color-foreground, 40%);\n\t\t\t\ttext-align: \tright;\n\t\t\t\tmargin-top: \t@base-spacing;\n\t\t\t}\n\n\t\t}\n\n\n\t}\n\n}\n.tl-slide-media-only {\n\t.tl-media {\n\t\t.tl-media-blockquote {\n\t\t\tborder-right: 0;\n\t\t\twidth:80%;\n\t\t\tmargin-left:auto;\n\t\t\tmargin-right:auto;\n\t\t}\n\t}\n}\n// Skinnier\n@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {\n\t.tl-media {\n\t\t.tl-media-blockquote {\n\t\t\t\n\t\t\tblockquote {\n\t\t\t\tp {\n\t\t\t\t\tfont-size: \t\t@base-font-size-large;\n\t\t\t\t\tline-height:\tfloor(@base-font-size-large * 1.1);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n}\n// Mobile, iPhone and skinny\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n\t.tl-media {\n\t\t.tl-media-blockquote {\n\t\t\t\n\t\t\tblockquote {\n\t\t\t\tp {\n\t\t\t\t\tfont-size: \t\t@base-font-size;\n\t\t\t\t\tline-height:\tfloor(@base-font-size * @base-line-height);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n}",".tl-media {\n\t.tl-media-instagram {\n\t\t\n\t}\n\n}\n\n\n.tl-mobile.tl-skinny {\n\t.tl-media {\n\t\t.tl-media-instagram {\n\t\t\tmax-height:250px !important;\n\t\t}\n\n\t}\n}",".tl-media {\n\t.tl-media-profile {\n\t\tborder-radius: 50%;\n\t}\n\n}\n\n// Mobile, iPhone and skinny\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n\t.tl-media {\n\t\t.tl-media-profile {\n\t\t\n\t\t}\n\n\t}\n}",".tl-media {\n\t.tl-media-iframe {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tiframe {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t}\n\t}\n\n}\n\n// Mobile, iPhone and skinny\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n\t.tl-media {\n\t\t.tl-media-iframe {\n\t\t\n\t\t}\n\n\t}\n}",".tl-media {\n\t.tl-media-wikipedia {\n\t\t//font-size: @base-font;\n\t\t//line-height: @base-line;\n\t\ttext-align:left;\n\t\tmargin-left: auto;\n\t\tmargin-right: auto;\n\t\t//margin-bottom:@base-space;\n\t\tclear:both;\n\t\t.tl-icon-wikipedia {\n\t\t\tfont-size:32px;\n\t\t\tmargin-right:10px;\n\t\t\t//margin-bottom:10px;\n\t\t\tfloat:left;\n\t\t\tpadding-top:3px;\n\t\t\t//padding-right:10px;\n\n\t\t\t//border-right: 1px solid @ui-background-color-darker;\n\t\t}\n\t\t.tl-wikipedia-pageimage {\n\t\t\tfloat:left;\n\t\t\tmargin-right:10px;\n\t\t\tmargin-bottom:5px;\n\t\t\tmargin-top:5px;\n\t\t}\n\t\t.tl-wikipedia-title {\n\t\t\tmargin-left:60px;\n\t\t\tpadding-left:10px;\n\t\t\tborder-left: 1px solid @ui-background-color-darker;\n\t\t\tmargin-bottom:10px;\n\t\t}\n\t\t.tl-wikipedia-source {\n\t\t\t//margin-bottom:@base-space;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 15px;\n\t\t\tfont-style: italic;\n\t\t\t//margin-top:10px;\n\t\t\tmargin-top:3px;\n\t\t\tdisplay:block;\n\t\t\t//margin-left:70px;\n\t\t\tcolor:fadeout(@color-dark, 50);\n\t\t}\n\t\th4 {\n\t\t\tmargin-top:0px;\n\t\t\t//border-bottom: 1px solid @color-line;\n\t\t\tmargin-bottom:0px;\n\t\t\t//margin-left:70px;\n\t\t}\n\t\th4 a {\n\t\t\tcolor:@color-dark; //@color-theme;\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\tp {\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 19px;\n\t\t}\n\n\t}\n\n}\n.tl-slide-media-only {\n\t.tl-media {\n\t\t.tl-media-wikipedia {\n\t\t\tborder-right: 0;\n\t\t\tborder-top: 1px solid @ui-background-color-darker;\n\t\t\twidth:80%;\n\t\t\tmargin-left:auto;\n\t\t\tmargin-right:auto;\n\t\t\tmargin-top:25px;\n\t\t\tpadding-top:25px;\n\t\t}\n\t}\n}\n.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {\n\t.tl-media {\n\t\t.tl-media-wikipedia {\n\t\t\tpadding:20px;\n\t\t\t.background-color-opacity(0,0,0, 60);\n\t\t\t.border-radius(7px);\n\t\t\th4 a {\n\t\t\t\t.slide-text-shadow();\n\t\t\t}\n\t\t\ta:hover{\n\t\t\t\ttext-decoration: underline;\n\t\t\t\tcolor: @color-theme;\n\t\t\t}\n\t\t\t.tl-wikipedia-title {\n\t\t\t\tborder-color: fadeout(@ui-background-color-darker,75);\n\t\t\t}\n\t\t\t.tl-wikipedia-source {\n\t\t\t\tcolor:fadeout(@ui-background-color-darker,15);\n\t\t\t}\n\t\t}\n\t}\n}\n// Mobile, iPhone and skinny\n.tl-mobile.tl-skinny, .tl-skinny{\n\t.tl-media {\n\t\t.tl-media-wikipedia {\n\t\t\tmargin-left: 10px;\n\t\t\tmargin-right: 10px;\n\t\t}\n\n\t}\n}\n",".tl-media {\n\t.tl-media-website {\n\t\t//font-size: @base-font;\n\t\t//line-height: @base-line;\n\t\ttext-align:left;\n\t\tmargin-left: auto;\n\t\tmargin-right: auto;\n\t\t//margin-bottom:@base-space;\n\t\tclear:both;\n\t\t.tl-media-website-description {\n\t\t\t//margin-bottom:@base-space;\n\t\t\tfont-size: 16px;\n\t\t\tline-height: 19px;\n\t\t\tfont-style: italic;\n\t\t\tmargin-bottom:10px;\n\t\t\ttext-transform: uppercase;\n\t\t}\n\t\th4 {\n\t\t\tmargin-top:0px;\n\t\t\t//border-bottom: 1px solid @color-line;\n\t\t\tmargin-bottom:0px;\n\t\t\tline-height:1;\n\t\t}\n\t\th4 a {\n\t\t\tcolor:@color-dark; //@color-theme;\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\tp {\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 19px;\n\t\t}\n\n\t}\n\t.tl-media-content-container {\n\t\t.tl-media-content {\n\t\t\t.tl-media-website {\n\t\t\t\timg {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tmax-width: 120px;\n\t\t\t\t\tmax-height: 120px;\n\t\t\t\t\tmargin: 4px 0 0 15px;\n\t\t\t\t\t&.tl-media-website-icon {\n\t\t\t\t\t\tmax-width: 16px;\n\t\t\t\t\t\tmax-height: 16px;\n\t\t\t\t\t\tfloat:none;\n\t\t\t\t\t\tmargin:0;\n\t\t\t\t\t\tmargin-right:3px;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\t}\n\n}\n.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {\n\t.tl-media {\n\t\t.tl-media-website {\n\t\t\tpadding:20px;\n\t\t\t.background-color-opacity(0,0,0, 60);\n\t\t\t.border-radius(7px);\n\t\t\th4 a {\n\t\t\t\t.slide-text-shadow();\n\t\t\t}\n\t\t\ta:hover{\n\t\t\t\ttext-decoration: underline;\n\t\t\t\tcolor: @color-theme;\n\t\t\t}\n\t\t}\n\t}\n}\n// Mobile, iPhone and skinny\n.tl-mobile.tl-skinny {\n\t.tl-media {\n\t\t.tl-media-website {\n\t\t\tmargin-left: 10px;\n\t\t\tmargin-right: 10px;\n\t\t}\n\n\t}\n}\n","/*!\n\tTimeline JS 3\n\n\tDesigned and built by Zach Wise for the Northwestern University Knight Lab\n\n\tThis Source Code Form is subject to the terms of the Mozilla Public\n\tLicense, v. 2.0. If a copy of the MPL was not distributed with this\n\tfile, You can obtain one at https://mozilla.org/MPL/2.0/.\n\n*/\n\n/* Includes\n================================================== */\n\n@import \"core/Mixins.less\"; \t\t// Less shortcuts and functions\n@import \"Typography.less\";\n\n// Icons\n@import \"icons/Icons.less\";\n\n//\tTL\n@import \"core/TL.less\";\n\n//\tComponents\n@import \"ui/TL.MenuBar.less\";\n@import \"ui/TL.MenuBar.Button.less\";\n@import \"ui/TL.Message.less\";\n\n@import \"timenav/TL.TimeNav.less\";\n@import \"timenav/TL.TimeMarker.less\";\n@import \"timenav/TL.TimeEra.less\";\n@import \"timenav/TL.TimeGroup.less\";\n@import \"timenav/TL.TimeAxis.less\";\n\n@import \"animation/TL.Animate.less\";\n\n@import \"slider/TL.Slide.less\";\n@import \"slider/TL.SlideNav.less\";\n@import \"slider/TL.StorySlider.less\";\n\n@import \"media/TL.Media.less\";\n@import \"media/types/TL.Media.Text.less\";\n@import \"media/types/TL.Media.Image.less\";\n@import \"media/types/TL.Media.Twitter.less\";\n@import \"media/types/TL.Media.Blockquote.less\";\n@import \"media/types/TL.Media.Flickr.less\";\n@import \"media/types/TL.Media.Instagram.less\";\n@import \"media/types/TL.Media.Profile.less\";\n@import \"media/types/TL.Media.YouTube.less\";\n@import \"media/types/TL.Media.IFrame.less\";\n@import \"media/types/TL.Media.Wikipedia.less\";\n@import \"media/types/TL.Media.Website.less\";\n\n/* Timeline\n================================================== */\n\n.tl-timeline {\n\twidth:100%;\n\theight:100%;\n\tfont-size: 16px;\n\tline-height: normal;\n\toverflow:hidden;\n\tposition: relative;\n\t.user-select(none);\n\tbackground-color:@color-background;\n\tcolor:@color-text;\n\t-webkit-box-sizing: content-box;\n\t-moz-box-sizing: content-box;\n\tbox-sizing: content-box;\n\n\t&.tl-timeline-embed {\n\t\tbox-sizing:border-box;\n\t\tborder-top: 1px solid darken(@ui-background-color-darker, 10);\n\t\tborder-bottom: 1px solid darken(@ui-background-color-darker, 10);\n\t\tborder-radius: 0;\n\t}\n\n\t&.tl-timeline-full-embed {\n\t\tbox-sizing:border-box;\n\t\tborder: 1px solid darken(@ui-background-color-darker, 10);\n\t\tborder-radius: 8px;\n\t}\n\n .tl-attribution {\n cursor: pointer;\n z-index:9;\n position:absolute;\n bottom:2px;\n left:0px;\n font-size:10px;\n line-height:10px;\n font-family:@font-sanserif !important;\n background-color: fadeout(@color-background, 15%);\n padding:3px;\n\n a {\n color:@brand-color;\n &:hover, &:focus-visible {\n color:@color-dark;\n text-decoration: none;\n .tl-knightlab-logo {\n background-color: #c34528;\n }\n }\n }\n\n .tl-knightlab-logo {\n display: inline-block;\n vertical-align: middle;\n height: 8px;\n width: 8px;\n margin-right:3px;\n background-color:#c34528;\n background-color:@brand-color;\n transform: rotate(45deg);\n -ms-transform: rotate(45deg);\n -webkit-transform: rotate(45deg);\n }\n\n }\n}\n\n/* Portrait\n================================================== */\n.tl-layout-portrait {\n\t.tl-storyslider {\n\t\t//padding-top:10px;\n\t\t.box-shadow(0px -3px 6px rgba(0,0,0,.20));\n\t}\n}\n\n.tl-rtl{\n\t.tl-text-content, .tl-headline, .tl-media-blockquote, .tl-headline-date, .tl-timeline blockquote p, .tl-media-website, .tl-media-wikipedia, .tl-media .tl-media-blockquote blockquote, .blockquote, blockquote p, .tl-text-content p{\n\t\ttext-align: right;\n\t\tdirection: rtl;\n\t}\n\n\t.tl-slide-media-only{\n\t\t.tl-headline, .tl-headline-date{\n\t\t\ttext-align: center;\n\t\t}\n\t}\n\n\t.tl-timemarker-text{\n\t\tmargin-right: 35px;\n\t}\n\n\t.tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container{\n\t\tfloat:right;\n\t}\n\n\t.tl-caption {\n\t\ttext-align: right;\n\t}\n\n\t.tl-credit {\n\t\ttext-align: left;\n\t}\n\n}\n"],"names":[],"sourceRoot":""}
|
|
1
|
+
{"version":3,"file":"../css/timeline.css","mappings":"AAAA;;;;;;;;;CASC;AACD;oDACoD;AACpD;;uDAEuD;AACvD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;;;;;;;;;CASC;AACD;oDACoD;AACpD;;sEAEsE;AC3CtE;EACC;ED6CC;qDACmD;AACrD;AChDA;;;;;;EAIE;ADoDF;ACxDA;;;EAQE;EACA;ADqDF;AC9DA;;;EAWG;EACA;ADwDH;ACpEA;;;EAgBE;EACA;EACA;ADyDF;AC3EA;;;EAoBG;EACA;AD4DH;ACjFA;EAyBE;EACA;AD2DF;ACrFA;EA4BG;EACA;EACA;EACA;AD4DH;AC3FA;EAoCE;EACA;AD0DF;AC/FA;EAyCE;EACA;EACA;EACA;EAEA;ADwDF;ACvDE;EACC;ADyDH;ACzGA;ED2GE;;;;;;;;;;;;;;;;IAgBE;ECvDD;EACA;ADyDH;ACxDG;;EAEC;AD0DJ;ACpDE;EAAA;IAEE;IACA;IACA;EDsDF;ECrDE;;IAEC;IACA;EDuDH;AACF;AC9IA;;EA+FE;ADmDF;AClJA;;EAmGE;ADmDF;ACtJA;EAsGE;EACA;ADmDF;AC1JA;EA0GE;EACA;ADmDF;AC9JA;;;;EA+GE;EACA;ADqDF;ACrKA;;;;EAkHG;ADyDH;AC3KA;EAuHE;EACA;EACA;EACG;EACK;ADuDV;AClLA;;EA8HE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ADwDF;AC7LA;;EAuIG;EACA;EACA;EACA;EACA;EACA;AD0DH;ACtMA;;EAgJG;AD0DH;AC1MA;EAoJE;EACA;EACA;EACA;EACA;EACA;ADyDF;AClNA;EA6JE;EACA;EACA;EACA;EACA;EACA;ADwDF;AC1NA;EAsKE;ADuDF;AC7NA;EAwKG;ADwDH;AChOA;EAiLE;EACA;EACA;EAGA;EACA;ADgDF;AExFC;;EAEC;EACA;AF0FF;AExFC;EACC;AF0FF;AC/OA;EAyLG;EACA;ADyDH;ACnPA;EA6LG;ADyDH;ACtPA;EAiMG;EACA;ADwDH;AC1PA;EAqMG;ADwDH;AC7PA;;EAuMI;AD0DJ;ACjQA;;EA6MG;ADwDH;ACrQA;EAgNG;EACA;ADwDH;ACzQA;EAqNG;EACA;EACA;ADuDH;AC9QA;EA2NG;EACA;EACA;EACA;ADsDH;ACpRA;EAgOI;EACA;EACA;ADuDJ;ACzRA;EAwOG;EACA;EACA;ADoDH;AC9RA;EA4OI;ADqDJ;ACjSA;EAmPE;EACA;EACA;EACA;EACA;ADiDF;ACxSA;EA0PG;EACA;EACA;EACA;EACA;ADiDH;AC/SA;EAmQE;EACA;EACA;EACA;EACA;EACA;EACA;ECzLA;EACG;EACK;EDyLR;EACA;EACA;ADiDF;ACzCA;EACC;;;IAEE;IACA;ED4CD;AACF;ACrCA;EACC;;;IAEE;IACA;EDwCD;AACF;AClCA;EAEE;ADmCF;AACA;oDACoD;AGhVpD;EACC;EACA;EACA;EAKA;EACA;AH8UD;AG3UA;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EH8UC,sCAAsC;EG3UvC;EACA;AH6UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AGzUA;EACC;AH2UD;AACA;oDACoD;AI9hBpD;EACC;EFoIA;EACG;EACC;EACC;EACG;AF6ZT;AACA;oDACoD;AKviBpD;EACC;EAGA;EACA;EACA;EAIA;EAOA;EACA;EACA;EACA;EACA;AL8hBD;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;;;;;;;;;;;;;;;;;;;;;;CAsBC;AKpgBD;EACC;IACC;ELsgBA;EKpgBD;IACC;ELsgBA;AACF;AKpgBA;EACC;IAAM;ELugBL;EKtgBD;IAAI;ELygBH;AACF;AKxgBA;EACC;IAAM;EL2gBL;EK1gBD;IAAI;EL6gBH;AACF;AK5gBA;EACC;IAAM;EL+gBL;EK9gBD;IAAI;ELihBH;AACF;AACA;oDACoD;AMpnBpD;EAEI;EACH;EACA;EAGA;EACA;EACA;EACA;EACA;EAEA;ANknBD;AM7mBC;EACC;EACM;AN+mBR;AM7mBC;;EACC;EACA;ANgnBF;AM/mBE;;EACC;EACA;ANknBH;AM7mBA;EAEE;AN8mBF;AM7mBE;EAEC;EACA;AN8mBH;AM5mBE;EACC;EACA;AN8mBH;AMxmBA;EACC;IACC;EN0mBA;EMxmBD;IACC;EN0mBA;AACF;AMxmBA;EACC;IAAM;EN2mBL;EM1mBD;IAAI;EN6mBH;AACF;AM5mBA;EACC;IAAM;EN+mBL;EM9mBD;IAAI;ENinBH;AACF;AMhnBA;EACC;IAAM;ENmnBL;EMlnBD;IAAI;ENqnBH;AACF;AACA;oDACoD;AO3rBpD;;EACC;EAEA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;EACA;AP2rBD;AOxsBA;;EAeE;EACA;EACA;EACA;EACA;AP6rBF;AOhtBA;;EAsBG;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AP8rBH;AO3tBA;;EAgCI;AP+rBJ;AO/tBA;;EAoCG;EACA;EACA;EACA;ELgEF;EACG;EACK;EKhEN;EACA;EACA;EAEA;EACA;APgsBH;AO7rBE;EACC;IAAK;EPgsBN;EO/rBC;IAAM;EPksBP;EOjsBC;IAAO;EPosBR;AACF;AOlsBE;EACC;IAAK;EPqsBN;EOpsBC;IAAM;EPusBP;EOtsBC;IAAO;EPysBR;AACF;AOtsBA;ELyFC;AFgnBD;AOzsBA;;EAKE;EACA;APwsBF;AO9sBA;EAUG;EACA;EACA;EACA;EACA;EACA;APusBH;AOttBA;EAiBI;EACA;EACA;EACA;EACA;EACA;ELNF;EACG;EACK;AF+sBV;AACA;oDACoD;AQhyBpD;EAEC;EACA;EACA;EACA;EAEA;ARgyBD;AQvyBA;EAaE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AR6xBF;AQ3xBE;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;ER8xBD,sCAAsC;EQ3xBrC;EACA;EAEA;EACA;EACA;EACA;EACA;AR4xBH;AQ1xBE;EAEC;AR2xBH;AQzxBE;EACC;EACA;AR2xBH;AQ10BA;EAmDE;EACA;EACA;EACA;AR0xBF;AQxxBE;ENlCD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFy0BT;AQ11BA;EA8DG;EACA;EACA;EACA;EACA;AR+xBH;AQj2BA;EAqEG;EACA;EACA;AR+xBH;AQt2BA;EAyEI;EACA;ARgyBJ;AQ12BA;EA+EK;EACA;AR8xBL;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;ASt3BpD;EACC;EACA;EACA;EACA;EACA;ETw3BC;qDACmD;EEx2BpD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;EFs3BP;qDACmD;EACnD;qDACmD;EACnD;qDACmD;EACnD;qDACmD;EACnD;qDACmD;EACnD;wDACsD;EACtD;qDACmD;EACnD;qDACmD;EACnD;qDACmD;EACnD;qDACmD;EACnD;qDACmD;AACrD;AS74BC;EPMA;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFs5BT;ASv5BC;EPMA;EACG;EACE;EACG;AFo5BT;AS75BC;EPMA;EACG;EACE;EACG;AF05BT;ASn7BA;EAkCE;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EPpBD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFo7BT;ASr8BA;EAkDG;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ATs5BH;AS/8BA;EAmEE;EACA;AT+4BF;ASn9BA;EAyEE;EACA;AT64BF;ASv9BA;;EA8EE;EPtCD;EFo7BC,gCAAgC;EEn7B9B;EFq7BF,yBAAyB;EEp7BrB;EO4CJ;EAEA;EAEA;EACA;EAEA;EP/DD;EACE;EACC;EACE;EACC;EACI;EO6DT;AT44BF;AS14BE;;EAEC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EP/BD;EACG;EACK;AF46BV;AS3/BA;EAoHE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EPvGD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;EOmHP;EACA;EACA;AT44BF;ASp5BE;EACC;ATs5BH;ASrhCA;EAyIG;EACA;EACA;EACA;EACA;EPrGF;EFq/BC,gCAAgC;EEp/B9B;EFs/BF,yBAAyB;EEr/BrB;AFu/BN;ASjiCA;EAiJI;EACA;ATm5BJ;ASriCA;;EAqJK;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ATk5BL;ASh5BM;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EP3KN;EF+jCC,WAAW;EE9jCZ;EFgkCC,oBAAoB;EE/jCrB;EFikCC,yBAAyB;EEhkC1B;EFkkCC,iBAAiB;EEjkClB;EFmkCC,UAAU;EElkCX;EFokCC,QAAQ;EEnkCT;EFqkCC,UAAU;AACZ;AS9kCA;EAuLI;EACA;EACA;EACA;EACA;EACA;EPpJH;EF+iCC,gCAAgC;EE9iC9B;EFgjCF,yBAAyB;EE/iCrB;AFijCN;AS3lCA;EAgMK;EACA;EACA;AT85BL;AShmCA;;EAsMK;EACA;EACA;EACA;AT85BL;ASvmCA;EA6MK;AT65BL;ASx5BG;EAGG;EACA;EACA;ATw5BN;AS75BG;;EAUG;ATu5BN;ASz4BC;;EAGE;AT04BH;AS74BC;;EAMG;AT24BJ;ASj5BC;;;;EAUG;AT64BJ;AS54BI;;;;EACC;ATi5BL;AS75BC;;EAqBW;EACT;EP1OF;EACG;EACE;EACG;AFunCT;AS74BG;;EAEC;AT+4BJ;AS16BC;;EA6CK;ATi4BN;AS/3BO;;EPvRN;EF0pCC,WAAW;EEzpCZ;EF2pCC,oBAAoB;EE1pCrB;EF4pCC,yBAAyB;EE3pC1B;EF6pCC,iBAAiB;EE5pClB;EF8pCC,UAAU;EE7pCX;EF+pCC,QAAQ;EE9pCT;EFgqCC,UAAU;AACZ;AS/7BC;;EAyDK;AT04BN;ASn8BC;;;;EA4DK;AT64BN;AS53BQ;;EPrTP;EFqrCC,WAAW;EEprCZ;EFsrCC,oBAAoB;EErrCrB;EFurCC,yBAAyB;EEtrC1B;EFwrCC,iBAAiB;EEvrClB;EFyrCC,UAAU;EExrCX;EF0rCC,QAAQ;EEzrCT;EF2rCC,UAAU;AACZ;ASn5BE;;;;EAkBE;ATu4BJ;ASr4BI;;;;EAGC;ATw4BL;ASh4BI;EACI;ATk4BR;AS73BC;EAKE;EACA;AT23BH;ASj4BC;EASG;AT23BJ;ASp4BC;;EAgBE;EACA;EACA;EACA;ATw3BH;ASv3BG;;EAGC;ATw3BJ;AS/4BC;EA6BE;EAEA;EACA;EAEA;EAGA;ATi3BH;ASt5BC;EA0CK;AT+2BN;AS72BO;EPhYN;EFgvCC,WAAW;EE/uCZ;EFivCC,oBAAoB;EEhvCrB;EFkvCC,yBAAyB;EEjvC1B;EFmvCC,iBAAiB;EElvClB;EFovCC,UAAU;EEnvCX;EFqvCC,QAAQ;EEpvCT;EFsvCC,UAAU;AACZ;ASz6BC;EAuDK;ATq3BN;AS56BC;;EA2DK;ATq3BN;AS52BC;EAIG;AT22BJ;AS/2BC;;EAQG;AT22BJ;ASr2BG;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EPpWF;EACG;EACK;AF4sCV;ASl2BG;EACC;ATo2BJ;ASp4BC;EAwCE;AT+1BH;ASv4BC;EA2CE;AT+1BH;ASj1BI;EACC;ATm1BL;ASl0BI;EAEC;ATm0BL;ASv0BE;;EASE;ATk0BJ;ASj0BI;;EAEC;ATm0BL;AS/0BE;EAgBE;ATk0BJ;ASvzBK;EAEC;ATwzBN;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AUh0CpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EVk0CC;qDACmD;EEpzCpD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;EFk0CP;qDACmD;EACnD;qDACmD;AACrD;AUt0CC;ERKA;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFg1CT;AUj2CA;EA2BE;EACA;EACA;EACA;EACA;AVy0CF;AUt0CC;EAEE;AVu0CH;AUp0CC;EAEE;AVq0CH;AUl0CC;EAEE;AVm0CH;AUh0CC;EAEE;AVi0CH;AU9zCC;EAEE;AV+zCH;AU5zCC;EAEE;AV6zCH;AU13CA;EAmEE;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;ERrDD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;EQgEP;EACA;AV4zCF;AU94CA;EAsFG;EACA;EACA;EAEA;ERlDF;EF62CC,gCAAgC;EE52C9B;EF82CF,yBAAyB;EE72CrB;AF+2CN;AUz5CA;EA8FI;EACA;EAEA;AV6zCJ;AU95CA;EAoGK;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EACA;EACA;EACA;AV0zCL;AUvzCM;EACC;EACA;EACA;EACA;EACA;EACA;EACA;ER7HN;EFu7CC,WAAW;EEt7CZ;EFw7CC,oBAAoB;EEv7CrB;EFy7CC,yBAAyB;EEx7C1B;EF07CC,iBAAiB;EEz7ClB;EF27CC,UAAU;EE17CX;EF47CC,QAAQ;EE37CT;EF67CC,UAAU;AACZ;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AW98CpD;EAEC;EACA;EACA;EACA;EAEA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EX68CC;qDACmD;EEv8CpD;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFq9CT;AWt+CA;EAqBE;EACA;EACA;AXo9CF;AW/8CC;EACC;AXi9CF;AW58CC;EACC;AX88CF;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AY1/CpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AZ4/CD;AY1/CA;EACC;EACA;EACA;EACA;EACA;EACA;AZ4/CD;AYlgDA;EASE;EACA;EACA;AZ4/CF;AYvgDA;;EAaG;EACA;AZ8/CH;AY5gDA;;EAiBI;EACA;EACA;EACA;EACA;EACA;AZ+/CJ;AYrhDA;;EA0BK;EAEA;EAEA;EACA;AZ6/CL;AY3/CI;;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AZ8/CL;AY1/CG;;EV/BF;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFyiDT;AY9/CG;;EVtCF;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFojDT;AY5jDA;EA4DG;EACA;AZmgDH;AYhkDA;EA+DI;EACA;EACA;EACA;EACA;AZogDJ;AYlgDI;EACC;EAEA;EACA;EACA;EACA;AZmgDL;AY9kDA;EAuFI;EACA;EACA;EACA;EACA;AZ0/CJ;AYrlDA;EA6FK;EACA;EACA;EACA;AZ2/CL;AY3lDA;EAmGM;EACA;EACA;EACA;EACA;AZ2/CN;AYr/CI;EACC;EACA;EACA;AZu/CL;AYp/CI;EAEE;AZq/CN;AYn/CK;EACC;AZq/CN;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;Aa/nDpD;EACC;EACA;EACA;AbioDD;Aa/nDA;EXoBC;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AF0nDT;AapoDA;EXeC;EACG;EACE;EACG;EAXR;EACG;EACE;EACG;AFooDT;AACA;oDACoD;AcxpDpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;Ad0pDD;AcjqDA;EAUE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EZ+BA;EACA;EACE;EACK;EYhCP;EACA;EACG;EACE;EACA;Ad6pDP;AcprDA;EA0BE;EACA;EACA;EACA;Ad6pDF;Ac1rDA;EAgCE;EACA;EACA;EACA;EACA;EAEA;Ad4pDF;AclsDA;EAwCY;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;Ad6pDZ;Ac/sDA;EAqDgB;EACA;EACA;EACA;EACA;EACA;EACA;Ad6pDhB;AcxtDA;EAiEgB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;Ad0pDhB;AACA;oDACoD;AchpDpD;EAIG;Ad+oDH;AcnpDA;EAQI;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;Ad6oDJ;Ac7pDA;EAuBI;EACA;EACA;EACA;EACA;EACA;AdyoDJ;AACA;oDACoD;Ac9nDpD;EAIG;Ad6nDH;AcjoDA;EAMI;EACA;EACA;EACA;EACA;Ad8nDJ;AACA;oDACoD;ActnDpD;;EZ1EC;EACA;AFosDD;Ac3nDA;;;;;;;;;;;;;;EZ1EC;EACA;AFqtDD;Ac5oDA;;;;;;;;;;EAOE;EACA;AdipDF;AczpDA;;EAWE;EACA;AdkpDF;Ac9pDA;;;;EZ1EC;EACA;AF8uDD;AcrqDA;;;;EZ1EC;EACA;AFqvDD;Ac5qDA;;;;EZ1EC;EACA;AF4vDD;AcnrDA;;;;EZ1EC;EACA;AFmwDD;AACA;oDACoD;AcvpDpD;EACC;EACA;EACG;EACE;EACA;EAGL;EACA;AdupDD;AchqDA;;;;;;;EAcE;Ad2pDF;AczqDA;;EAiBE;Ad4pDF;Ac7qDA;;EAsBG;Ad2pDH;AcjrDA;;EAwBI;Ad6pDJ;AACA;oDACoD;AACpD;oDACoD;AcppDpD;EAGG;EdopDD,wDAAwD;EElzDzD;EFozDC,0BAA0B;EElzD3B;EAYC;EACG;EACK;AFyyDV;Ac9pDA;EAOI;Ad0pDJ;AACA;oDACoD;AclpDpD;EAGE;EACA;AdkpDF;ActpDA;EAMG;EACA;EACA;EACA;EdmpDD,WAAW;EclpDV;EACA;EACA;EdopDD,gBAAgB;AAClB;AcjqDA;EAcI;EAEG;EdqpDL,WAAW;EcppDT;EACA;EACA;EdspDF,WAAW;EcrpDT;EACA;EACA;EACA;AdupDJ;Ac9qDA;EAyBK;EACA;EACA;EACA;EAEA;EAEA;AdspDL;ActrDA;EAmCK;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AdspDL;AcjsDA;EA8CM;EACA;EACA;AdspDN;AchpDE;;EAII;AdgpDN;Ac1oDE;EAGG;EACA;Ed0oDH,WAAW;AACb;Ac/oDE;EAMI;EACA;Ad4oDN;AACA;oDACoD;AACpD;oDACoD;Ac3nDpD;;;;;EAMM;Ad4nDN;AACA;oDACoD;AACpD;oDACoD;Ae38DpD;;EACC;EACA;EACA;EACA;EACG;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;Af88DJ;Ae39DA;;EAgBE;EACA;Af+8DF;Aeh+DA;;;;EAsBE;EACA;EACK;EACL;Efg9DA,4BAA4B;EAC5B;;;;;GAKC;AACH;Aeh/DA;;;;EAyCG;Af68DH;Aet/DA;;EA6CE;EbAA;EACA;EACE;EACK;EaDP;EACA;Afg9DF;AehgEA;;EAoDE;EACA;EbRA;EACA;EACE;EACK;AFy9DT;AezgEA;;EAwDG;Afq9DH;AACA;oDACoD;Ae/8DpD;;;;;;EAGG;EACA;Afo9DH;Aex9DA;;;;;;EASG;EACA;Afu9DH;AACA;oDACoD;Ael9DpD;;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;Afo9DF;Aeh9DA;EACC;EACA;EACG;Afk9DJ;Aer9DA;;EAKE;Afo9DF;Aez9DA;EAQE;Afo9DF;Ae59DA;EAWE;Afo9DF;Aej9DA;EACC;EACA;Afm9DD;Aer9DA;EAIE;Afo9DF;Aex9DA;EAOE;Afo9DF;AACA;oDACoD;Ae78DhD;;;;EblFF;EACA;EACE;EACK;AFqiET;Aet9DI;;;;EblFF;EACA;EACE;EACK;AF8iET;Aer9DI;;EAEQ;Afu9DZ;Ael9DI;;EAEQ;Afo9DZ;Aez8DA;EAEK;Af08DL;Ae58DA;EAIG;Af28DH;Ae/8DA;;EASG;EACA;Af08DH;Aep9DA;;;;EAaG;Af68DH;Ae19DA;;EbhHE;EACA;EACE;EACK;AF8kET;Ae78DQ;;EAEQ;EbtId;EACA;EACE;EACK;AFslET;Ae78DQ;;EAEQ;Eb9Id;EACA;EACE;EACK;AF8lET;Aev8DQ;Efy8DN;;;aAGW;AACb;Ae78DQ;EAMQ;EbhKd;EACA;EACE;EACK;AF2mET;Aez8DQ;EAEQ;Af08DhB;Aer8DQ;Efu8DN;;;aAGW;AACb;Ae38DQ;EAMQ;EblLd;EACA;EACE;EACK;AF2nET;Aev8DQ;EAEQ;Afw8DhB;Ael8DA;Eb/LE;EACA;EACE;EACK;AFooET;Aex8DA;Eb/LE;EACA;EACE;EACK;AF0oET;Ae98DA;Eb/LE;EACA;EACE;EACK;AFgpET;Aep9DA;Eb/LE;EACA;EACE;EACK;AFspET;Ael8DA;;;;;;;;EAEE;Af08DF;AACA;oDACoD;AACpD;oDACoD;AgBptEpD;EACC;EACA;EACA;Ed+HA;EACG;EACC;EACC;EACG;EcjIR;EACA;EAGA;AhBwtED;AgBjuEA;;;;;EAWE;EACA;AhB6tEF;AgBzuEA;EAeE;EACA;EACA;EACA;EACA;EACA;AhB6tEF;AgBjvEA;EAwBE;EACA;EACA;EAEA;EACA;EACA;AhB2tEF;AgBzvEA;EAiCE;EACA;EACA;EAEA;EACA;AhB0tEF;AgBhwEA;EAwCG;EACA;EACA;EACA;EACA;EACA;AhB2tEH;AgBxwEA;EAgDI;EACA;EACA;EACA;AhB2tEJ;AACA;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AACpD;oDACoD;AiBzxEpD;EAGC;EACA;EACA;EACA;EACA;EACA;EACA;AjByxED;AiBrxEE;EACC;EACA;AjBuxEH;AiBtyEA;EAkBG;AjBuxEH;AE5pEC;;EAEC;EACA;AF8pEF;AE5pEC;EACC;AF8pEF;AiBjzEA;EAuBK;EAIA;AjB0xEL;AiBrzEA;EAyBM;AjB+xEN;AiBxzEA;;EAiCK;EACA;EACA;AjB2xEL;AiB9zEA;;;;EAwCI;EACA;AjB4xEJ;AACA;oDACoD;AiBlxEjD;EACC;EACA;AjBoxEJ;AACA;oDACoD;AiB5wEpD;EACC;EACA;EfoCA;EACG;EACK;AF2uET;AiBzwEA;;;;EAEE;EACA;AjB6wEF;AiBhxEA;;EAME;EACA;AjB8wEF;AACA;oDACoD;AiB3wEpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;AjB6wED;AACA;oDACoD;AiB1wEpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AjB4wED;AACA;oDACoD;AiBzwEpD;;;;EAGE;EfbD;EACG;EACK;AF0xET;AACA;oDACoD;AiBjwEpD;EAEE;EACA;EACA;EACA;AjBkwEF;AiBhwEG;EACC;EACA;AjBkwEJ;AiB3wEA;;EAgBI;EACA;EACA;EACA;AjB+vEJ;AiBlxEA;EAsBI;AjB+vEJ;AACA;oDACoD;AACpD;oDACoD;AiBnvEpD;EAEE;EACA;EACA;EACA;AjBovEF;AiBjvEG;EACC;EACA;AjBmvEJ;AACA;oDACoD;AkBx6EpD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;AlBy6ED;AkBn7EA;EAYE;AlB06EF;AkBt7EA;EAmBY;EACA;EACA;ElBs6EV,WAAW;AACb;AkB57EA;;EAyBE;AlBu6EF;AkBh8EA;;EA4BE;EACA;EACA;EACA;EACA;EACA;AlBw6EF;AkBz8EA;;EAmCG;EACA;EACA;EACA;AlB06EH;AkBh9EA;EA0CE;EACA;EACA;EACA;EACA;EACA;AlBy6EF;AkB95EA;;;;EAEE;EACA;AlBk6EF;AkBr6EA;;;;;;;;EAKG;AlB06EH;AkB/6EA;;;;;;;;EAOI;AlBk7EJ;AkBz7EA;;;;EAWG;EACA;AlBo7EH;AACA;oDACoD;AkB96EpD;EAEE;EACA;EACA;EACA;EACA;AlB+6EF;AkBr7EA;;EAcG;EACA;AlB26EH;AACA;oDACoD;AkBt6EpD;;EAIG;EACA;AlBs6EH;AACA;oDACoD;AACpD;oDACoD;AmB/gFpD;EAGG;AnB+gFH;AoBzhFA;EAEE;EAIA;ApBuhFF;AoB7hFA;EAQG;EACA;EACA;EACA;EACA;ApBwhFH;AoBpiFA;EAcI;EACA;EACA;ApByhFJ;AoBziFA;EAuBG;ApBqhFH;AoB5iFA;EA0BG;ApBqhFH;AoB/iFA;EA8BG;ApBohFH;AoBljFA;;EAkCI;EACA;ApBohFJ;AoBvjFA;;;;EAqCK;ApBwhFL;AoB9gFA;EAGG;EACA;EACA;ApB8gFH;AoB1gFA;EAMK;EACA;ApBugFL;AoBhgFA;EAIG;EACA;ApB+/EH;AoBpgFA;EAQK;EACA;ApB+/EL;AqB9kFA;EAEE;EACA;ArB+kFF;AqBllFA;EAMG;EACA;EACA;EACA;EACA;EACA;ArB+kFH;AqB1lFA;EAaI;EACA;EACA;ArBglFJ;AqB/kFI;;EACC;EACA;ArBklFL;AqB5kFI;EACC;EACA;ArB8kFL;AqB5kFI;EACC;EACA;ArB8kFL;AqB5mFA;EAkCI;EACA;EAEA;EACA;EACA;ArB4kFJ;AqBnkFA;EAGG;EACA;EACA;EACA;ArBmkFH;AqB9jFA;EACC;IAKI;IACA;ErB4jFH;AACF;AqBrjFA;EACC;IAKI;IACA;ErBmjFH;AACF;AsB7nFA;EAGG;AtB6nFH;AuBxoFA;EAEE;AvByoFF;AwB3oFA;EAEE;EACA;AxB4oFF;AwB/oFA;EAKG;EACA;AxB6oFH;AyBnpFA;EAIE;EACA;EACA;EAEA;AzBipFF;AyBzpFA;EAUG;EACA;EAEA;EACA;AzBipFH;AyB/pFA;EAoBG;EACA;EACA;EACA;AzB8oFH;AyBrqFA;EA0BG;EACA;EACA;EACA;AzB8oFH;AyB3qFA;EAiCG;EACA;EACA;EAEA;EACA;EAEA;AzB2oFH;AyBnrFA;EA2CG;EAEA;AzB0oFH;AyBvrFA;EAiDG;EACA;AzByoFH;AyB3rFA;EAsDG;EACA;AzBwoFH;AyBloFA;EAGG;EACA;EACA;EACA;EACA;EACA;EACA;AzBkoFH;AyB9nFA;;EAGG;EzB+nFD,wDAAwD;EE1oFzD;EF4oFC,0BAA0B;EE1oF3B;EAYC;EACG;EACK;AFioFV;AyBzoFA;;EvBDC;EACA;AF8oFD;AyB9oFA;;EAUI;EACA;AzBwoFJ;AyBnpFA;;EAcI;AzByoFJ;AyBvpFA;;EAiBI;AzB0oFJ;AyBpoFA;;EAGG;EACA;AzBqoFH;A0B1uFA;EAIE;EACA;EACA;EAEA;A1BwuFF;A0BhvFA;EAWG;EACA;EACA;EACA;EACA;A1BwuFH;A0BvvFA;EAkBG;EAEA;EACA;A1BuuFH;A0B5vFA;EAwBG;EACA;A1BuuFH;A0BhwFA;EA6BG;EACA;A1BsuFH;A0BpwFA;EAsCK;EACA;EACA;EACA;A1BiuFL;A0BhuFK;EACC;EACA;EACA;EACA;EACA;A1BkuFN;A0BztFA;;EAGG;E1B0tFD,wDAAwD;EEntFzD;EFqtFC,0BAA0B;EEntF3B;EAYC;EACG;EACK;AF0sFV;A0BpuFA;;ExBiBC;EACA;AFutFD;A0BzuFA;;EAUI;EACA;A1BmuFJ;A0B7tFA;EAGG;EACA;A1B6tFH;AACA;oDACoD;A2BpvFpD;EACC;EACA;EACA;EACA;EACA;EACA;EzByEA;EACG;EACC;EACC;EACG;EyB3ER;EACA;EACA;EACA;EACA;A3B0vFD;A2BxvFC;EACC;EACA;EACA;EACA;A3B0vFF;A2BvvFC;EACC;EACA;EACA;A3ByvFF;A2BjxFA;EA4BQ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;A3BwvFR;A2B7xFA;EAwCY;A3BwvFZ;A2BvvFY;;EACI;EACA;A3B0vFhB;A2B5vFY;;EAIQ;A3B4vFpB;A2BzyFA;EAmDY;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;A3ByvFZ;AACA;oDACoD;A2BnvFpD;EzBnBC;EACG;EACK;AFywFT;A2BjvFA;;;;;;;;;;;EAEE;EACA;A3B4vFF;A2B/vFA;;EAQG;A3B2vFH;A2BnwFA;EAaE;A3ByvFF;A2BtwFA;EAiBE;A3BwvFF;A2BzwFA;EAqBE;A3BuvFF;A2B5wFA;EAyBE;A3BsvFF","sources":["webpack://TL/TL.Timeline.less","webpack://TL/./src/less/Typography.less","webpack://TL/./src/less/core/Mixins.less","webpack://TL/./src/less/icons/Icons.less","webpack://TL/./src/less/core/TL.less","webpack://TL/./src/less/ui/TL.MenuBar.less","webpack://TL/./src/less/ui/TL.MenuBar.Button.less","webpack://TL/./src/less/ui/TL.Message.less","webpack://TL/./src/less/timenav/TL.TimeNav.less","webpack://TL/./src/less/timenav/TL.TimeMarker.less","webpack://TL/./src/less/timenav/TL.TimeEra.less","webpack://TL/./src/less/timenav/TL.TimeGroup.less","webpack://TL/./src/less/timenav/TL.TimeAxis.less","webpack://TL/./src/less/animation/TL.Animate.less","webpack://TL/./src/less/slider/TL.Slide.less","webpack://TL/./src/less/slider/TL.SlideNav.less","webpack://TL/./src/less/slider/TL.StorySlider.less","webpack://TL/./src/less/media/TL.Media.less","webpack://TL/./src/less/media/types/TL.Media.Text.less","webpack://TL/./src/less/media/types/TL.Media.Image.less","webpack://TL/./src/less/media/types/TL.Media.Twitter.less","webpack://TL/./src/less/media/types/TL.Media.Blockquote.less","webpack://TL/./src/less/media/types/TL.Media.Instagram.less","webpack://TL/./src/less/media/types/TL.Media.Profile.less","webpack://TL/./src/less/media/types/TL.Media.IFrame.less","webpack://TL/./src/less/media/types/TL.Media.Wikipedia.less","webpack://TL/./src/less/media/types/TL.Media.Website.less","webpack://TL/./src/less/TL.Timeline.Base.less"],"sourcesContent":["/*!\n\tTimeline JS 3 \n\t\n\tDesigned and built by Zach Wise for the Northwestern University Knight Lab\n\t\n\tThis Source Code Form is subject to the terms of the Mozilla Public\n\tLicense, v. 2.0. If a copy of the MPL was not distributed with this\n\tfile, You can obtain one at https://mozilla.org/MPL/2.0/.\n\n*/\n/* Includes \n================================================== */\n/*\tVARIABLES\n\tBASE\n----------------------------------------------------- */\n/* ICON PATH\n================================================== */\n/* TYPEFACE\n================================================== */\n/* COLOR SCHEME\n================================================== */\n/* UI COLOR\n================================================== */\n/* UI\n================================================== */\n/* Animation\n================================================== */\n/* GFX\n================================================== */\n/*!\n\tTimeline JS 3\n\n\tDesigned and built by Zach Wise for the Northwestern University Knight Lab\n\n\tThis Source Code Form is subject to the terms of the Mozilla Public\n\tLicense, v. 2.0. If a copy of the MPL was not distributed with this\n\tfile, You can obtain one at https://mozilla.org/MPL/2.0/.\n\n*/\n/* Includes\n================================================== */\n/*\tMixins.less\n\tSnippets of reusable CSS to develop faster and keep code readable\n * ----------------------------------------------------------------- */\n.tl-timeline {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n /* VCard\n\t================================================== */\n}\n.tl-timeline h1,\n.tl-timeline h2,\n.tl-timeline h3,\n.tl-timeline h4,\n.tl-timeline h5,\n.tl-timeline h6 {\n color: #000;\n}\n.tl-timeline h1,\n.tl-timeline h2,\n.tl-timeline h3 {\n font-size: 28px;\n line-height: 28px;\n}\n.tl-timeline h1 small,\n.tl-timeline h2 small,\n.tl-timeline h3 small {\n font-size: 24px;\n line-height: 24px;\n}\n.tl-timeline h4,\n.tl-timeline h5,\n.tl-timeline h6 {\n font-size: 24px;\n line-height: 24px;\n margin-bottom: 0px;\n}\n.tl-timeline h4 small,\n.tl-timeline h5 small,\n.tl-timeline h6 small {\n font-size: 15px;\n line-height: 15px;\n}\n.tl-timeline h2.tl-headline-title {\n font-size: 38px;\n line-height: 38px;\n}\n.tl-timeline h2.tl-headline-title small {\n display: block;\n margin-top: 5px;\n font-size: 24px;\n line-height: 24px;\n}\n.tl-timeline h2 {\n margin-top: 20px;\n margin-bottom: 5px;\n}\n.tl-timeline p {\n margin-top: 5px;\n margin-bottom: 10px;\n font-size: 15px;\n line-height: 1.42857143;\n color: #666666;\n}\n.tl-timeline p.lead {\n font-size: 24px;\n}\n.tl-timeline p a {\n /*\n\t\t\tcolor: lighten(@color-dark, 40%);\n\t\t\ttext-decoration: none;\n\t\t\tbackground-image: -moz-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: -webkit-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: -o-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: linear-gradient(to bottom, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-repeat: repeat-x;\n\t\t\tbackground-size: 2px 2px;\n\t\t\tbackground-position: 0 @base-font-size+2;\n\t\t\ttext-shadow: -2px -1px 0 white, 2px -1px 0 white, -2px 1px 0 white, 2px 1px 0 white;\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\tcolor:@color-theme;\n\t\t\t\ttext-decoration: none;\n\t\t\t}\n\t\t\t*/\n color: #666666;\n text-decoration: underline;\n}\n.tl-timeline p a:hover,\n.tl-timeline p a:focus {\n color: #c34528;\n}\n@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {\n .tl-timeline p a {\n text-decoration: underline;\n background-image: none;\n text-shadow: none;\n }\n .tl-timeline p a:hover,\n .tl-timeline p a:focus {\n color: #c34528;\n text-decoration: underline;\n }\n}\n.tl-timeline b,\n.tl-timeline strong {\n font-weight: bold;\n}\n.tl-timeline i,\n.tl-timeline em {\n font-style: italic;\n}\n.tl-timeline a {\n text-decoration: none;\n color: #c34528;\n}\n.tl-timeline a:hover {\n text-decoration: underline;\n color: #6e2717;\n}\n.tl-timeline .tl-caption,\n.tl-timeline .tl-credit,\n.tl-timeline .tl-slidenav-next,\n.tl-timeline .tl-slidenav-previous {\n font-size: 11px;\n line-height: 11px;\n}\n.tl-timeline .tl-caption a,\n.tl-timeline .tl-credit a,\n.tl-timeline .tl-slidenav-next a,\n.tl-timeline .tl-slidenav-previous a {\n color: #000;\n}\n.tl-timeline .tl-makelink {\n word-break: break-all;\n word-break: break-word;\n -webkit-hyphens: auto;\n -moz-hyphens: auto;\n hyphens: auto;\n}\n.tl-timeline blockquote,\n.tl-timeline blockquote p {\n font-family: \"Georgia\", \"Times New Roman\", Times, serif;\n color: #999999;\n font-size: 24px;\n line-height: 24px;\n text-align: left;\n background: transparent;\n border: 0px;\n padding: 0px;\n}\n.tl-timeline blockquote cite,\n.tl-timeline blockquote p cite {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 11px;\n color: #666666;\n display: block;\n text-align: right;\n font-style: normal;\n}\n.tl-timeline blockquote cite:before,\n.tl-timeline blockquote p cite:before {\n content: \"\\2014\";\n}\n.tl-timeline blockquote p:before {\n content: open-quote;\n display: inline-block;\n font-size: 28px;\n position: relative;\n top: 8px;\n margin-right: 5px;\n}\n.tl-timeline blockquote p:after {\n content: close-quote;\n display: inline-block;\n font-size: 28px;\n position: relative;\n top: 8px;\n margin-left: 3px;\n}\n.tl-timeline blockquote {\n margin: 10px;\n}\n.tl-timeline blockquote p {\n margin: 0;\n}\n.tl-timeline .vcard {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 15px;\n line-height: 15px;\n margin-bottom: 15px;\n margin-top: 10px;\n}\n.tl-timeline .vcard:before,\n.tl-timeline .vcard:after {\n display: table;\n content: \"\";\n}\n.tl-timeline .vcard:after {\n clear: both;\n}\n.tl-timeline .vcard .twitter-date {\n text-align: left;\n font-size: 11px;\n}\n.tl-timeline .vcard .author {\n float: right;\n}\n.tl-timeline .vcard a {\n color: #333333;\n text-decoration: none;\n}\n.tl-timeline .vcard a:hover {\n text-decoration: none;\n}\n.tl-timeline .vcard a:hover .fn,\n.tl-timeline .vcard a:hover .nickname {\n color: #c34528;\n}\n.tl-timeline .vcard .fn,\n.tl-timeline .vcard .nickname {\n padding-left: 42px;\n}\n.tl-timeline .vcard .fn {\n display: block;\n font-weight: bold;\n}\n.tl-timeline .vcard .nickname {\n margin-top: 1px;\n display: block;\n color: #666666;\n}\n.tl-timeline .vcard .avatar {\n float: left;\n display: block;\n width: 32px;\n height: 32px;\n}\n.tl-timeline .vcard .avatar img {\n -moz-border-radius: 5px;\n -webkit-border-radius: 5px;\n border-radius: 5px;\n}\n.tl-timeline .tl-text ul {\n padding: 0px;\n padding-left: 30px;\n margin: 0;\n}\n.tl-timeline .tl-text ul li {\n margin-bottom: 5px;\n}\n.tl-timeline .tl-button-calltoaction {\n cursor: pointer;\n font-weight: bold;\n padding-top: 10px;\n margin-bottom: 10px;\n padding-bottom: 10px;\n}\n.tl-timeline .tl-button-calltoaction .tl-button-calltoaction-text {\n display: inline-block;\n background-color: #c34528;\n color: #fff;\n padding: 10px 15px 10px 15px;\n border-radius: 7px;\n}\n.tl-timeline .tl-note {\n display: block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: italic;\n background-color: #fcf8e3;\n font-size: 15px;\n line-height: 17px;\n padding: 10px;\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n color: #8a6d3b;\n border: 1px solid #faebcc;\n text-shadow: none;\n}\n@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {\n .tl-timeline h1,\n .tl-timeline h2,\n .tl-timeline h3 {\n font-size: 28px;\n line-height: 28px;\n }\n}\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n .tl-timeline h1,\n .tl-timeline h2,\n .tl-timeline h3 {\n font-size: 24px;\n line-height: 24px;\n }\n}\n.tl-skinny h2 {\n margin-top: 0px;\n}\n/* Icons\n================================================== */\n@font-face {\n font-family: 'tl-icons';\n src: url('../css/icons/tl-icons.eot');\n src: url('../css/icons/tl-icons.eot?#iefix') format('embedded-opentype'), url('../css/icons/tl-icons.ttf') format('truetype'), url('../css/icons/tl-icons.woff2') format('woff2'), url('../css/icons/tl-icons.woff') format('woff'), url('../css/icons/tl-icons.svg#tl-icons') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n[class^=\"tl-icon-\"],\n[class*=\" tl-icon-\"] {\n font-family: 'tl-icons';\n speak: none;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.tl-icon-vine:after {\n content: \"\\e64d\";\n}\n.tl-icon-wikipedia:after {\n content: \"\\e64e\";\n}\n.tl-icon-chevron-right:after {\n content: \"\\e64f\";\n}\n.tl-icon-chevron-left:after {\n content: \"\\e650\";\n}\n.tl-icon-youtube-logo:after {\n content: \"\\e651\";\n}\n.tl-icon-foursquare:after {\n content: \"\\e652\";\n}\n.tl-icon-camera-retro:after {\n content: \"\\e653\";\n}\n.tl-icon-doc:after {\n content: \"\\e654\";\n}\n.tl-icon-weibo:after {\n content: \"\\e655\";\n}\n.tl-icon-resize-horizontal:after {\n content: \"\\e656\";\n}\n.tl-icon-resize-vertical:after {\n content: \"\\e657\";\n}\n.tl-icon-resize-full:after {\n content: \"\\e658\";\n}\n.tl-icon-resize-small:after {\n content: \"\\e659\";\n}\n.tl-icon-twitter:after {\n content: \"\\e62b\";\n}\n.tl-icon-google-plus:after {\n content: \"\\e62c\";\n}\n.tl-icon-video:after {\n content: \"\\e62d\";\n}\n.tl-icon-youtube:after {\n content: \"\\e62d\";\n}\n.tl-icon-plaintext:after {\n content: \"\\e62e\";\n}\n.tl-icon-storify:after {\n content: \"\\e62e\";\n}\n.tl-icon-image-v2:after {\n content: \"\\e62f\";\n}\n.tl-icon-quote-v2:after {\n content: \"\\e630\";\n}\n.tl-icon-zoom-in:after {\n content: \"\\e631\";\n}\n.tl-icon-zoom-out:after {\n content: \"\\e632\";\n}\n.tl-icon-list:after {\n content: \"\\e633\";\n}\n.tl-icon-music:after {\n content: \"\\e634\";\n}\n.tl-icon-spotify:after {\n content: \"\\e634\";\n}\n.tl-icon-location:after {\n content: \"\\e635\";\n}\n.tl-icon-googlemaps:after {\n content: \"\\e635\";\n}\n.tl-icon-web:after {\n content: \"\\e636\";\n}\n.tl-icon-share-v2:after {\n content: \"\\e637\";\n}\n.tl-icon-soundcloud:after {\n content: \"\\e639\";\n}\n.tl-icon-video-v2:after {\n content: \"\\e63a\";\n}\n.tl-icon-dailymotion:after {\n content: \"\\e63a\";\n}\n.tl-icon-tumblr:after {\n content: \"\\e63b\";\n}\n.tl-icon-lastfm:after {\n content: \"\\e63c\";\n}\n.tl-icon-github:after {\n content: \"\\e63d\";\n}\n.tl-icon-goback:after {\n content: \"\\e63e\";\n}\n.tl-icon-goend:after {\n content: \"\\e969\";\n}\n.tl-icon-prev2:after {\n content: \"\\ea23\";\n}\n.tl-icon-next2:after {\n content: \"\\ea24\";\n}\n.tl-icon-doc-v2:after {\n content: \"\\e63f\";\n}\n.tl-icon-googledrive:after {\n content: \"\\e640\";\n}\n.tl-icon-facebook:after {\n content: \"\\e641\";\n}\n.tl-icon-flickr:after {\n content: \"\\e642\";\n}\n.tl-icon-dribbble:after {\n content: \"\\e643\";\n}\n.tl-icon-image:after {\n content: \"\\e605\";\n}\n.tl-icon-vimeo:after {\n content: \"\\e606\";\n}\n.tl-icon-instagram:after {\n content: \"\\e644\";\n}\n.tl-icon-pinterest:after {\n content: \"\\e645\";\n}\n.tl-icon-arrow-left:after {\n content: \"\\e646\";\n}\n.tl-icon-arrow-down:after {\n content: \"\\e647\";\n}\n.tl-icon-arrow-up:after {\n content: \"\\e648\";\n}\n.tl-icon-arrow-right:after {\n content: \"\\e649\";\n}\n.tl-icon-share:after {\n content: \"\\e64a\";\n}\n.tl-icon-blockquote:after {\n content: \"\\e64b\";\n}\n.tl-icon-evernote:after {\n content: \"\\e64c\";\n}\n.tl-icon-mappin:after {\n content: \"\\e600\";\n}\n.tl-icon-swipe-right:after {\n content: \"\\e601\";\n}\n.tl-icon-swipe-left:after {\n content: \"\\e602\";\n}\n.tl-icon-touch-spread:after {\n content: \"\\e603\";\n}\n.tl-icon-touch-pinch:after {\n content: \"\\e604\";\n}\n/* Disable Text selection when dragging\n================================================== */\n.tl-dragging {\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n -o-user-select: none;\n user-select: none;\n}\n/* MenuBar \n================================================== */\n.tl-menubar {\n position: absolute;\n z-index: 11;\n text-align: center;\n color: #333;\n overflow: hidden;\n border-bottom-right-radius: 10px;\n border-top-right-radius: 10px;\n top: 100%;\n left: 50%;\n left: 0;\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* Color\n================================================== */\n/*\n.tl-sizebar.tl-sizebar-inverted {\n\tborder-bottom: 1px solid #FFF;\n\t//background-color:#000;\n\tcolor:#a5a5a5;\n\t.tl-sizebar-button {\n\t\tborder-left: 1px solid darken(@color-background, 70);\n\t\t//color:#a5a5a5;\n\t}\n\t.tl-sizebar-button:hover {\n\t\t//background:@color-theme;\n\t\tcolor:@color-background;\n\t}\n}\n.tl-sizebar.tl-sizebar-inverted:before {\n\tbackground-color:#000;\n\t//.gradient-vertical (rgba(0,0,0,0.25), rgba(0,0,0,1));\n\t//.translucent-background(rgb(0,0,0), .5);\n\tborder-top: 2px solid #000;\n\tanimation: invertToBlack 1s;\n\t-webkit-animation:invertToBlack 1s; \n}\n*/\n@keyframes invertToBlack {\n from {\n background-color: #FFF;\n }\n to {\n background-color: #000;\n }\n}\n@-webkit-keyframes invertToBlack {\n from {\n background: #FFF;\n }\n to {\n background: #000;\n }\n}\n@keyframes invertToWhite {\n from {\n background-color: #000;\n }\n to {\n background-color: #FFF;\n }\n}\n@-webkit-keyframes invertToWhite {\n from {\n background: #000;\n }\n to {\n background: #FFF;\n }\n}\n/* MenuBar Button\n================================================== */\n.tl-menubar-button {\n border: none;\n font-size: 18px;\n line-height: 18px;\n background-color: rgba(242, 242, 242, 0.9);\n cursor: pointer;\n padding: 5px 10px 5px 10px;\n display: inline-block;\n display: block;\n color: #bfbfbf;\n}\n.tl-menubar-button:disabled {\n opacity: 0.33;\n cursor: default;\n}\n.tl-menubar-button:hover,\n.tl-menubar-button:focus-visible {\n background: #333;\n color: #FFF;\n}\n.tl-menubar-button:hover:disabled,\n.tl-menubar-button:focus-visible:disabled {\n color: #bfbfbf;\n background-color: rgba(242, 242, 242, 0.9);\n}\n.tl-mobile .tl-menubar-button {\n display: block;\n}\n.tl-mobile .tl-menubar-button:hover {\n background-color: rgba(242, 242, 242, 0.67);\n color: #737373;\n}\n.tl-mobile .tl-menubar-button:active {\n background: #c34528;\n color: #FFF;\n}\n@keyframes invertToBlack {\n from {\n background-color: #FFF;\n }\n to {\n background-color: #000;\n }\n}\n@-webkit-keyframes invertToBlack {\n from {\n background: #FFF;\n }\n to {\n background: #000;\n }\n}\n@keyframes invertToWhite {\n from {\n background-color: #000;\n }\n to {\n background-color: #FFF;\n }\n}\n@-webkit-keyframes invertToWhite {\n from {\n background: #000;\n }\n to {\n background: #FFF;\n }\n}\n/* MESSAGE \n================================================== */\n.tl-message,\n.tl-message-full {\n width: 100%;\n height: 100%;\n position: absolute;\n display: table;\n overflow: hidden;\n top: 0px;\n left: 0px;\n z-index: 99;\n margin: auto;\n text-align: center;\n}\n.tl-message .tl-message-container,\n.tl-message-full .tl-message-container {\n padding: 20px;\n margin: 20px;\n text-align: center;\n vertical-align: middle;\n display: table-cell;\n}\n.tl-message .tl-message-container .tl-message-content,\n.tl-message-full .tl-message-container .tl-message-content {\n color: #666;\n text-align: center;\n font-size: 11px;\n line-height: 13px;\n text-transform: uppercase;\n margin-top: 7.5px;\n margin-bottom: 7.5px;\n text-shadow: 1px 1px 1px #FFF;\n}\n.tl-message .tl-message-container .tl-message-content strong,\n.tl-message-full .tl-message-container .tl-message-content strong {\n text-transform: uppercase;\n}\n.tl-message .tl-message-container .tl-loading-icon,\n.tl-message-full .tl-message-container .tl-loading-icon {\n width: 30px;\n height: 30px;\n background-color: #666;\n vertical-align: middle;\n -webkit-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);\n -moz-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);\n margin-left: auto;\n margin-right: auto;\n text-align: center;\n -webkit-animation: rotateplane 1.2s infinite ease-in-out;\n animation: rotateplane 1.2s infinite ease-in-out;\n}\n@-webkit-keyframes rotateplane {\n 0% {\n -webkit-transform: perspective(120px);\n }\n 50% {\n -webkit-transform: perspective(120px) rotateY(180deg);\n }\n 100% {\n -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);\n }\n}\n@keyframes rotateplane {\n 0% {\n transform: perspective(120px) rotateX(0deg) rotateY(0deg);\n }\n 50% {\n transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);\n }\n 100% {\n transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);\n }\n}\n.tl-message-full {\n background-color: hsla(0, 0%, 100%, 0.8);\n}\n.tl-message-full [class^=\"tl-icon-\"],\n.tl-message-full [class*=\" tl-icon-\"] {\n color: #666;\n font-size: 72px;\n}\n.tl-message-full .tl-message-container .tl-message-content {\n font-size: 22px;\n line-height: 22px;\n text-shadow: none;\n color: #666;\n text-transform: none;\n font-weight: normal;\n}\n.tl-message-full .tl-message-container .tl-message-content .tl-button {\n display: inline-block;\n cursor: pointer;\n background-color: #FFF;\n color: #333;\n padding: 10px;\n margin-top: 10px;\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n}\n/* TL.TimeNav\n================================================== */\n.tl-timenav {\n width: 100%;\n background-color: #f2f2f2;\n position: relative;\n overflow: hidden;\n border-top: 1px solid #e5e5e5;\n}\n.tl-timenav .tl-timenav-line {\n position: absolute;\n top: 0;\n left: 50%;\n width: 1px;\n height: 100%;\n background-color: #d9d9d9;\n z-index: 2;\n display: none;\n}\n.tl-timenav .tl-timenav-line:before,\n.tl-timenav .tl-timenav-line:after {\n font-family: 'tl-icons';\n speak: none;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n color: #c34528;\n font-size: 32px;\n line-height: 32px;\n position: absolute;\n left: -14px;\n}\n.tl-timenav .tl-timenav-line:before {\n top: -10px;\n}\n.tl-timenav .tl-timenav-line:after {\n content: \"\\e648\";\n bottom: 24px;\n}\n.tl-timenav .tl-timenav-slider {\n position: absolute;\n height: 100%;\n width: 100%;\n top: 0;\n}\n.tl-timenav .tl-timenav-slider.tl-timenav-slider-animate {\n -webkit-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timenav .tl-timenav-slider .tl-timenav-slider-background {\n position: absolute;\n height: 100%;\n width: 100%;\n cursor: move;\n z-index: 6;\n}\n.tl-timenav .tl-timenav-slider .tl-timenav-container-mask {\n position: absolute;\n height: 100%;\n top: 0;\n}\n.tl-timenav .tl-timenav-slider .tl-timenav-container-mask .tl-timenav-container {\n position: absolute;\n height: 100%;\n}\n.tl-timenav .tl-timenav-slider .tl-timenav-container-mask .tl-timenav-container .tl-timenav-item-container {\n position: absolute;\n height: 100%;\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* TL.TimeMarker\n================================================== */\n.tl-timemarker {\n height: 100%;\n position: absolute;\n top: 0;\n left: 0;\n cursor: pointer;\n /* Animate Left Width and Top\n\t================================================== */\n -webkit-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n /* Timespan\n\t================================================== */\n /* Lines\n\t================================================== */\n /* Content\n\t================================================== */\n /* Hover | Focus State\n\t================================================== */\n /* Hover | Focus Active State\n\t================================================== */\n /* Focus-visible State\n ================================================== */\n /* Active Markers\n\t================================================== */\n /* Markers with End Dates\n\t================================================== */\n /* Markers with End Dates and Hover\n\t================================================== */\n /* Markers with End Dates and Active\n\t================================================== */\n /* Markers with End Dates and Active and Hover\n\t================================================== */\n}\n.tl-timemarker.tl-timemarker-fast {\n -webkit-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timemarker.tl-timemarker-fast .tl-timemarker-content-container {\n -webkit-transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: width 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timemarker.tl-timemarker-fast .tl-timemarker-timespan {\n -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timemarker .tl-timemarker-timespan {\n pointer-events: none;\n position: absolute;\n margin: 0;\n width: 100%;\n height: 100%;\n background-color: rgba(229, 229, 229, 0.15);\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timemarker .tl-timemarker-timespan .tl-timemarker-timespan-content {\n display: none;\n position: absolute;\n width: 100%;\n background-color: #e5e5e5;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n height: 100px;\n box-sizing: border-box;\n}\n.tl-timemarker .tl-timemarker-line-right {\n display: none;\n right: 0px;\n}\n.tl-timemarker .tl-timemarker-line-left {\n width: 1px;\n left: 0px;\n}\n.tl-timemarker .tl-timemarker-line-left,\n.tl-timemarker .tl-timemarker-line-right {\n margin-top: 7px;\n -webkit-box-sizing: border-box;\n /* Safari/Chrome, other WebKit */\n -moz-box-sizing: border-box;\n /* Firefox, other Gecko */\n box-sizing: border-box;\n border-left: 1px solid #d9d9d9;\n z-index: 5;\n content: \" \";\n position: absolute;\n height: 100%;\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -khtml-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n box-shadow: 1px 1px 1px #FFF;\n}\n.tl-timemarker .tl-timemarker-line-left:after,\n.tl-timemarker .tl-timemarker-line-right:after {\n display: block;\n content: \" \";\n position: absolute;\n left: -4px;\n bottom: 0px;\n height: 6px;\n width: 6px;\n background-color: #919191;\n z-index: 8;\n -webkit-border-radius: 50%;\n -moz-border-radius: 50%;\n border-radius: 50%;\n}\n.tl-timemarker .tl-timemarker-content-container {\n position: absolute;\n background-color: #e5e5e5;\n border: 0;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n height: 100%;\n width: 100px;\n overflow: hidden;\n z-index: 6;\n -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n box-sizing: border-box;\n border: 1px solid #d9d9d9;\n box-shadow: 1px 1px 1px #FFF;\n}\n.tl-timemarker .tl-timemarker-content-container:hover {\n z-index: 9;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content {\n position: relative;\n overflow: hidden;\n height: 100%;\n z-index: 8;\n padding: 5px;\n -webkit-box-sizing: border-box;\n /* Safari/Chrome, other WebKit */\n -moz-box-sizing: border-box;\n /* Firefox, other Gecko */\n box-sizing: border-box;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text {\n overflow: hidden;\n position: relative;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline,\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p {\n display: -webkit-box;\n line-clamp: 2;\n -webkit-line-clamp: 2;\n box-orient: vertical;\n -webkit-box-orient: vertical;\n text-overflow: ellipsis;\n font-size: 12px;\n line-height: 12px;\n height: 100%;\n overflow: hidden;\n font-weight: normal;\n margin: 0;\n color: #bfbfbf;\n position: relative;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after,\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p.tl-headline-fadeout:after {\n content: \"\";\n text-align: right;\n position: absolute;\n bottom: 0;\n right: 0;\n width: 100%;\n height: 50%;\n background: -moz-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* FF3.6+ */\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(229, 229, 229, 0)), color-stop(50%, #e5e5e5));\n /* Chrome,Safari4+ */\n background: -webkit-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* Chrome10+,Safari5.1+ */\n background: -o-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* Opera 11.10+ */\n background: -ms-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* IE10+ */\n background: linear-gradient(to bottom, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* W3C */\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);\n /* IE6-9 */\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container {\n float: left;\n max-width: 24px;\n max-height: 24px;\n overflow: hidden;\n margin-right: 5px;\n height: 100%;\n -webkit-box-sizing: border-box;\n /* Safari/Chrome, other WebKit */\n -moz-box-sizing: border-box;\n /* Firefox, other Gecko */\n box-sizing: border-box;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media {\n max-width: 24px;\n max-height: 100%;\n opacity: 0.25;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=\"tl-icon-\"],\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=\" tl-icon-\"] {\n display: block;\n font-size: 24px;\n color: #bfbfbf;\n margin-top: 0px;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-icon-wikipedia {\n font-size: 16px;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-text h2.tl-headline {\n display: block;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-media-container [class^=\"tl-icon-\"],\n.tl-timemarker .tl-timemarker-content-container .tl-timemarker-content.tl-timemarker-content-small .tl-timemarker-media-container [class*=\" tl-icon-\"] {\n font-size: 12px;\n}\n.tl-timemarker:hover .tl-timemarker-timespan,\n.tl-timemarker:focus .tl-timemarker-timespan {\n background-color: rgba(191, 191, 191, 0.25);\n}\n.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-timespan-content,\n.tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-timespan-content {\n background-color: #bfbfbf;\n}\n.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left,\n.tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-left,\n.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right,\n.tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-right {\n border-color: #a6a6a6;\n}\n.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left:after,\n.tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-left:after,\n.tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right:after,\n.tl-timemarker:focus .tl-timemarker-timespan .tl-timemarker-line-right:after {\n background-color: #3d3d3d;\n}\n.tl-timemarker:hover .tl-timemarker-content-container,\n.tl-timemarker:focus .tl-timemarker-content-container {\n background-color: #737373;\n border-color: #a6a6a6;\n -webkit-transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: height 250ms cubic-bezier(0.77, 0, 0.175, 1), width 250ms cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timemarker:hover .tl-timemarker-content-container.tl-timemarker-content-container-small,\n.tl-timemarker:focus .tl-timemarker-content-container.tl-timemarker-content-container-small {\n width: 200px;\n}\n.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline,\n.tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline {\n color: #FFF;\n}\n.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after,\n.tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after {\n background: -moz-linear-gradient(top, rgba(115, 115, 115, 0) 0%, #737373 80%);\n /* FF3.6+ */\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(115, 115, 115, 0)), color-stop(80%, #737373));\n /* Chrome,Safari4+ */\n background: -webkit-linear-gradient(top, rgba(115, 115, 115, 0) 0%, #737373 80%);\n /* Chrome10+,Safari5.1+ */\n background: -o-linear-gradient(top, rgba(115, 115, 115, 0) 0%, #737373 80%);\n /* Opera 11.10+ */\n background: -ms-linear-gradient(top, rgba(115, 115, 115, 0) 0%, #737373 80%);\n /* IE10+ */\n background: linear-gradient(to bottom, rgba(115, 115, 115, 0) 0%, #737373 80%);\n /* W3C */\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);\n /* IE6-9 */\n}\n.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media,\n.tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media {\n opacity: 1;\n}\n.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=\"tl-icon-\"],\n.tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=\"tl-icon-\"],\n.tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=\" tl-icon-\"],\n.tl-timemarker:focus .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=\" tl-icon-\"] {\n color: #FFF;\n}\n.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after,\n.tl-timemarker:focus.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after {\n background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* FF3.6+ */\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(80%, #FFF));\n /* Chrome,Safari4+ */\n background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* Chrome10+,Safari5.1+ */\n background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* Opera 11.10+ */\n background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* IE10+ */\n background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* W3C */\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);\n /* IE6-9 */\n}\n.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-left,\n.tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-left,\n.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-right,\n.tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-right {\n border-color: #000;\n}\n.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-left:after,\n.tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-left:after,\n.tl-timemarker:hover.tl-timemarker-active .tl-timemarker-line-right:after,\n.tl-timemarker:focus.tl-timemarker-active .tl-timemarker-line-right:after {\n background-color: #000;\n}\n.tl-timemarker:focus-visible {\n outline: none;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-timespan {\n background-color: rgba(255, 255, 255, 0.5);\n z-index: 8;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-timespan .tl-timemarker-timespan-content {\n background-color: #333;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left,\n.tl-timemarker.tl-timemarker-active .tl-timemarker-line-right {\n border-color: rgba(51, 51, 51, 0.5);\n border-width: 1px;\n z-index: 8;\n box-shadow: 0px 1px 3px rgba(145, 145, 145, 0.5);\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-line-left:after,\n.tl-timemarker.tl-timemarker-active .tl-timemarker-line-right:after {\n background-color: #333;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container {\n background-color: #FFF;\n color: #333;\n z-index: 9;\n border-color: rgba(51, 51, 51, 0.5);\n box-shadow: 1px 1px 3px rgba(145, 145, 145, 0.5);\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline {\n color: #333;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout:after {\n background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* FF3.6+ */\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(80%, #FFF));\n /* Chrome,Safari4+ */\n background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* Chrome10+,Safari5.1+ */\n background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* Opera 11.10+ */\n background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* IE10+ */\n background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFF 80%);\n /* W3C */\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);\n /* IE6-9 */\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container .tl-timemarker-media {\n opacity: 1;\n}\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class^=\"tl-icon-\"],\n.tl-timemarker.tl-timemarker-active .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container [class*=\" tl-icon-\"] {\n color: #333;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-timespan-content {\n display: block;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-line-left,\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan .tl-timemarker-line-right {\n z-index: 5;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-timespan:after {\n display: block;\n content: \" \";\n position: absolute;\n left: 0px;\n bottom: -7px;\n height: 6px;\n width: 100%;\n background-color: rgba(115, 115, 115, 0.15);\n z-index: 6;\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-content-container.tl-timemarker-content-container-long {\n box-shadow: none;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-line-right {\n display: block;\n}\n.tl-timemarker.tl-timemarker-with-end .tl-timemarker-line-left {\n box-shadow: none;\n}\n.tl-timemarker.tl-timemarker-with-end:hover .tl-timemarker-timespan:after {\n background-color: rgba(0, 0, 0, 0.35);\n}\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-timespan:after {\n background-color: rgba(51, 51, 51, 0.5);\n}\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left,\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-right {\n border-width: 1px;\n}\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left:after,\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-right:after {\n background-color: #333 !important;\n}\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active .tl-timemarker-line-left {\n box-shadow: none;\n}\n.tl-timemarker.tl-timemarker-with-end.tl-timemarker-active:hover .tl-timemarker-timespan:after {\n background-color: rgba(51, 51, 51, 0.5);\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* TL.TimeMarker\n================================================== */\n.tl-timeera {\n height: 100%;\n height: 40px;\n position: absolute;\n bottom: 0;\n left: 0;\n pointer-events: none;\n z-index: 3;\n /* Animate Left Width and Top\n\t================================================== */\n -webkit-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n /* Timespan\n\t================================================== */\n /* Content\n\t================================================== */\n}\n.tl-timeera.tl-timeera-fast {\n -webkit-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 500ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timeera .tl-timeera-background {\n position: absolute;\n background-color: #28a6c3;\n width: 100%;\n height: 100%;\n opacity: 1;\n}\n.tl-timeera.tl-timeera-color0 .tl-timeera-background {\n background-color: #c34528;\n}\n.tl-timeera.tl-timeera-color1 .tl-timeera-background {\n background-color: #28a6c3;\n}\n.tl-timeera.tl-timeera-color2 .tl-timeera-background {\n background-color: #2832c3;\n}\n.tl-timeera.tl-timeera-color3 .tl-timeera-background {\n background-color: #28c36c;\n}\n.tl-timeera.tl-timeera-color4 .tl-timeera-background {\n background-color: #286dc3;\n}\n.tl-timeera.tl-timeera-color5 .tl-timeera-background {\n background-color: #28c3a7;\n}\n.tl-timeera .tl-timeera-content-container {\n position: absolute;\n border: 0;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n height: 100%;\n width: 100px;\n overflow: hidden;\n -webkit-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n box-sizing: border-box;\n border: 1px solid #d9d9d9;\n}\n.tl-timeera .tl-timeera-content-container .tl-timeera-content {\n position: relative;\n overflow: hidden;\n height: 100%;\n padding: 5px;\n -webkit-box-sizing: border-box;\n /* Safari/Chrome, other WebKit */\n -moz-box-sizing: border-box;\n /* Firefox, other Gecko */\n box-sizing: border-box;\n}\n.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text {\n overflow: hidden;\n position: relative;\n height: 100%;\n}\n.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text h2.tl-headline {\n bottom: 0px;\n position: absolute;\n display: -webkit-box;\n line-clamp: 4;\n -webkit-line-clamp: 4;\n box-orient: vertical;\n -webkit-box-orient: vertical;\n text-overflow: ellipsis;\n font-size: 10px;\n line-height: 10px;\n overflow: hidden;\n font-weight: normal;\n margin: 0;\n color: #FFF;\n margin-left: 10px;\n}\n.tl-timeera .tl-timeera-content-container .tl-timeera-content .tl-timeera-text h2.tl-headline.tl-headline-fadeout:after {\n content: \"\";\n text-align: right;\n position: absolute;\n bottom: 0;\n right: 0;\n width: 100%;\n height: 50%;\n background: -moz-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* FF3.6+ */\n background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(229, 229, 229, 0)), color-stop(50%, #e5e5e5));\n /* Chrome,Safari4+ */\n background: -webkit-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* Chrome10+,Safari5.1+ */\n background: -o-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* Opera 11.10+ */\n background: -ms-linear-gradient(top, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* IE10+ */\n background: linear-gradient(to bottom, rgba(229, 229, 229, 0) 0%, #e5e5e5 50%);\n /* W3C */\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@thecolor', endColorstr='@thecolor', GradientType=0);\n /* IE6-9 */\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* TL.TimeMarker\n================================================== */\n.tl-timegroup {\n width: 100%;\n position: absolute;\n top: 0;\n left: 0;\n background-color: #f2f2f2;\n display: -ms-flexbox;\n display: -webkit-flex;\n display: flex;\n align-items: center;\n -ms-flex-align: center;\n -webkit-align-items: center;\n -webkit-box-align: center;\n /* Animate Left Width and Top\n\t================================================== */\n -webkit-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: left 1000ms cubic-bezier(0.77, 0, 0.175, 1), top 500ms cubic-bezier(0.77, 0, 0.175, 1), height 500ms cubic-bezier(0.77, 0, 0.175, 1), width 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timegroup .tl-timegroup-message {\n color: #e0e0e0;\n text-shadow: #FFF 0 2px 2px;\n margin-left: 80px;\n}\n.tl-timegroup.tl-timegroup-alternate {\n background-color: #fafafa;\n}\n.tl-timegroup.tl-timegroup-hidden {\n display: none;\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* TL.TimeAxis\n================================================== */\n.tl-timeaxis-background {\n height: 39px;\n width: 100%;\n position: absolute;\n bottom: 0;\n left: 0;\n background-color: #FFF;\n border-top: 1px solid #e5e5e5;\n z-index: 2;\n}\n.tl-timeaxis {\n height: 39px;\n width: 100%;\n position: absolute;\n bottom: 0;\n left: 0;\n z-index: 3;\n}\n.tl-timeaxis .tl-timeaxis-content-container {\n position: relative;\n bottom: 0;\n height: 39px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor {\n opacity: 0;\n position: absolute;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick {\n position: absolute;\n display: block;\n top: 0;\n left: 0;\n text-align: center;\n font-weight: normal;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick .tl-timeaxis-tick-text,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text {\n display: inline-block;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before {\n content: \"|\";\n display: block;\n color: #FFF;\n width: 1px;\n overflow: hidden;\n border-left: 1px solid #bfbfbf;\n text-align: center;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major.tl-timeaxis-animate .tl-timeaxis-tick,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor.tl-timeaxis-animate .tl-timeaxis-tick {\n -webkit-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major.tl-timeaxis-animate-opacity .tl-timeaxis-tick,\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor.tl-timeaxis-animate-opacity .tl-timeaxis-tick {\n -webkit-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major {\n z-index: 1;\n background-color: #FFF;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick {\n font-size: 12px;\n line-height: 14px;\n color: #737373;\n width: 100px;\n margin-left: -50px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before {\n border-color: #a6a6a6;\n font-size: 18px;\n line-height: 18px;\n margin-bottom: 2px;\n margin-left: 50px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick {\n font-size: 11px;\n line-height: 13px;\n color: #bfbfbf;\n width: 50px;\n margin-left: -25px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text {\n opacity: 0;\n white-space: normal;\n padding-left: 2px;\n padding-right: 2px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick .tl-timeaxis-tick-text span {\n display: block;\n font-size: 9px;\n line-height: 9px;\n margin-top: -2px;\n color: #e6e6e6;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before {\n font-size: 9px;\n line-height: 9px;\n margin-left: 25px;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick.tl-timeaxis-tick-hidden .tl-timeaxis-tick-text {\n opacity: 0 !important;\n}\n.tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick.tl-timeaxis-tick-hidden:before {\n opacity: 0.33;\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n.tlanimate {\n -webkit-transform: translateZ(0);\n -webkit-perspective: 1000;\n -webkit-backface-visibility: hidden;\n}\n.tl-animate {\n -webkit-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n.tl-animate-opacity {\n -webkit-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n transition: opacity 1000ms cubic-bezier(0.77, 0, 0.175, 1);\n -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);\n}\n/* SLIDE\n================================================== */\n.tl-slide {\n position: absolute;\n width: 100%;\n height: 100%;\n padding: 0;\n margin: 0;\n overflow-x: hidden;\n overflow-y: auto;\n}\n.tl-slide .tl-slide-background {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n z-index: -1;\n overflow: hidden;\n display: none;\n filter: alpha(opacity=50);\n -khtml-opacity: 0.5;\n -moz-opacity: 0.5;\n opacity: 0.5;\n background: no-repeat center center;\n -webkit-background-size: cover;\n -moz-background-size: cover;\n -o-background-size: cover;\n background-size: cover;\n}\n.tl-slide .tl-slide-scrollable-container {\n display: table;\n table-layout: fixed;\n height: 100%;\n z-index: 1;\n}\n.tl-slide .tl-slide-content-container {\n display: table-cell;\n vertical-align: middle;\n position: relative;\n width: 100%;\n height: 100%;\n z-index: 3;\n}\n.tl-slide .tl-slide-content-container .tl-slide-content {\n display: table;\n vertical-align: middle;\n direction: rtl;\n padding-left: 100px;\n padding-right: 100px;\n position: relative;\n max-width: 100%;\n user-select: text;\n -webkit-box-sizing: content-box;\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n}\n.tl-slide .tl-slide-content-container .tl-slide-content .tl-media {\n direction: ltr;\n position: relative;\n width: 100%;\n min-width: 50%;\n float: left;\n margin-top: auto;\n margin-bottom: auto;\n}\n.tl-slide .tl-slide-content-container .tl-slide-content .tl-text {\n direction: ltr;\n width: 50%;\n max-width: 50%;\n min-width: 120px;\n padding: 0 20px 0 20px;\n display: table-cell;\n vertical-align: middle;\n text-align: left;\n}\n/* Only Media (no text)\n================================================== */\n.tl-slide-media-only .tl-slide-content-container .tl-slide-content {\n text-align: center;\n}\n.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-media {\n text-align: center;\n position: relative;\n width: 100%;\n min-width: 50%;\n max-width: 100%;\n float: none;\n margin-top: auto;\n margin-bottom: auto;\n}\n.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-text {\n width: 100%;\n max-width: 100%;\n display: block;\n margin-left: auto;\n margin-right: auto;\n text-align: center;\n}\n/* Only Text (no media)\n================================================== */\n.tl-slide-text-only .tl-slide-content-container .tl-slide-content {\n text-align: center;\n}\n.tl-slide-text-only .tl-slide-content-container .tl-slide-content .tl-text {\n max-width: 80%;\n width: 80%;\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n/* Background\n================================================== */\n.tl-slide.tl-full-image-background,\n.tl-slide.tl-full-color-background {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background p,\n.tl-slide.tl-full-color-background p,\n.tl-slide.tl-full-image-background h1,\n.tl-slide.tl-full-color-background h1,\n.tl-slide.tl-full-image-background h2,\n.tl-slide.tl-full-color-background h2,\n.tl-slide.tl-full-image-background h3,\n.tl-slide.tl-full-color-background h3,\n.tl-slide.tl-full-image-background h4,\n.tl-slide.tl-full-color-background h4,\n.tl-slide.tl-full-image-background h5,\n.tl-slide.tl-full-color-background h5,\n.tl-slide.tl-full-image-background h6,\n.tl-slide.tl-full-color-background h6 {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background a,\n.tl-slide.tl-full-color-background a,\n.tl-slide.tl-full-image-background b,\n.tl-slide.tl-full-color-background b,\n.tl-slide.tl-full-image-background i,\n.tl-slide.tl-full-color-background i,\n.tl-slide.tl-full-image-background blockquote,\n.tl-slide.tl-full-color-background blockquote,\n.tl-slide.tl-full-image-background blockquote p,\n.tl-slide.tl-full-color-background blockquote p {\n text-shadow: 1px 1px 1px #000;\n color: #ffffff;\n}\n.tl-slide.tl-full-image-background a:hover,\n.tl-slide.tl-full-color-background a:hover {\n text-decoration: underline;\n color: #c34528;\n}\n.tl-slide.tl-full-image-background .tl-caption,\n.tl-slide.tl-full-color-background .tl-caption,\n.tl-slide.tl-full-image-background .tl-credit,\n.tl-slide.tl-full-color-background .tl-credit {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background .tl-media-twitter blockquote,\n.tl-slide.tl-full-color-background .tl-media-twitter blockquote,\n.tl-slide.tl-full-image-background .tl-media-blockquote blockquote,\n.tl-slide.tl-full-color-background .tl-media-blockquote blockquote {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background .tl-media-twitter blockquote p,\n.tl-slide.tl-full-color-background .tl-media-twitter blockquote p,\n.tl-slide.tl-full-image-background .tl-media-blockquote blockquote p,\n.tl-slide.tl-full-color-background .tl-media-blockquote blockquote p {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background .vcard a,\n.tl-slide.tl-full-color-background .vcard a,\n.tl-slide.tl-full-image-background .vcard .nickname,\n.tl-slide.tl-full-color-background .vcard .nickname {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n/* Full Image Background\n================================================== */\n.tl-slide.tl-full-image-background {\n background: no-repeat center center;\n -webkit-background-size: cover;\n -moz-background-size: cover;\n -o-background-size: cover;\n background-size: cover;\n background-position: center 25%;\n text-shadow: 1px 1px 2px #000;\n}\n.tl-slide.tl-full-image-background p,\n.tl-slide.tl-full-image-background h1,\n.tl-slide.tl-full-image-background h2,\n.tl-slide.tl-full-image-background h3,\n.tl-slide.tl-full-image-background h4,\n.tl-slide.tl-full-image-background h5,\n.tl-slide.tl-full-image-background h6 {\n text-shadow: 1px 1px 2px #000;\n}\n.tl-slide.tl-full-image-background .tl-caption,\n.tl-slide.tl-full-image-background .tl-credit {\n text-shadow: 1px 1px 2px #000;\n}\n.tl-slide.tl-full-image-background .tl-media-twitter blockquote,\n.tl-slide.tl-full-image-background .tl-media-blockquote blockquote {\n text-shadow: 1px 1px 2px #000 !important;\n}\n.tl-slide.tl-full-image-background .tl-media-twitter blockquote p,\n.tl-slide.tl-full-image-background .tl-media-blockquote blockquote p {\n text-shadow: 1px 1px 2px #000 !important;\n}\n/* Color Background\n================================================== */\n/* Text Background\n================================================== */\n.tl-slide.tl-text-background .tl-text .tl-text-content-container {\n padding: 20px;\n /* Fallback for web browsers that doesn't support RGBa */\n background: #000000 transparent;\n /* RGBa with 0.6 opacity */\n background: rgba(0, 0, 0, 0.6);\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n}\n.tl-slide.tl-text-background .tl-text .tl-text-content-container h2 {\n margin-top: 5px;\n}\n/* Skinny\n================================================== */\n.tl-skinny .tl-slide {\n display: block;\n padding-top: 10px;\n}\n.tl-skinny .tl-slide .tl-slide-content-container {\n display: block;\n position: static;\n height: 100%;\n display: -webkit-flex;\n /* Safari */\n display: flex;\n align-items: center;\n -webkit-align-items: center;\n /* Safari 7.0+ */\n}\n.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content {\n display: block;\n display: -webkit-flex;\n /* Safari */\n display: flex;\n flex-direction: column;\n -webkit-flex-direction: column;\n /* Safari */\n position: static;\n height: auto;\n padding-left: 50px;\n padding-right: 50px;\n}\n.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media {\n width: 100%;\n height: auto;\n float: none;\n display: block;\n padding-top: 20px;\n border-top: 1px solid #e6e6e6;\n}\n.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-text {\n display: block;\n height: auto;\n vertical-align: initial;\n position: static;\n width: 100%;\n max-width: 100%;\n min-width: 0;\n float: none;\n padding: 0;\n}\n.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-text .tl-text-content-container {\n padding-left: 10px;\n padding-right: 10px;\n padding-bottom: 10px;\n}\n.tl-skinny .tl-slide.tl-slide.tl-full-color-background .tl-slide-content-container .tl-slide-content .tl-media,\n.tl-skinny .tl-slide.tl-full-image-background .tl-slide-content-container .tl-slide-content .tl-media {\n border-color: rgba(230, 230, 230, 0.25);\n}\n.tl-skinny .tl-slide.tl-slide-media-only .tl-slide-content-container .tl-slide-content {\n flex-direction: column;\n -webkit-flex-direction: column;\n /* Safari */\n}\n.tl-skinny .tl-slide.tl-slide-media-only .tl-slide-content-container .tl-slide-content .tl-media {\n border-top: none;\n padding-top: 0px;\n}\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media img,\n.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media embed,\n.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media object,\n.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media video,\n.tl-mobile.tl-skinny .tl-slide .tl-slide-content-container .tl-slide-content .tl-media iframe {\n max-height: 175px;\n}\n/* SlideNav\n================================================== */\n/* NAVIGATION\n================================================== */\n.tl-slidenav-previous,\n.tl-slidenav-next {\n position: absolute;\n top: 45%;\n z-index: 10;\n cursor: pointer;\n padding: 0;\n outline-offset: 5px;\n background-color: transparent;\n border: none;\n text-align: inherit;\n text-transform: inherit;\n font-family: inherit;\n font-size: inherit;\n font-weight: inherit;\n}\n.tl-slidenav-previous .tl-slidenav-content-container,\n.tl-slidenav-next .tl-slidenav-content-container {\n width: 100px;\n position: absolute;\n}\n.tl-slidenav-previous .tl-slidenav-title,\n.tl-slidenav-next .tl-slidenav-title,\n.tl-slidenav-previous .tl-slidenav-description,\n.tl-slidenav-next .tl-slidenav-description {\n width: 80px;\n -webkit-line-clamp: 2;\n line-clamp: 2;\n text-overflow: ellipsis;\n /* Non standard for webkit */\n /*\n\t -webkit-hyphens: auto;\n\t -moz-hyphens: auto;\n\t -ms-hyphens: auto;\n\t hyphens: auto;\n\t\t*/\n}\n.tl-slidenav-previous .tl-slidenav-title small,\n.tl-slidenav-next .tl-slidenav-title small,\n.tl-slidenav-previous .tl-slidenav-description small,\n.tl-slidenav-next .tl-slidenav-description small {\n display: block;\n}\n.tl-slidenav-previous .tl-slidenav-title,\n.tl-slidenav-next .tl-slidenav-title {\n margin-top: 10px;\n filter: alpha(opacity=15);\n -khtml-opacity: 0.15;\n -moz-opacity: 0.15;\n opacity: 0.15;\n font-size: 11px;\n line-height: 11px;\n}\n.tl-slidenav-previous .tl-slidenav-description,\n.tl-slidenav-next .tl-slidenav-description {\n font-size: 11px;\n margin-top: 5px;\n filter: alpha(opacity=0);\n -khtml-opacity: 0;\n -moz-opacity: 0;\n opacity: 0;\n}\n.tl-slidenav-previous .tl-slidenav-description small,\n.tl-slidenav-next .tl-slidenav-description small {\n display: none;\n}\n/* NAVIGATION COLOR\n================================================== */\n.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-icon,\n.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-icon,\n.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-title,\n.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-title,\n.tl-slidenav-previous .tl-slidenav-content-container .tl-slidenav-description,\n.tl-slidenav-next .tl-slidenav-content-container .tl-slidenav-description {\n text-shadow: 1px 1px 1px #FFF;\n color: #333;\n}\n.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon,\n.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-icon,\n.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title,\n.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-title,\n.tl-slidenav-previous .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description,\n.tl-slidenav-next .tl-slidenav-content-container.tl-slidenav-inverted .tl-slidenav-description {\n color: #f2f2f2;\n text-shadow: 1px 1px 1px #333;\n}\n/* ICONS\n================================================== */\n.tl-slidenav-next .tl-slidenav-icon,\n.tl-slidenav-previous .tl-slidenav-icon {\n font-family: 'tl-icons';\n speak: none;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n font-size: 32px;\n margin-bottom: 5px;\n}\n.tl-slidenav-next {\n text-align: right;\n margin-right: 10px;\n right: 100px;\n}\n.tl-slidenav-next .tl-slidenav-title,\n.tl-slidenav-next .tl-slidenav-description {\n margin-left: 20px;\n}\n.tl-slidenav-next .tl-slidenav-icon {\n margin-left: 76px;\n}\n.tl-slidenav-next .tl-slidenav-icon:before {\n content: \"\\e64f\";\n}\n.tl-slidenav-previous {\n text-align: left;\n margin-left: 10px;\n}\n.tl-slidenav-previous .tl-slidenav-icon {\n margin-left: 0px;\n}\n.tl-slidenav-previous .tl-slidenav-icon:before {\n content: \"\\e650\";\n}\n/* NAVIGATION HOVER\n================================================== */\n.tl-slidenav-previous:hover .tl-slidenav-title,\n.tl-slidenav-next:hover .tl-slidenav-title,\n.tl-slidenav-previous:focus-visible .tl-slidenav-title,\n.tl-slidenav-next:focus-visible .tl-slidenav-title {\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-slidenav-previous:hover .tl-slidenav-description,\n.tl-slidenav-next:hover .tl-slidenav-description,\n.tl-slidenav-previous:focus-visible .tl-slidenav-description,\n.tl-slidenav-next:focus-visible .tl-slidenav-description {\n filter: alpha(opacity=50);\n -khtml-opacity: 0.5;\n -moz-opacity: 0.5;\n opacity: 0.5;\n}\n.tl-slidenav-next:hover .tl-slidenav-icon,\n.tl-slidenav-next:focus-visible .tl-slidenav-icon {\n margin-left: 80px;\n}\n.tl-slidenav-previous:hover .tl-slidenav-icon,\n.tl-slidenav-previous:focus-visible .tl-slidenav-icon {\n margin-left: -4px;\n}\n.tl-skinny .tl-slidenav-next {\n right: 32px;\n}\n.tl-skinny .tl-slidenav-next .tl-slidenav-icon {\n margin-left: 8px;\n}\n.tl-skinny .tl-slidenav-previous .tl-slidenav-content-container,\n.tl-skinny .tl-slidenav-next .tl-slidenav-content-container {\n width: 32px;\n height: 32px;\n}\n.tl-skinny .tl-slidenav-previous .tl-slidenav-title,\n.tl-skinny .tl-slidenav-next .tl-slidenav-title,\n.tl-skinny .tl-slidenav-previous .tl-slidenav-description,\n.tl-skinny .tl-slidenav-next .tl-slidenav-description {\n display: none;\n}\n.tl-skinny .tl-slidenav-previous .tl-slidenav-icon,\n.tl-skinny .tl-slidenav-next .tl-slidenav-icon {\n filter: alpha(opacity=33);\n -khtml-opacity: 0.33;\n -moz-opacity: 0.33;\n opacity: 0.33;\n}\n.tl-skinny .tl-slidenav-next:hover .tl-slidenav-icon,\n.tl-skinny .tl-slidenav-next:focus-visible .tl-slidenav-icon {\n margin-left: 12px;\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-skinny .tl-slidenav-previous:hover .tl-slidenav-icon,\n.tl-skinny .tl-slidenav-previous:focus-visible .tl-slidenav-icon {\n margin-left: -4px;\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-next:hover {\n /**\n * On mobile the hover state stays on the button after the click\n * Show the default margin as before the click\n */\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-next:hover .tl-slidenav-icon {\n margin-left: 76px;\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-next:active .tl-slidenav-icon {\n margin-left: 80px;\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-previous:hover {\n /**\n * On mobile the hover state stays on the button after the click\n * Show the default margin as before the click\n */\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-previous:hover .tl-slidenav-icon {\n margin-left: 0px;\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-layout-landscape.tl-mobile .tl-slidenav-previous:active .tl-slidenav-icon {\n margin-left: -4px;\n}\n.tl-layout-portrait.tl-mobile .tl-slidenav-next:hover .tl-slidenav-icon {\n filter: alpha(opacity=33);\n -khtml-opacity: 0.33;\n -moz-opacity: 0.33;\n opacity: 0.33;\n}\n.tl-layout-portrait.tl-mobile .tl-slidenav-next:active .tl-slidenav-icon {\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-layout-portrait.tl-mobile .tl-slidenav-previous:hover .tl-slidenav-icon {\n filter: alpha(opacity=33);\n -khtml-opacity: 0.33;\n -moz-opacity: 0.33;\n opacity: 0.33;\n}\n.tl-layout-portrait.tl-mobile .tl-slidenav-previous:active .tl-slidenav-icon {\n filter: alpha(opacity=100);\n -khtml-opacity: 1;\n -moz-opacity: 1;\n opacity: 1;\n}\n.tl-mobile .tl-slidenav-previous,\n.tl-skinny.tl-mobile .tl-slidenav-previous,\n.tl-skinny.tl-layout-landscape.tl-mobile .tl-slidenav-previous,\n.tl-skinny.tl-layout-portrait.tl-mobile .tl-slidenav-previous,\n.tl-mobile .tl-slidenav-next,\n.tl-skinny.tl-mobile .tl-slidenav-next,\n.tl-skinny.tl-layout-landscape.tl-mobile .tl-slidenav-next,\n.tl-skinny.tl-layout-portrait.tl-mobile .tl-slidenav-next {\n display: none;\n}\n/* StorySlider\n================================================== */\n/* SLIDER CONTAINERS\n================================================== */\n.tl-storyslider {\n width: 100%;\n height: 100%;\n overflow: hidden;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n -o-user-select: none;\n user-select: none;\n position: relative;\n box-sizing: content-box;\n z-index: 8;\n}\n.tl-storyslider img,\n.tl-storyslider embed,\n.tl-storyslider object,\n.tl-storyslider video,\n.tl-storyslider iframe {\n max-width: 100%;\n position: relative;\n}\n.tl-storyslider .tl-slider-background {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: 1;\n}\n.tl-storyslider .tl-slider-touch-mask {\n width: 100%;\n height: 100%;\n z-index: 25;\n top: 0px;\n left: 0px;\n position: absolute;\n}\n.tl-storyslider .tl-slider-container-mask {\n text-align: center;\n width: 100%;\n height: 100%;\n position: relative;\n z-index: 5;\n}\n.tl-storyslider .tl-slider-container-mask .tl-slider-container {\n position: absolute;\n top: 0px;\n left: 0px;\n width: 100%;\n height: 100%;\n text-align: center;\n}\n.tl-storyslider .tl-slider-container-mask .tl-slider-container .tl-slider-item-container {\n width: 100%;\n height: 100%;\n display: table-cell;\n vertical-align: middle;\n}\n/* Skinny\n================================================== */\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n/* Requires Variables.less\n================================================== */\n.tl-media {\n width: 100%;\n min-width: 50%;\n height: 100%;\n float: left;\n margin-top: auto;\n margin-bottom: auto;\n position: relative;\n}\n.tl-media .tl-media-content-container.tl-media-content-container-text {\n border-right: 1px solid #e6e6e6;\n padding-right: 20px;\n}\n.tl-media .tl-media-content-container .tl-media-content {\n position: relative;\n}\n.tl-media .tl-media-content-container .tl-media-content:before,\n.tl-media .tl-media-content-container .tl-media-content:after {\n display: table;\n content: \"\";\n}\n.tl-media .tl-media-content-container .tl-media-content:after {\n clear: both;\n}\n.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror p {\n color: #f2f2f2;\n text-align: center;\n}\n.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror p span {\n color: #f2f2f2;\n}\n.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror [class^=\"tl-icon-\"],\n.tl-media .tl-media-content-container .tl-media-content .tl-media-loaderror [class*=\" tl-icon-\"] {\n font-size: 28px;\n color: #f2f2f2;\n text-align: center;\n}\n.tl-media .tl-media-content-container .tl-media-content img,\n.tl-media .tl-media-content-container .tl-media-content embed,\n.tl-media .tl-media-content-container .tl-media-content object,\n.tl-media .tl-media-content-container .tl-media-content video {\n max-width: 100%;\n max-height: 100%;\n}\n/* Media Only Slides\n================================================== */\n.tl-slide-media-only .tl-media .tl-media-content-container.tl-media-content-container-text {\n border-right: none;\n padding-right: 0;\n}\n/* Media Shodow\n================================================== */\n.tl-media-shadow {\n position: relative;\n z-index: 1;\n -webkit-box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.6);\n -moz-box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.6);\n box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.6);\n}\n.tl-slide.tl-full-image-background a,\n.tl-slide.tl-full-color-background a,\n.tl-slide.tl-full-image-background .vcard a,\n.tl-slide.tl-full-color-background .vcard a {\n text-shadow: 1px 1px 1px #000;\n color: #ffffff;\n}\n.tl-slide.tl-full-image-background a:hover,\n.tl-slide.tl-full-color-background a:hover {\n text-decoration: underline;\n color: #c34528;\n}\n/* Credit\n================================================== */\n.tl-credit {\n color: #999999;\n text-align: right;\n display: block;\n margin: 0 auto;\n margin-top: 6px;\n font-size: 10px;\n line-height: 13px;\n}\n/* Caption\n================================================== */\n.tl-caption {\n text-align: left;\n margin-right: auto;\n margin-left: auto;\n margin-top: 10px;\n color: #666666;\n font-size: 11px;\n line-height: 14px;\n text-rendering: optimizeLegibility;\n word-wrap: break-word;\n}\n/* Full Image Background\n================================================== */\n.tl-full-image-background .tl-media-shadow:before,\n.tl-full-color-background .tl-media-shadow:before,\n.tl-full-image-background .tl-media-shadow:after,\n.tl-full-color-background .tl-media-shadow:after {\n background: none;\n -webkit-box-shadow: 0 0px 0px #000;\n -moz-box-shadow: 0 0px 0px #000;\n box-shadow: 0 0px 0px #000;\n}\n/* Skinny\n================================================== */\n.tl-skinny .tl-media {\n width: 100%;\n height: auto;\n float: none;\n display: block;\n}\n.tl-skinny .tl-media .tl-media-content-container.tl-media-content-container-text {\n border-right: 0;\n padding-right: 0;\n}\n.tl-skinny .tl-media .tl-media-content-container .tl-credit,\n.tl-skinny .tl-media .tl-media-content-container .tl-caption {\n margin-top: 2px;\n padding-left: 10px;\n padding-right: 10px;\n font-size: 8px;\n}\n.tl-skinny .tl-media .tl-media-content-container .tl-credit {\n margin-top: 0px;\n}\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny .tl-media {\n width: 100%;\n height: auto;\n float: none;\n display: block;\n}\n.tl-mobile.tl-skinny .tl-media .tl-media-content-container.tl-media-content-container-text {\n border-right: 0;\n padding-right: 0;\n}\n/* Requires Variables.less\n================================================== */\n.tl-text {\n width: 50%;\n max-width: 50%;\n min-width: 120px;\n padding: 0 20px 0 20px;\n display: table-cell;\n vertical-align: middle;\n text-align: left;\n text-shadow: none;\n color: #737373;\n}\n.tl-text p {\n color: #737373;\n}\n.tl-text .tl-text-content-container .tl-text-headline-container {\n display: flex;\n flex-direction: column-reverse;\n -webkit-flex-direction: column-reverse;\n /* Safari */\n}\n.tl-text h2.tl-headline-title,\n.tl-text h2.tl-headline {\n margin-top: 0;\n}\n.tl-text .tl-headline-date,\n.tl-text h3.tl-headline-date {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 15px;\n line-height: 15px;\n font-weight: normal;\n margin: 0 0 3px 0;\n color: #b3b3b3;\n}\n.tl-text .tl-headline-date small,\n.tl-text h3.tl-headline-date small {\n font-size: 15px;\n line-height: 15px;\n font-weight: normal;\n color: #b3b3b3;\n}\n.tl-text .tl-text-date {\n display: inline-block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-weight: normal;\n margin-top: 10px;\n font-size: 12px;\n color: #b3b3b3;\n}\n.tl-full-image-background .tl-text,\n.tl-full-color-background .tl-text,\n.tl-full-image-background .tl-text p,\n.tl-full-color-background .tl-text p {\n color: #f2f2f2 !important;\n text-shadow: 1px 1px 2px #000;\n}\n.tl-full-image-background .tl-text .tl-headline-date,\n.tl-full-color-background .tl-text .tl-headline-date,\n.tl-full-image-background .tl-text p .tl-headline-date,\n.tl-full-color-background .tl-text p .tl-headline-date,\n.tl-full-image-background .tl-text h3.tl-headline-date,\n.tl-full-color-background .tl-text h3.tl-headline-date,\n.tl-full-image-background .tl-text p h3.tl-headline-date,\n.tl-full-color-background .tl-text p h3.tl-headline-date {\n color: #f2f2f2 !important;\n}\n.tl-full-image-background .tl-text .tl-headline-date small,\n.tl-full-color-background .tl-text .tl-headline-date small,\n.tl-full-image-background .tl-text p .tl-headline-date small,\n.tl-full-color-background .tl-text p .tl-headline-date small,\n.tl-full-image-background .tl-text h3.tl-headline-date small,\n.tl-full-color-background .tl-text h3.tl-headline-date small,\n.tl-full-image-background .tl-text p h3.tl-headline-date small,\n.tl-full-color-background .tl-text p h3.tl-headline-date small {\n color: #f2f2f2 !important;\n}\n.tl-full-image-background .tl-text a:hover,\n.tl-full-color-background .tl-text a:hover,\n.tl-full-image-background .tl-text p a:hover,\n.tl-full-color-background .tl-text p a:hover {\n text-decoration: underline;\n color: #c34528;\n}\n/* Skinny\n================================================== */\n.tl-skinny .tl-text {\n width: 100%;\n max-width: 100%;\n min-width: auto;\n float: none;\n margin-top: 20px;\n}\n.tl-skinny .tl-text h2.tl-headline-title,\n.tl-skinny .tl-text h2.tl-headline {\n font-size: 32px;\n line-height: 36px;\n}\n/* Medium\n================================================== */\n.tl-medium .tl-text h2.tl-headline-title,\n.tl-medium .tl-text h2.tl-headline {\n font-size: 32px;\n line-height: 36px;\n}\n/* Mobile, iPhone\n================================================== */\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny .tl-media .tl-media-image {\n max-height: 250px !important;\n}\n.tl-media .tl-media-twitter {\n text-align: left;\n clear: both;\n}\n.tl-media .tl-media-twitter blockquote {\n margin: 0;\n margin-right: 15px;\n font-size: 15px;\n line-height: 21px;\n color: #333;\n}\n.tl-media .tl-media-twitter blockquote p {\n font-size: 28px;\n line-height: 30px;\n color: #000;\n}\n.tl-media .tl-media-twitter blockquote p:before {\n display: none;\n}\n.tl-media .tl-media-twitter blockquote p:after {\n display: none;\n}\n.tl-media .tl-media-twitter .tl-icon-twitter {\n color: #55ACEE;\n}\n.tl-media .tl-media-twitter .vcard a:hover,\n.tl-media .tl-media-twitter .vcard a.tl-date:hover {\n text-decoration: none;\n color: #55ACEE;\n}\n.tl-media .tl-media-twitter .vcard a:hover .fn,\n.tl-media .tl-media-twitter .vcard a.tl-date:hover .fn,\n.tl-media .tl-media-twitter .vcard a:hover .nickname,\n.tl-media .tl-media-twitter .vcard a.tl-date:hover .nickname {\n color: #55ACEE;\n}\n.tl-slide-media-only .tl-media .tl-media-twitter {\n width: 80%;\n margin-left: auto;\n margin-right: auto;\n}\n.tl-mobile.tl-skinny .tl-media .tl-media-twitter blockquote p {\n font-size: 15px;\n line-height: 21px;\n}\n.tl-skinny .tl-media .tl-media-twitter {\n margin-left: 10px;\n margin-right: 10px;\n}\n.tl-skinny .tl-media .tl-media-twitter blockquote p {\n font-size: 24px;\n line-height: 26px;\n}\n.tl-media .tl-media-blockquote {\n text-align: left;\n clear: both;\n}\n.tl-media .tl-media-blockquote blockquote {\n margin: 0;\n margin-right: 15px;\n text-align: left;\n font-size: 28px;\n line-height: 30px;\n color: #333;\n}\n.tl-media .tl-media-blockquote blockquote p {\n font-size: 28px;\n line-height: 30px;\n color: #333;\n}\n.tl-media .tl-media-blockquote blockquote p:before,\n.tl-media .tl-media-blockquote blockquote p:after {\n display: inline-block;\n font-size: 36px;\n}\n.tl-media .tl-media-blockquote blockquote p:before {\n content: open-quote;\n margin-right: 5px;\n}\n.tl-media .tl-media-blockquote blockquote p:after {\n content: close-quote;\n margin-left: 3px;\n}\n.tl-media .tl-media-blockquote blockquote cite {\n font-size: 15px;\n line-height: 21px;\n color: #999999;\n text-align: right;\n margin-top: 15px;\n}\n.tl-slide-media-only .tl-media .tl-media-blockquote {\n border-right: 0;\n width: 80%;\n margin-left: auto;\n margin-right: auto;\n}\n@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {\n .tl-media .tl-media-blockquote blockquote p {\n font-size: 24px;\n line-height: 26px;\n }\n}\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n .tl-media .tl-media-blockquote blockquote p {\n font-size: 15px;\n line-height: 21px;\n }\n}\n.tl-mobile.tl-skinny .tl-media .tl-media-instagram {\n max-height: 250px !important;\n}\n.tl-media .tl-media-profile {\n border-radius: 50%;\n}\n.tl-media .tl-media-iframe {\n width: 100%;\n height: 100%;\n}\n.tl-media .tl-media-iframe iframe {\n width: 100%;\n height: 100%;\n}\n.tl-media .tl-media-wikipedia {\n text-align: left;\n margin-left: auto;\n margin-right: auto;\n clear: both;\n}\n.tl-media .tl-media-wikipedia .tl-icon-wikipedia {\n font-size: 32px;\n margin-right: 10px;\n float: left;\n padding-top: 3px;\n}\n.tl-media .tl-media-wikipedia .tl-wikipedia-pageimage {\n float: left;\n margin-right: 10px;\n margin-bottom: 5px;\n margin-top: 5px;\n}\n.tl-media .tl-media-wikipedia .tl-wikipedia-title {\n margin-left: 60px;\n padding-left: 10px;\n border-left: 1px solid #e6e6e6;\n margin-bottom: 10px;\n}\n.tl-media .tl-media-wikipedia .tl-wikipedia-source {\n font-size: 13px;\n line-height: 15px;\n font-style: italic;\n margin-top: 3px;\n display: block;\n color: rgba(0, 0, 0, 0.5);\n}\n.tl-media .tl-media-wikipedia h4 {\n margin-top: 0px;\n margin-bottom: 0px;\n}\n.tl-media .tl-media-wikipedia h4 a {\n color: #000;\n text-decoration: none;\n}\n.tl-media .tl-media-wikipedia p {\n font-size: 13px;\n line-height: 19px;\n}\n.tl-slide-media-only .tl-media .tl-media-wikipedia {\n border-right: 0;\n border-top: 1px solid #e6e6e6;\n width: 80%;\n margin-left: auto;\n margin-right: auto;\n margin-top: 25px;\n padding-top: 25px;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia,\n.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia {\n padding: 20px;\n /* Fallback for web browsers that doesn't support RGBa */\n background: #000000 transparent;\n /* RGBa with 0.6 opacity */\n background: rgba(0, 0, 0, 0.6);\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia h4 a,\n.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia h4 a {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia a:hover,\n.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia a:hover {\n text-decoration: underline;\n color: #c34528;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia .tl-wikipedia-title,\n.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia .tl-wikipedia-title {\n border-color: rgba(230, 230, 230, 0.25);\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-wikipedia .tl-wikipedia-source,\n.tl-slide.tl-full-color-background .tl-media .tl-media-wikipedia .tl-wikipedia-source {\n color: rgba(230, 230, 230, 0.85);\n}\n.tl-mobile.tl-skinny .tl-media .tl-media-wikipedia,\n.tl-skinny .tl-media .tl-media-wikipedia {\n margin-left: 10px;\n margin-right: 10px;\n}\n.tl-media .tl-media-website {\n text-align: left;\n margin-left: auto;\n margin-right: auto;\n clear: both;\n}\n.tl-media .tl-media-website .tl-media-website-description {\n font-size: 16px;\n line-height: 19px;\n font-style: italic;\n margin-bottom: 10px;\n text-transform: uppercase;\n}\n.tl-media .tl-media-website h4 {\n margin-top: 0px;\n margin-bottom: 0px;\n line-height: 1;\n}\n.tl-media .tl-media-website h4 a {\n color: #000;\n text-decoration: none;\n}\n.tl-media .tl-media-website p {\n font-size: 13px;\n line-height: 19px;\n}\n.tl-media .tl-media-content-container .tl-media-content .tl-media-website img {\n float: right;\n max-width: 120px;\n max-height: 120px;\n margin: 4px 0 0 15px;\n}\n.tl-media .tl-media-content-container .tl-media-content .tl-media-website img.tl-media-website-icon {\n max-width: 16px;\n max-height: 16px;\n float: none;\n margin: 0;\n margin-right: 3px;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-website,\n.tl-slide.tl-full-color-background .tl-media .tl-media-website {\n padding: 20px;\n /* Fallback for web browsers that doesn't support RGBa */\n background: #000000 transparent;\n /* RGBa with 0.6 opacity */\n background: rgba(0, 0, 0, 0.6);\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-website h4 a,\n.tl-slide.tl-full-color-background .tl-media .tl-media-website h4 a {\n color: #FFF !important;\n text-shadow: 1px 1px 1px #000 !important;\n}\n.tl-slide.tl-full-image-background .tl-media .tl-media-website a:hover,\n.tl-slide.tl-full-color-background .tl-media .tl-media-website a:hover {\n text-decoration: underline;\n color: #c34528;\n}\n.tl-mobile.tl-skinny .tl-media .tl-media-website {\n margin-left: 10px;\n margin-right: 10px;\n}\n/* Timeline\n================================================== */\n.tl-timeline {\n width: 100%;\n height: 100%;\n font-size: 16px;\n line-height: normal;\n overflow: hidden;\n position: relative;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n -o-user-select: none;\n user-select: none;\n background-color: #FFF;\n color: #737373;\n -webkit-box-sizing: content-box;\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n}\n.tl-timeline.tl-timeline-embed {\n box-sizing: border-box;\n border-top: 1px solid #cccccc;\n border-bottom: 1px solid #cccccc;\n border-radius: 0;\n}\n.tl-timeline.tl-timeline-full-embed {\n box-sizing: border-box;\n border: 1px solid #cccccc;\n border-radius: 8px;\n}\n.tl-timeline .tl-attribution {\n cursor: pointer;\n z-index: 9;\n position: absolute;\n bottom: 2px;\n left: 0px;\n font-size: 10px;\n line-height: 10px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif !important;\n background-color: rgba(255, 255, 255, 0.85);\n padding: 3px;\n}\n.tl-timeline .tl-attribution a {\n color: #cccccc;\n}\n.tl-timeline .tl-attribution a:hover,\n.tl-timeline .tl-attribution a:focus-visible {\n color: #000;\n text-decoration: none;\n}\n.tl-timeline .tl-attribution a:hover .tl-knightlab-logo,\n.tl-timeline .tl-attribution a:focus-visible .tl-knightlab-logo {\n background-color: #c34528;\n}\n.tl-timeline .tl-attribution .tl-knightlab-logo {\n display: inline-block;\n vertical-align: middle;\n height: 8px;\n width: 8px;\n margin-right: 3px;\n background-color: #c34528;\n background-color: #cccccc;\n transform: rotate(45deg);\n -ms-transform: rotate(45deg);\n -webkit-transform: rotate(45deg);\n}\n/* Portrait\n================================================== */\n.tl-layout-portrait .tl-storyslider {\n -webkit-box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.2);\n -moz-box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.2);\n box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.2);\n}\n.tl-rtl .tl-text-content,\n.tl-rtl .tl-headline,\n.tl-rtl .tl-media-blockquote,\n.tl-rtl .tl-headline-date,\n.tl-rtl .tl-timeline blockquote p,\n.tl-rtl .tl-media-website,\n.tl-rtl .tl-media-wikipedia,\n.tl-rtl .tl-media .tl-media-blockquote blockquote,\n.tl-rtl .blockquote,\n.tl-rtl blockquote p,\n.tl-rtl .tl-text-content p {\n text-align: right;\n direction: rtl;\n}\n.tl-rtl .tl-slide-media-only .tl-headline,\n.tl-rtl .tl-slide-media-only .tl-headline-date {\n text-align: center;\n}\n.tl-rtl .tl-timemarker-text {\n margin-right: 35px;\n}\n.tl-rtl .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container {\n float: right;\n}\n.tl-rtl .tl-caption {\n text-align: right;\n}\n.tl-rtl .tl-credit {\n text-align: left;\n}\n",".tl-timeline {\n\tfont-family: @font-main;\n\t\n\th1, h2, h3, h4, h5, h6 {\n\t\tcolor:@color-header-text;\n\t}\n\t\n\th1, h2, h3 {\n\t\tfont-size: @base-font-size-xlarge;\n\t\tline-height:@base-font-size-xlarge;\n\t\tsmall {\n\t\t\tfont-size: \t\t@base-font-size-large;\n\t\t\tline-height:\t@base-font-size-large;\n\t\t}\n\t}\n\th4, h5, h6 {\n\t\tfont-size: @base-font-size-large;\n\t\tline-height:@base-font-size-large;\n\t\tmargin-bottom:0px;\n\t\tsmall {\n\t\t\tfont-size: @base-font-size;\n\t\t\tline-height:@base-font-size;\n\t\t}\n\t}\n\th2.tl-headline-title {\n\t\tfont-size: @base-font-size-xlarge + 10;\n\t\tline-height: @base-font-size-xlarge + 10;\n\t\tsmall {\n\t\t\tdisplay:block;\n\t\t\tmargin-top:5px;\n\t\t\tfont-size: @base-font-size-large;\n\t\t\tline-height:@base-font-size-large;\n\t\t}\n\t}\n\t\n\th2 {\n\t\tmargin-top:20px;\n\t\tmargin-bottom:5px;\n\t}\n\t\n\tp {\n\t\tmargin-top:5px;\n\t\tmargin-bottom:10px;\n\t\tfont-size: @base-font-size;\n\t\tline-height:@base-line-height;\n\t\t//font-family: @font-secondary;\n\t\tcolor: lighten(@color-dark, 40%);\n\t\t&.lead {\n\t\t\tfont-size: @base-font-size-large;\n\t\t}\n\t\ta {\n\t\t\t/*\n\t\t\tcolor: lighten(@color-dark, 40%);\n\t\t\ttext-decoration: none;\n\t\t\tbackground-image: -moz-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: -webkit-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: -o-linear-gradient(top, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-image: linear-gradient(to bottom, fade(lighten(@color-dark, 40%), 0%) 50%, fade(lighten(@color-dark, 40%), 60%) 50%);\n\t\t\tbackground-repeat: repeat-x;\n\t\t\tbackground-size: 2px 2px;\n\t\t\tbackground-position: 0 @base-font-size+2;\n\t\t\ttext-shadow: -2px -1px 0 white, 2px -1px 0 white, -2px 1px 0 white, 2px 1px 0 white;\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\tcolor:@color-theme;\n\t\t\t\ttext-decoration: none;\n\t\t\t}\n\t\t\t*/\n\t\t\tcolor: lighten(@color-dark, 40%);\n\t\t\ttext-decoration: underline;\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\tcolor:@color-theme;\n\t\t\t\t//text-decoration: none;\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\t@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {\n\t\t\ta {\n\t\t\t\ttext-decoration: underline;\n\t\t\t\tbackground-image:none;\n\t\t\t\ttext-shadow: none;\n\t\t\t\t&:hover,\n\t\t\t\t&:focus {\n\t\t\t\t\tcolor:@color-theme;\n\t\t\t\t\ttext-decoration: underline;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t\n\t\t\n\t}\n\tb, strong {\n\t\tfont-weight: bold;\n\t\t//color: @color-dark;\n\t}\n\ti, em {\n\t\tfont-style: italic;\n\t}\n\ta {\n\t\ttext-decoration:none;\n\t\tcolor:@color-theme;\n\t}\n\ta:hover {\n\t\ttext-decoration:underline;\n\t\tcolor: darken(@color-theme, 20%);\n\t}\n\t.tl-caption, .tl-credit, .tl-slidenav-next, .tl-slidenav-previous {\n\t\t//font-family: @font-sanserif;\n\t\tfont-size:@base-font-size-small;\n\t\tline-height:@base-font-size-small;\n\t\ta {\n\t\t\tcolor: @color-dark;\n\t\t}\n\t}\n\t.tl-makelink {\n\n\t\tword-break: break-all;\n\t\tword-break: break-word;\n\t\t-webkit-hyphens: auto;\n\t\t -moz-hyphens: auto;\n\t\t hyphens: auto;\n\t}\n\tblockquote, blockquote p {\n\t\tfont-family: @font-serif;\n\t\tcolor: lighten(@color-dark, 60%);\n\t\tfont-size: @base-font-size-large;\n\t\tline-height:@base-font-size-large;\n\t\ttext-align:left;\n\t\tbackground:transparent;\n\t\tborder:0px;\n\t\tpadding:0px;\n\t\tcite {\n\t\t\tfont-family: @font-sanserif;\n\t\t\tfont-size: @base-font-size-small;\n\t\t\tcolor: lighten(@color-dark, 40%);\n\t\t\tdisplay:block;\n\t\t\ttext-align:right;\n\t\t\tfont-style: normal;\n\t\t\t\n\t\t}\n\t\tcite:before {\n\t\t\tcontent: \"\\2014\";\n\t\t}\n\t}\n\tblockquote p:before {\n\t\tcontent: open-quote;\n\t\tdisplay:inline-block;\n\t\tfont-size: @base-font-size-xlarge;\n\t\tposition: relative; \n\t\ttop: 8px;\n\t\tmargin-right:5px;\n\t\t\n\t}\n\tblockquote p:after {\n\t\tcontent: close-quote;\n\t\tdisplay:inline-block;\n\t\tfont-size: @base-font-size-xlarge;\n\t\tposition: relative; \n\t\ttop: 8px;\n\t\tmargin-left:3px;\n\t\t\n\t}\n\tblockquote {\n\t\tmargin:10px;\n\t\tp {\n\t\t\tmargin:0;\n\t\t}\n\t\t//margin-left:18px;\n\t}\n\t\n\n\t/* VCard\n\t================================================== */\n\t.vcard {\n\t\tfont-family: @font-main;\n\t\tfont-size: @base-font-size;\n\t\tline-height:@base-font-size;\n\n\t\t.clearfix();\n\t\tmargin-bottom:@base-spacing;\n\t\tmargin-top:10px;\n\t\t.twitter-date {\n\t\t\ttext-align:left;\n\t\t\tfont-size:@base-font-size-small;\n\t\t}\n\t\t.author {\n\t\t\tfloat:right;\n\t\t\t//text-align:right;\n\t\t}\n\t\ta {\n\t\t\tcolor: lighten(@color-dark, 20%);\n\t\t\ttext-decoration:none;\n\t\t}\n\t\ta:hover {\n\t\t\ttext-decoration: none;\n\t\t\t.fn, .nickname {\n\t\t\t\tcolor:@color-theme;\n\t\t\t\t//text-decoration: underline;\n\t\t\t}\n\t\t}\n\t\t.fn, .nickname {\n\t\t\t\t\n\t\t\tpadding-left: 42px;\n\t\t}\n\t\t.fn {\n\t\t\tdisplay:block;\n\t\t\tfont-weight: bold;\n\n\t\t}\n\t\t.nickname {\n\t\t\tmargin-top:1px;\n\t\t\tdisplay:block;\n\t\t\tcolor: lighten(@color-dark, 40%);\n\t\t}\n\t\t\t\n\t\t.avatar {\n\t\t\tfloat:left;\n\t\t\tdisplay: block;\n\t\t\twidth: 32px;\n\t\t\theight: 32px;\n\t\t\timg {\n\t\t\t\t-moz-border-radius: 5px;\n\t\t\t\t-webkit-border-radius: 5px;\n\t\t\t\tborder-radius: 5px;\n\t\t\t}\n\t\t}\n\t}\n\t.tl-text {\n\t\tul {\n\t\t\tpadding:0px;\n\t\t\tpadding-left:30px;\n\t\t\tmargin:0;\n\t\t\tli {\n\t\t\t\tmargin-bottom:5px;\n\t\t\t}\n\t\t}\n\t\t\n\t}\n\n\t.tl-button-calltoaction {\n\t\tcursor: pointer;\n\t\tfont-weight: bold;\n\t\tpadding-top: 10px;\n\t\tmargin-bottom: 10px;\n\t\tpadding-bottom: 10px;\n\n\t\t.tl-button-calltoaction-text {\n\t\t\tdisplay: inline-block;\n\t\t\tbackground-color: #c34528;\n\t\t\tcolor: #fff;\n\t\t\tpadding: 10px 15px 10px 15px;\n\t\t\tborder-radius: 7px;\n\t\t}\n\t}\n\n\t.tl-note {\n\t\tdisplay:block;\n\t\tfont-family: @font-main;\n\t\tfont-style: italic;\n\t\tbackground-color:@note-color-background;\n\t\tfont-size:@base-font-size;\n\t\tline-height:@base-font-size+2;\n\t\tpadding:10px;\n\t\t.border-radius(7px); \n\t\tcolor: #8a6d3b;\n\t\tborder: 1px solid #faebcc;\n\t\ttext-shadow: none;\n\t}\n\n\n}\n\n\n// Skinnier\n@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {\n\t.tl-timeline {\n\t\th1, h2, h3 {\n\t\t\tfont-size: @base-font-size-xlarge;\n\t\t\tline-height: @base-font-size-xlarge;\n\t\t}\n\t\th2.tl-headline-title {\n\t\t}\n\t}\n\t\n}\n// Mobile, iPhone and skinny\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n\t.tl-timeline {\n\t\th1, h2, h3 {\n\t\t\tfont-size: @base-font-size-xlarge - 4;\n\t\t\tline-height: @base-font-size-xlarge - 4;\n\t\t}\n\t\th2.tl-headline-title {\n\n\t\t}\n\t}\n}\n.tl-skinny {\n\th2 {\n\t\tmargin-top:0px;\n\t\t//padding-top:20px;\n\t}\n}\n","/*\tMixins.less\n\tSnippets of reusable CSS to develop faster and keep code readable\n * ----------------------------------------------------------------- */\n// Marker bottom text fade\n.marker-text-fade(@thecolor, @thepercent: 100%) {\n\tbackground: -moz-linear-gradient(top, fadeout(@thecolor, 100%) 0%, @thecolor @thepercent); /* FF3.6+ */\n\tbackground: -webkit-gradient(linear, left top, left bottom, color-stop(0%,fadeout(@thecolor, 100%)), color-stop(@thepercent,@thecolor)); /* Chrome,Safari4+ */\n\tbackground: -webkit-linear-gradient(top, fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* Chrome10+,Safari5.1+ */\n\tbackground: -o-linear-gradient(top, fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* Opera 11.10+ */\n\tbackground: -ms-linear-gradient(top, fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* IE10+ */\n\tbackground: linear-gradient(to bottom, fadeout(@thecolor, 100%) 0%,@thecolor @thepercent); /* W3C */\n\tfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr='@thecolor', endColorstr='@thecolor',GradientType=0 ); /* IE6-9 */\n}\n\n// Cubic Bezier \n.animation-timing-cubic-bezier() {\n\t\n\t-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);\n}\n\n// Property Animation\n.property-animation(@prop:height, @time:1000ms, @ease:cubic-bezier(0.770, 0.000, 0.175, 1.000)) {\n\t-webkit-transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t -moz-transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t -o-transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000); \n\t transition+: @prop @time cubic-bezier(0.770, 0.000, 0.175, 1.000);\n}\n\n// Disable Selection\n.disable-selection() {\n\t-webkit-touch-callout: none;\n\t -webkit-user-select: none;\n\t -khtml-user-select: none;\n\t -moz-user-select: none;\n\t -ms-user-select: none;\n\t user-select: none;\n}\n\n// Border Box\n.border-box() {\n\t-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */\n\t -moz-box-sizing: border-box; /* Firefox, other Gecko */\n\t\t box-sizing: border-box;\n}\n\n// Opacity\n.opacity(@opacity: 100) {\n \tfilter: e(%(\"alpha(opacity=%d)\", @opacity));\n \t-khtml-opacity: @opacity / 100;\n \t -moz-opacity: @opacity / 100;\n \t opacity: @opacity / 100;\n}\n// Background Opacity\n.background-opacity(@opacity: 100) {\n\t/* Fallback for web browsers that doesn't support RGBa */\n\tbackground: rgb(0, 0, 0) transparent;\n\t/* RGBa with 0.6 opacity */\n\tbackground: rgba(0, 0, 0, @opacity / 100);\n}\n\n// Background Color Opacity\n.background-color-opacity(@cr:0, @cg:0, @cb:0, @opacity: 100) {\n\t/* Fallback for web browsers that doesn't support RGBa */\n\tbackground: rgb(@cr, @cg, @cb) transparent;\n\t/* RGBa with 0.6 opacity */\n\tbackground: rgba(@cr, @cg, @cb, @opacity / 100);\n}\n\n// Slide Text Shadow\n.slide-text-shadow(@shadow: 1px 1px 1px #000) {\n\tcolor: #FFF !important;\n\ttext-shadow: @shadow !important;\n\n}\n\n// Border Radius\n.border-radius(@radius: 5px) {\n \t-webkit-border-radius: @radius;\n \t -moz-border-radius: @radius;\n \t border-radius: @radius;\n}\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Box Shadow\n.box-shadow(@shadow: 1px 1px 7px rgba(0,0,0,.30)) {\n\t-webkit-box-shadow: @shadow;\n\t -moz-box-shadow: @shadow;\n\t box-shadow: @shadow;\n}\n// Transform\n.transform(@transform) {\n \t-webkit-transform: @transform;\n \t -moz-transform: @transform;\n \t -ms-transform: @transform;\n \t -o-transform: @transform;\n \t transform: @transform;\n}\n// Transitions\n.transition(@transition) {\n \t-webkit-transition: @transition;\n \t -moz-transition: @transition;\n \t -ms-transition: @transition;\n \t -o-transition: @transition;\n \t transition: @transition;\n}\n// Hyphens\n.hyphens(@hyphens: auto) {\n \t-webkit-hyphens:@hyphens;\n \t -moz-hyphens:@hyphens;\n \t -ms-hyphens:@hyphens;\n \t hyphens:@hyphens;\n}\n// User select\n// For selecting text on the page\n.user-select(@select) {\n\t-webkit-user-select: @select;\n\t -moz-user-select: @select;\n\t -ms-user-select: @select; // IE10+\n\t -o-user-select: @select;\n\t user-select: @select;\n}\n// Clear Fix\n.clearfix() {\n\t&:before,\n\t&:after {\n\t\tdisplay: table;\n\t\tcontent: \"\";\n\t}\n\t&:after {\n\t\tclear: both;\n\t}\n}\n.translucent-background(@color: @white, @alpha: 1) {\n\tbackground-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);\n}\n// Add an alphatransparency value to any background or border color (via Elyse Holladay)\n#translucent {\n .background(@color: @white, @alpha: 1) {\n background-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);\n }\n .border(@color: @white, @alpha: 1) {\n border-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);\n background-clip: padding-box;\n }\n}\n// Reset filters for IE\n.reset-filter() {\n\tfilter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n// Center-align a block level element\n.center-block() {\n\tdisplay: block;\n\tmargin-left: auto;\n\tmargin-right: auto;\n}\n// Create Vertical Gradient\n.gradient-vertical (@startColor: #555, @endColor: #333) {\n //background-color: @endColor;\n background-repeat: repeat-x;\n background-image: -khtml-gradient(linear, left top, left bottom, from(@startColor), to(@endColor)); // Konqueror\n background-image: -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+\n background-image: -ms-linear-gradient(top, @startColor, @endColor); // IE10\n background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @startColor), color-stop(100%, @endColor)); // Safari 4+, Chrome 2+\n background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+\n background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10\n background-image: linear-gradient(top, @startColor, @endColor); // The standard\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",@startColor,@endColor)); // IE9 and down\n}\n\n// GRADIENTS\n// --------------------------------------------------\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}","/* Icons\n================================================== */\n\n@font-face {\n\tfont-family: 'tl-icons';\n\tsrc:url('@{icon-path}tl-icons.eot');\n\tsrc:url('@{icon-path}tl-icons.eot?#iefix') format('embedded-opentype'),\n\t\turl('@{icon-path}tl-icons.ttf') format('truetype'),\n\t\turl('@{icon-path}tl-icons.woff2') format('woff2'),\n\t\turl('@{icon-path}tl-icons.woff') format('woff'),\n\t\turl('@{icon-path}tl-icons.svg#tl-icons') format('svg');\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\tfont-family: 'tl-icons';\n\tspeak: none;\n\tfont-style: normal;\n\tfont-weight: normal;\n\tfont-variant: normal;\n\ttext-transform: none;\n\tline-height: 1;\n\n\t/* Better Font Rendering =========== */\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n}\n\n\n.tl-icon-vine:after {\n\tcontent: \"\\e64d\";\n}\n.tl-icon-wikipedia:after {\n\tcontent: \"\\e64e\";\n}\n.tl-icon-chevron-right:after {\n\tcontent: \"\\e64f\";\n}\n.tl-icon-chevron-left:after {\n\tcontent: \"\\e650\";\n}\n.tl-icon-youtube-logo:after {\n\tcontent: \"\\e651\";\n}\n.tl-icon-foursquare:after {\n\tcontent: \"\\e652\";\n}\n.tl-icon-camera-retro:after {\n\tcontent: \"\\e653\";\n}\n.tl-icon-doc:after {\n\tcontent: \"\\e654\";\n}\n.tl-icon-weibo:after {\n\tcontent: \"\\e655\";\n}\n.tl-icon-resize-horizontal:after {\n\tcontent: \"\\e656\";\n}\n.tl-icon-resize-vertical:after {\n\tcontent: \"\\e657\";\n}\n.tl-icon-resize-full:after {\n\tcontent: \"\\e658\";\n}\n.tl-icon-resize-small:after {\n\tcontent: \"\\e659\";\n}\n.tl-icon-twitter:after {\n\tcontent: \"\\e62b\";\n}\n.tl-icon-google-plus:after {\n\tcontent: \"\\e62c\";\n}\n.tl-icon-video:after {\n\tcontent: \"\\e62d\";\n}\n.tl-icon-youtube:after {\n\tcontent: \"\\e62d\";\n}\n.tl-icon-plaintext:after {\n\tcontent: \"\\e62e\";\n}\n.tl-icon-storify:after {\n\tcontent: \"\\e62e\";\n}\n.tl-icon-image-v2:after {\n\tcontent: \"\\e62f\";\n}\n.tl-icon-quote-v2:after {\n\tcontent: \"\\e630\";\n}\n.tl-icon-zoom-in:after {\n\tcontent: \"\\e631\";\n}\n.tl-icon-zoom-out:after {\n\tcontent: \"\\e632\";\n}\n.tl-icon-list:after {\n\tcontent: \"\\e633\";\n}\n.tl-icon-music:after {\n\tcontent: \"\\e634\";\n}\n.tl-icon-spotify:after {\n\tcontent: \"\\e634\";\n}\n.tl-icon-location:after {\n\tcontent: \"\\e635\";\n}\n.tl-icon-googlemaps:after {\n\tcontent: \"\\e635\";\n}\n.tl-icon-web:after {\n\tcontent: \"\\e636\";\n}\n.tl-icon-share-v2:after {\n\tcontent: \"\\e637\";\n}\n.tl-icon-soundcloud:after {\n\tcontent: \"\\e639\";\n}\n.tl-icon-video-v2:after {\n\tcontent: \"\\e63a\";\n}\n.tl-icon-dailymotion:after {\n\tcontent: \"\\e63a\";\n}\n.tl-icon-tumblr:after {\n\tcontent: \"\\e63b\";\n}\n.tl-icon-lastfm:after {\n\tcontent: \"\\e63c\";\n}\n.tl-icon-github:after {\n\tcontent: \"\\e63d\";\n}\n.tl-icon-goback:after {\n\tcontent: \"\\e63e\";\n}\n.tl-icon-goend:after {\n\tcontent: \"\\e969\";\n}\n.tl-icon-prev2:after {\n\tcontent: \"\\ea23\";\n}\n.tl-icon-next2:after {\n\tcontent: \"\\ea24\";\n}\n.tl-icon-doc-v2:after {\n\tcontent: \"\\e63f\";\n}\n.tl-icon-googledrive:after {\n\tcontent: \"\\e640\";\n}\n.tl-icon-facebook:after {\n\tcontent: \"\\e641\";\n}\n.tl-icon-flickr:after {\n\tcontent: \"\\e642\";\n}\n.tl-icon-dribbble:after {\n\tcontent: \"\\e643\";\n}\n.tl-icon-image:after {\n\tcontent: \"\\e605\";\n}\n.tl-icon-vimeo:after {\n\tcontent: \"\\e606\";\n}\n.tl-icon-instagram:after {\n\tcontent: \"\\e644\";\n}\n.tl-icon-pinterest:after {\n\tcontent: \"\\e645\";\n}\n.tl-icon-arrow-left:after {\n\tcontent: \"\\e646\";\n}\n.tl-icon-arrow-down:after {\n\tcontent: \"\\e647\";\n}\n.tl-icon-arrow-up:after {\n\tcontent: \"\\e648\";\n}\n.tl-icon-arrow-right:after {\n\tcontent: \"\\e649\";\n}\n.tl-icon-share:after {\n\tcontent: \"\\e64a\";\n}\n.tl-icon-blockquote:after {\n\tcontent: \"\\e64b\";\n}\n.tl-icon-evernote:after {\n\tcontent: \"\\e64c\";\n}\n.tl-icon-mappin:after {\n\tcontent: \"\\e600\";\n}\n.tl-icon-swipe-right:after {\n\tcontent: \"\\e601\";\n}\n.tl-icon-swipe-left:after {\n\tcontent: \"\\e602\";\n}\n.tl-icon-touch-spread:after {\n\tcontent: \"\\e603\";\n}\n.tl-icon-touch-pinch:after {\n\tcontent: \"\\e604\";\n}\n","/* Disable Text selection when dragging\n================================================== */\n.tl-dragging {\n\t-webkit-touch-callout: none;\n\t\n\t.user-select(none);\n}","/* MenuBar \n================================================== */\n\n.tl-menubar {\n\tposition:absolute;\n\t//width:100%;\n\t//height:\t1px;\n\tz-index:11;\n\ttext-align:center;\n\tcolor:#333;\n\t//height:26px;\n\t//background-color:#FFF;\n\t//.box-shadow(0px -3px 6px rgba(0,0,0,.20));\n\toverflow:hidden;\n\t//margin-top:-25px;\n\t//border-top: 1px solid darken(@color-background,10);\n\t//border-bottom: 1px solid darken(@color-background,10);\n\t//border-right: 1px solid darken(@color-background,10);\n\t\n\t//.border-bottom-radius(7px);\n\tborder-bottom-right-radius: 10px;\n\tborder-top-right-radius: 10px;\n\ttop:100%;\n\tleft:50%;\n\tleft:0;\n}\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-menubar {\n\t\t\n\t}\n}\n\n\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-menubar {\n\t\t\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-menubar {\n\t\t\n\t}\n}\n\n\n/* Color\n================================================== */\n\n// Inverted\n/*\n.tl-sizebar.tl-sizebar-inverted {\n\tborder-bottom: 1px solid #FFF;\n\t//background-color:#000;\n\tcolor:#a5a5a5;\n\t.tl-sizebar-button {\n\t\tborder-left: 1px solid darken(@color-background, 70);\n\t\t//color:#a5a5a5;\n\t}\n\t.tl-sizebar-button:hover {\n\t\t//background:@color-theme;\n\t\tcolor:@color-background;\n\t}\n}\n.tl-sizebar.tl-sizebar-inverted:before {\n\tbackground-color:#000;\n\t//.gradient-vertical (rgba(0,0,0,0.25), rgba(0,0,0,1));\n\t//.translucent-background(rgb(0,0,0), .5);\n\tborder-top: 2px solid #000;\n\tanimation: invertToBlack 1s;\n\t-webkit-animation:invertToBlack 1s; \n}\n*/\n\n@keyframes invertToBlack {\n\tfrom {\n\t\tbackground-color:#FFF;\n\t}\n\tto {\n\t\tbackground-color:#000;\n\t}\n}\n@-webkit-keyframes invertToBlack {\n\tfrom {background:#FFF;}\n\tto {background:#000;}\n}\n@keyframes invertToWhite {\n\tfrom {background-color:#000;}\n\tto {background-color:#FFF;}\n}\n@-webkit-keyframes invertToWhite{\n\tfrom {background:#000;}\n\tto {background:#FFF;}\n}\n\n\n","/* MenuBar Button\n================================================== */\n\n.tl-menubar-button {\n\t//border-left: 1px solid darken(@color-background,10);\n border:none;\n\tfont-size: 18px;\n\tline-height:18px;\n\t//padding: 6px 12px 6px 12px;\n\t//padding:12px;\n\tbackground-color:fadeout(@ui-background-color, 10%);\n\tcursor:pointer;\n\tpadding: 5px 10px 5px 10px;\n\tdisplay:inline-block;\n\tdisplay:block;\n\t//color:@color-text;\n\tcolor:@marker-color-menubar-button;\n\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\n\t}\n\n\t&:disabled {\n\t\topacity:0.33;\n cursor:default;\n\t}\n\t&:hover, &:focus-visible {\n\t\tbackground:@color-foreground;\n\t\tcolor:@color-background;\n\t\t&:disabled {\n\t\t\tcolor:darken(@marker-color,15);\n\t\t\tbackground-color:fadeout(@ui-background-color, 10%);\n\t\t}\n\t}\n}\n\n.tl-mobile {\n\t.tl-menubar-button {\n\t\tdisplay:block;\n\t\t&:hover {\n\t\t\t//background-color:#FFF;\n\t\t\tbackground-color:fadeout(@ui-background-color, 33%);\n\t\t\tcolor:@color-text;\n\t\t}\n\t\t&:active {\n\t\t\tbackground:@color-theme;\n\t\t\tcolor:@color-background;\n\t\t}\n\t}\n}\n\n\n@keyframes invertToBlack {\n\tfrom {\n\t\tbackground-color:#FFF;\n\t}\n\tto {\n\t\tbackground-color:#000;\n\t}\n}\n@-webkit-keyframes invertToBlack {\n\tfrom {background:#FFF;}\n\tto {background:#000;}\n}\n@keyframes invertToWhite {\n\tfrom {background-color:#000;}\n\tto {background-color:#FFF;}\n}\n@-webkit-keyframes invertToWhite{\n\tfrom {background:#000;}\n\tto {background:#FFF;}\n}\n\n\n","/* MESSAGE \n================================================== */\n.tl-message, .tl-message-full {\n\twidth:\t\t\t\t100%;\n\t//max-width: \t\t\t200px;\n\theight:\t\t\t\t100%;\n\tposition: \t\t\tabsolute;\n\t//position: \t\t\trelative;\n\t\n\tdisplay: \t\t\ttable;\n\toverflow: \t\t\thidden;\n\ttop: \t\t\t\t0px;\n\tleft: \t\t\t\t0px;\n\tz-index:\t\t\t99;\n\tmargin:\t\t\t\tauto;\n\ttext-align:\t\t\tcenter;\n\t.tl-message-container {\n\t\tpadding: \t\t\t20px;\n\t\tmargin:20px;\n\t\ttext-align:\t\t\tcenter;\n\t\tvertical-align: \tmiddle;\n\t\tdisplay:table-cell;\n\n\t\t.tl-message-content {\n\t\t\tcolor:#666;\n\t\t\ttext-align: center;\n\t\t\tfont-size: 11px;\n\t\t\tline-height: 13px;\n\t\t\ttext-transform: uppercase;\n\t\t\tmargin-top: 7.5px;\n\t\t\tmargin-bottom: 7.5px;\n\t\t\ttext-shadow: 1px 1px 1px #FFF;\n\t\t\t\n\t\t\tstrong {\n\t\t\t\ttext-transform: uppercase;\n\t\t\t}\n\t\t}\n\t\t.tl-loading-icon {\n\t\t\twidth: 30px;\n\t\t\theight: 30px;\n\t\t\tbackground-color: #666;\n\t\t\tvertical-align: middle;\n\t\t\t.box-shadow(inset 0 1px 2px rgba(255,255,255,.1));\n\t\t\tmargin-left: auto;\n\t\t\tmargin-right: auto;\n\t\t\ttext-align: center;\n\t\t //margin: 100px auto;\n\t\t\t-webkit-animation: rotateplane 1.2s infinite ease-in-out;\n\t\t\tanimation: rotateplane 1.2s infinite ease-in-out;\n\t\t}\n\n\t\t@-webkit-keyframes rotateplane {\n\t\t\t0% { -webkit-transform: perspective(120px) }\n\t\t\t50% { -webkit-transform: perspective(120px) rotateY(180deg) }\n\t\t\t100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg) }\n\t\t}\n\n\t\t@keyframes rotateplane {\n\t\t\t0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg) }\n\t\t\t50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) }\n\t\t\t100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg) }\n\t\t}\n\t}\n}\n.tl-message-full {\n\t.translucent-background(#FFF, 0.80);\n\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t//width: 48px;\n\t\t//height: 48px;\n\t\tcolor:#666;\n\t\tfont-size:72px;\n\t}\n\t.tl-message-container {\n\t\t.tl-message-content {\n\t\t\tfont-size: 22px;\n\t\t\tline-height: 22px;\n\t\t\ttext-shadow: none;\n\t\t\tcolor:#666;\n\t\t\ttext-transform: none;\n\t\t\tfont-weight: normal;\n\t\t\t.tl-button {\n\t\t\t\tdisplay:inline-block;\n\t\t\t\tcursor:pointer;\n\t\t\t\tbackground-color:#FFF;\n\t\t\t\tcolor:#333;\n\t\t\t\tpadding:10px;\n\t\t\t\tmargin-top:10px;\n\t\t\t\t.border-radius(7px)\n\t\t\t}\n\t\t}\n\t}\n\n}\n.tl-message {\n\t\n}","/* TL.TimeNav\n================================================== */\n\n.tl-timenav {\n\t//height:200px;\n\twidth:100%;\n\tbackground-color:@ui-background-color;\n\tposition:relative;\n\toverflow:hidden;\n\t//border-top: 2px solid @ui-background-color;\n\tborder-top: 1px solid darken(@ui-background-color,5);\n\t//border-top: 1px solid #e3e3e3;\n\t//box-shadow: inset 10px 10px 5px 0px rgba(0,0,0,0.75);\n\t//.box-shadow(inset -7px 0px 7px rgba(0,0,0,.30));\n\n\t.tl-timenav-line {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 50%;\n\t\twidth: 1px;\n\t\theight: 100%;\n\t\tbackground-color: darken(@ui-background-color, 10);//@color-theme;//darken(@ui-background-color, 10);\n\t\tz-index: 2;\n\t\tdisplay:none;\n\t\t//box-shadow: 1px 1px 7px rgba(0,0,0,0.3);\n\t\t&:before, &:after {\n\t\t\tfont-family: 'tl-icons';\n\t\t\tspeak: none;\n\t\t\tfont-style: normal;\n\t\t\tfont-weight: normal;\n\t\t\tfont-variant: normal;\n\t\t\ttext-transform: none;\n\t\t\tline-height: 1;\n\t\t\t\n\t\t\t/* Better Font Rendering =========== */\n\t\t\t-webkit-font-smoothing: antialiased;\n\t\t\t-moz-osx-font-smoothing: grayscale;\n\t\t\t\n\t\t\tcolor:@color-theme;\n\t\t\tfont-size:32px;\n\t\t\tline-height:32px;\n\t\t\tposition: absolute;\n\t\t\tleft:-14px;\n\t\t}\n\t\t&:before {\n\t\t\t//content: \"\\e647\";\n\t\t\ttop: -10px;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: \"\\e648\";\n\t\t\tbottom:24px;\n\t\t}\n\t}\n\t.tl-timenav-slider {\n\t\tposition:absolute;\n\t\theight:100%;\n\t\twidth:100%;\n\t\ttop:0;\n\t\t\n\t\t&.tl-timenav-slider-animate {\n\t\t\t\n\t\t\t.property-animation(all, @animation-duration, @animation-ease);\n\t\t\t.animation-timing-cubic-bezier();\n\t\t}\n\t\t.tl-timenav-slider-background {\n\t\t\tposition:absolute;\n\t\t\theight:100%;\n\t\t\twidth:100%;\n\t\t\tcursor:move;\n\t\t\tz-index:6;\n\t\t}\n\t\t.tl-timenav-container-mask {\n\t\t\tposition:absolute;\n\t\t\theight:100%;\n\t\t\ttop:0;\n\t\t\t.tl-timenav-container {\n\t\t\t\tposition:absolute;\n\t\t\t\theight:100%;\n\n\t\t\t\n\t\t\t\t.tl-timenav-item-container {\n\t\t\t\t\t//margin-top:5px;\n\t\t\t\t\tposition:absolute;\n\t\t\t\t\theight:100%;\n\t\t\t\t}\n\t\t\t\n\t\t\t}\n\t\t\n\t\t}\n\t}\n\t\n\t\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-timenav {\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-timenav {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-timenav {\n\n\t}\n}\n","/* TL.TimeMarker\n================================================== */\n\n.tl-timemarker {\n\theight:100%;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\tcursor:pointer;\n\t\n\t/* Animate Left Width and Top\n\t================================================== */\n\t.property-animation(left, @animation-duration, @animation-ease);\n\t.property-animation(top, @animation-duration-fast, @animation-ease);\n\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t.property-animation(width, @animation-duration, @animation-ease);\n\t.animation-timing-cubic-bezier();\n\t\n\n\t&.tl-timemarker-fast {\n\t\t.property-animation(top, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(width, @animation-duration-fast, @animation-ease);\n\t\t.animation-timing-cubic-bezier();\n\n\t\t.tl-timemarker-content-container {\n\t\t\t.property-animation(width, @animation-duration-fast, @animation-ease);\n\t\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t}\n\t\t.tl-timemarker-timespan {\n\t\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t\t.property-animation(width, @animation-duration-fast, @animation-ease);\n\t\t}\n\t}\n\t/* Timespan\n\t================================================== */\n\t.tl-timemarker-timespan {\n\t\tpointer-events: none;\n\t\tposition:absolute;\n\t\tmargin:0;\n\t\twidth:100%;\n\t\theight:100%;\n\t\t//overflow:hidden;\n\t\tbackground-color: fadeout(@marker-color, 85%);\n\t\tborder-top-right-radius:@time-marker-border-radius;\n\t\tborder-top-left-radius:@time-marker-border-radius;\n\t\t\n\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(width, @animation-duration, @animation-ease);\n\t\t.animation-timing-cubic-bezier();\n\t\t//box-shadow: 1px 1px 1px @color-background;\n\t\t//box-sizing: border-box;\n\t\t.tl-timemarker-timespan-content {\n\t\t\tdisplay:none;\n\t\t\tposition:absolute;\n\t\t\twidth:100%;\n\t\t\tbackground-color: @marker-color;\n\t\t\tborder-top-left-radius:@time-marker-border-radius;\n\t\t\tborder-top-right-radius:@time-marker-border-radius;\n\t\t\theight:100px;\n\t\t\tbox-sizing: border-box;\n\t\t\t\n\t\t\t\n\t\t}\n\t\t\n\t}\n\t\n\t/* Lines\n\t================================================== */\n\t.tl-timemarker-line-right {\n\t\tdisplay:none;\n\t\tright:0px;\n\t\t\n\t}\n\t\n\t.tl-timemarker-line-left {\n\t\twidth:1px;\n\t\tleft:0px;\n\t}\n\t\n\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\tmargin-top:@marker-dot-offset;\n\t\t//margin-bottom:@time-marker-border-radius;\n\t\t//margin-top:10px; \n\t\t//overflow:hidden;\n\t\t//border-top-right-radius:@time-marker-border-radius;\n\t\t//border-top-left-radius:@time-marker-border-radius;\n\t\t//margin-top:10%;\n\t\t.border-box();\n\t\tborder-left: 1px solid @marker-outline-color;\n\t\t\n\t\tz-index:5;\n\t\t//.border-top-radius(10px);\n\t\tcontent:\" \";\n\t\tposition:absolute;\n\t\t//bottom:0;\n\t\theight:100%;\n\t\t.disable-selection();\n\t\t\n\t\tbox-shadow: 1px 1px 1px @color-background;\n\t\t\n\t\t&:after {\n\t\t\t\n\t\t\tdisplay:block;\n\t\t\tcontent:\" \";\n\t\t\tposition:absolute;\n\t\t\tleft:-4px;\n\t\t\tbottom:0px;\n\t\t\theight:6px;\n\t\t\twidth:6px;\n\t\t\tbackground-color:@marker-dot-color;\n\t\t\tz-index:8;\n\t\t\t.border-radius(50%);\n\t\t}\n\t}\n\t\n\t/* Content\n\t================================================== */\n\t.tl-timemarker-content-container {\n\t\tposition:absolute;\n\t\tbackground-color: @marker-color;\n\t\tborder:0;\n\t\tborder-top-left-radius:@time-marker-border-radius;\n\t\tborder-top-right-radius:@time-marker-border-radius;\n\t\tborder-bottom-right-radius:@time-marker-border-radius;\n\t\theight:100%;\n\t\twidth:100px;\n\t\toverflow:hidden;\n\t\tz-index:6;\n\t\t&:hover {\n\t\t\tz-index: 9;\n\t\t}\n\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(width, @animation-duration, @animation-ease);\n\t\t.animation-timing-cubic-bezier();\n\t\tbox-sizing: border-box;\n\t\tborder: 1px solid @marker-outline-color;\n\t\tbox-shadow: 1px 1px 1px @color-background;\n\t\t\t\t\n\t\t.tl-timemarker-content {\n\t\t\tposition:relative;\n\t\t\toverflow:hidden;\n\t\t\theight:100%;\n\t\t\tz-index:8;\n\t\t\tpadding:5px;\n\t\t\t.border-box();\n\t\t\t\n\t\t\t.tl-timemarker-text {\n\t\t\t\toverflow:hidden;\n\t\t\t\tposition: relative;\n\t\t\t\t\n\t\t\t\th2.tl-headline, h2.tl-headline p {\n\t\t\t\t\tdisplay: -webkit-box;\n\t\t\t\t\t\n\t\t\t\t\tline-clamp: 2;\n\t\t\t\t\t-webkit-line-clamp: 2;\n\t\t\t\t\tbox-orient: vertical;\n\t\t\t\t\t-webkit-box-orient: vertical;\n\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\t\n\t\t\t\t\tfont-size:12px;\n\t\t\t\t\tline-height:12px;\n\t\t\t\t\theight:100%;\n\t\t\t\t\toverflow:hidden;\n\t\t\t\t\tfont-weight:normal;\n\t\t\t\t\tmargin:0;\n\t\t\t\t\tcolor:@marker-text-color;\n\t\t\t\t\tposition: relative;\n\t\t\t\t\t&.tl-headline-fadeout {\n\t\t\t\t\t\t&:after {\n\t\t\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t\t\ttext-align: right;\n\t\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t\tbottom: 0;\n\t\t\t\t\t\t\tright: 0;\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\theight: 50%;\n\t\t\t\t\t\t\t.marker-text-fade(@marker-color,50%);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t.tl-timemarker-media-container {\n\t\t\t\tfloat:left;\n\t\t\t\tmax-width:@marker-icon-size;\n\t\t\t\tmax-height:@marker-icon-size;\n\t\t\t\toverflow:hidden;\n\t\t\t\tmargin-right:5px;\n\t\t\t\theight:100%;\n\t\t\t\t.border-box();\n\t\t\t\t\n\t\t\t\t.tl-timemarker-media {\n\t\t\t\t\tmax-width:@marker-icon-size;\n\t\t\t\t\tmax-height:100%;\n\t\t\t\t\topacity:0.25;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t\t\t\tdisplay:block;\n\t\t\t\t\tfont-size:@marker-icon-size;\n\t\t\t\t\tcolor:@marker-text-color;\n\t\t\t\t\tmargin-top:0px;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.tl-icon-wikipedia {\n\t\t\t\t\tfont-size:16px;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t&.tl-timemarker-content-small {\n\t\t\t\t.tl-timemarker-text {\n\t\t\t\t\th2.tl-headline {\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\twhite-space:nowrap; \n\t\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t.tl-timemarker-media-container {\n\t\t\t\t\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t\t\t\t\tfont-size:@marker-icon-size/2;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\n\t\t\n\t}\n\n\t/* Hover | Focus State\n\t================================================== */\n\t&:hover, &:focus {\n\t\t\n\t\t.tl-timemarker-timespan {\n\t\t\tbackground-color: fadeout(@marker-text-color, 75%);\n\n\t\t\t.tl-timemarker-timespan-content {\n\t\t\t\tbackground-color: @marker-text-color;\n\t\t\t}\n\t\t\t\n\t\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\tborder-color: darken(@marker-color,25);\n\t\t\t\t&:after {\n\t\t\t\t\tbackground-color:@marker-dot-hover-color;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\n\t\t\t\n\t\t}\n\t\t\n\t\t.tl-timemarker-content-container {\n background-color: darken(@marker-color,45);\n\t\t\tborder-color: darken(@marker-color,25);\n\t\t\t.property-animation(height, @animation-duration-fast/2, @animation-ease);\n\t\t\t.property-animation(width, @animation-duration-fast/2, @animation-ease);\n\t\t\t&.tl-timemarker-content-container-small {\n\t\t\t\t//height:56px !important;\n\t\t\t\twidth:200px;\n\t\t\t\t//min-width:100px;\n\t\t\t\t.tl-timemarker-content {\n\t\t\t\t\t.tl-timemarker-text {\n\t\t\t\t\t\th2.tl-headline {\n\t\t\t\t\t\t\t//line-clamp:3 !important;\n\t\t\t\t\t\t\t//-webkit-line-clamp:3 !important;\n\t\t\t\t\t\t\t//white-space: normal !important;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t.tl-timemarker-content {\n\t\t\t\t\n\t\t\t\t.tl-timemarker-text {\n\t\t\t\t\th2.tl-headline {\n\t\t\t\t\t\tcolor:@marker-selected-text-color;\n\t\t\t\t\t\t&.tl-headline-fadeout {\n\t\t\t\t\t\t\t&:after {\n .marker-text-fade(darken(@marker-color,45),80%);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.tl-timemarker-media-container {\n\t\t\t\t\t.tl-timemarker-media {\n\t\t\t\t\t\topacity:1;\n\t\t\t\t\t}\n\t\t\t\t\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t\t\t\t\tcolor:@marker-selected-text-color;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t}\n\t\n\t/* Hover | Focus Active State\n\t================================================== */\n\t&:hover, &:focus {\n\t\t&.tl-timemarker-active {\n\t\t\t.tl-timemarker-content-container {\n\t\t\t\t.tl-timemarker-content {\n\t\t\t\t\t.tl-timemarker-text {\n\t\t\t\t\t\th2.tl-headline {\n\t\t\t\t\t\t\t&.tl-headline-fadeout {\n\t\t\t\t\t\t\t\t&:after {\n\t\t\t\t\t\t\t\t\t//.marker-text-fade(@color-theme,80%);\n\t\t\t\t\t\t\t\t\t.marker-text-fade(@color-background,80%);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\t//border-color:@color-theme;\n\t\t\t\tborder-color:@color-dark;\n\t\t\t\n\t\t\t\t&:after {\n\t\t\t\t\t//z-index:6;\n\t\t\t\t\t//background-color:@color-theme;\n\t\t\t\t\tbackground-color:@color-dark;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n /* Focus-visible State\n ================================================== */\n &:focus-visible {\n outline: none;\n }\n\t\n\t/* Active Markers\n\t================================================== */\n\t&.tl-timemarker-active {\n\t\t\n\t\t.tl-timemarker-timespan {\n\t\t\t//background-color: fadeout(@color-theme, 85%);\n\t\t\t//background-color: fadeout(@color-foreground, 85%);\n\t\t\tbackground-color: fadeout(@color-background,50%);\n\t\t\tz-index: 8;\n\t\t\t.tl-timemarker-timespan-content {\n\t\t\t\t//background-color: @color-theme;\n\t\t\t\tbackground-color: @color-foreground;\n\t\t\t}\n\t\t}\n\t\t\n\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t//border-color:@color-theme;\n\t\t\t//border-color:@color-foreground;\n\t\t\tborder-color:fadeout(@color-foreground, 50%);\n\t\t\tborder-width: 1px;\n\t\t\tz-index:8;\n\t\t\tbox-shadow: 0px 1px 3px fadeout(@marker-dot-color, 50%);\n\t\t\t&:after {\n\t\t\t\t\n\t\t\t\t//background-color:@color-theme;\n\t\t\t\tbackground-color:@color-foreground;\n\t\t\t}\n\t\t}\n\t\t\n\t\t.tl-timemarker-content-container {\n\t\t\t//background-color:@color-theme;\n\t\t\tbackground-color:@color-background;\n\t\t\t//color:@color-background;\n\t\t\tcolor:@color-foreground;\n\t\t\tz-index:9;\n\t\t\t//border: none;\n\t\t\tborder-color:fadeout(@color-foreground, 50%);\n\t\t\t\n\t\t\t//box-shadow:none;\n\t\t\tbox-shadow: 1px 1px 3px fadeout(@marker-dot-color, 50%);\n\t\t\t.tl-timemarker-content {\n\t\t\t\t.tl-timemarker-text {\n\t\t\t\t\th2.tl-headline {\n\t\t\t\t\t\t//color:@marker-selected-text-color;\n\t\t\t\t\t\tcolor:@color-foreground; \n\t\t\t\t\t\t&.tl-headline-fadeout {\n\t\t\t\t\t\t\t&:after {\n\t\t\t\t\t\t\t\t//.marker-text-fade(@color-theme,80%);\n\t\t\t\t\t\t\t\t.marker-text-fade(@color-background,80%);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.tl-timemarker-media-container {\n\t\t\t\t\t.tl-timemarker-media {\n\t\t\t\t\t\topacity:1;\n\t\t\t\t\t}\n\t\t\t\t\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t\t\t\t\t//color:lighten(@color-theme,33);\n\t\t\t\t\t\tcolor:@color-foreground;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\t/* Markers with End Dates\n\t================================================== */\n\t&.tl-timemarker-with-end {\n\t\t\n\t\t.tl-timemarker-timespan {\n\t\t\t.tl-timemarker-timespan-content {\n\t\t\t\tdisplay:block;\n\t\t\t}\n\t\t\t\n\t\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\tz-index:5;\n\t\t\t\t&:after {\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t&:after {\n\t\t\t\tdisplay:block;\n\t\t\t\tcontent:\" \";\n\t\t\t\tposition:absolute;\n\t\t\t\tleft:0px;\n\t\t\t\tbottom:-@marker-dot-offset;\n\t\t\t\theight:6px;\n\t\t\t\twidth:100%;\n\t\t\t\tbackground-color: fadeout(darken(@ui-background-color, 50), 85%);\n\t\t\t\tz-index:6;\n\t\t\t\t.border-radius(7px);\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\t\t.tl-timemarker-content-container {\n\t\t\t\n\t\t\t&.tl-timemarker-content-container-long {\n\t\t\t\tbox-shadow: none;\n\t\t\t}\n\t\t\t.tl-timemarker-content {\n\t\t\t\t\n\t\t\t}\n\t\t}\n\t\t\n\t\t.tl-timemarker-line-right {\n\t\t\tdisplay:block;\n\t\t}\n\t\t.tl-timemarker-line-left {\n\t\t\tbox-shadow: none;\n\t\t}\n\t\t\n\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\n\t\t}\n\t}\n\t\n\t/* Markers with End Dates and Hover\n\t================================================== */\n\t&.tl-timemarker-with-end {\n\t\t&:hover {\n\t\t\t\n\t\t\t.tl-timemarker-timespan {\n\t\t\t\t&:after {\n\t\t\t\t\tbackground-color: fadeout(darken(@ui-background-color,100),65%);\n\t\t\t\t}\n\t\t\t}\n\t\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\t&:after {\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t}\n\t}\n\t\n\t/* Markers with End Dates and Active\n\t================================================== */\n\t&.tl-timemarker-with-end {\n\t\t&.tl-timemarker-active {\n\t\t\t.tl-timemarker-timespan {\n\t\t\t\t&:after {\n\t\t\t\t\t//background-color: fadeout(@color-theme,50%);\n\t\t\t\t\tbackground-color: fadeout(@color-foreground,50%);\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t.tl-timemarker-line-left, .tl-timemarker-line-right {\n\t\t\t\tborder-width: 1px;\n\t\t\t\t&:after {\n\t\t\t\t\t//background-color:@color-theme !important;\n\t\t\t\t\tbackground-color:@color-foreground !important;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.tl-timemarker-line-left {\n\t\t\t\tbox-shadow: none;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t/* Markers with End Dates and Active and Hover\n\t================================================== */\n\t&.tl-timemarker-with-end {\n\t\t&.tl-timemarker-active {\n\t\t\t&:hover {\n\t\t\t\t.tl-timemarker-timespan {\n\t\t\t\t\t&:after {\n\t\t\t\t\t\t//background-color: fadeout(@color-theme,50%);\n\t\t\t\t\t\tbackground-color: fadeout(@color-foreground,50%);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-timemarker {\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-timemarker {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-timemarker {\n\n\t}\n}\n","/* TL.TimeMarker\n================================================== */\n\n.tl-timeera {\n\theight:100%;\n\theight:40px;\n\tposition:absolute;\n\tbottom:0;\n\tleft:0;\n\tpointer-events: none;\n\tz-index:3;\n\t/* Animate Left Width and Top\n\t================================================== */\n\t.property-animation(left, @animation-duration, @animation-ease);\n\t.property-animation(top, @animation-duration-fast, @animation-ease);\n\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t.property-animation(width, @animation-duration, @animation-ease);\n\t.animation-timing-cubic-bezier();\n\t\n\n\t&.tl-timeera-fast {\n\t\t.property-animation(top, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(width, @animation-duration-fast, @animation-ease);\n\t\t.animation-timing-cubic-bezier();\n\t}\n\t/* Timespan\n\t================================================== */\n\n\t.tl-timeera-background {\n\t\tposition:absolute;\n\t\tbackground-color: @era-color-1;\n\t\twidth:100%;\n\t\theight:100%;\n\t\topacity:1;\n\t}\n\n\t&.tl-timeera-color0 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-0;\n\t\t}\n\t}\n\t&.tl-timeera-color1 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-1;\n\t\t}\n\t}\n\t&.tl-timeera-color2 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-2;\n\t\t}\n\t}\n\t&.tl-timeera-color3 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-3;\n\t\t}\n\t}\n\t&.tl-timeera-color4 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-4;\n\t\t}\n\t}\n\t&.tl-timeera-color5 {\n\t\t.tl-timeera-background {\n\t\t\tbackground-color: @era-color-5;\n\t\t}\n\t}\n\t/* Content\n\t================================================== */\n\t.tl-timeera-content-container {\n\t\tposition:absolute;\n\t\t// background-color: @era-color-1;\n\t\tborder:0;\n\t\tborder-top-left-radius:@time-marker-border-radius;\n\t\tborder-top-right-radius:@time-marker-border-radius;\n\t\tborder-bottom-right-radius:@time-marker-border-radius;\n\t\theight:100%;\n\t\twidth:100px;\n\t\toverflow:hidden;\n\t\t// z-index:6;\n\n\t\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t\t.property-animation(width, @animation-duration, @animation-ease);\n\t\t.animation-timing-cubic-bezier();\n\t\tbox-sizing: border-box;\n\t\tborder: 1px solid @marker-outline-color;\n\t\t// box-shadow: 1px 1px 1px @color-background;\n\t\t\t\t\n\t\t.tl-timeera-content {\n\t\t\tposition:relative;\n\t\t\toverflow:hidden;\n\t\t\theight:100%;\n\t\t\t// z-index:8;\n\t\t\tpadding:5px;\n\t\t\t.border-box();\n\t\t\t\n\t\t\t.tl-timeera-text {\n\t\t\t\toverflow:hidden;\n\t\t\t\tposition: relative;\n\t\t\t\t\n\t\t\t\theight:100%;\n\t\t\t\t\n\t\t\t\th2.tl-headline {\n\t\t\t\t\tbottom:0px;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tdisplay: -webkit-box;\n\t\t\t\t\t\n\t\t\t\t\tline-clamp: 4;\n\t\t\t\t\t-webkit-line-clamp: 4;\n\t\t\t\t\tbox-orient: vertical;\n\t\t\t\t\t-webkit-box-orient: vertical;\n\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\t\n\t\t\t\t\tfont-size:10px;\n\t\t\t\t\tline-height:10px;\n\t\t\t\t\t// height:100%;\n\t\t\t\t\toverflow:hidden;\n\t\t\t\t\tfont-weight:normal;\n\t\t\t\t\tmargin:0;\n\t\t\t\t\tcolor:@color-background;\n\t\t\t\t\tmargin-left:10px;\n\t\t\t\t\t\n\t\t\t\t\t&.tl-headline-fadeout {\n\t\t\t\t\t\t&:after {\n\t\t\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t\t\ttext-align: right;\n\t\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t\tbottom: 0;\n\t\t\t\t\t\t\tright: 0;\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\theight: 50%;\n\t\t\t\t\t\t\t.marker-text-fade(@marker-color,50%);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t}\n\t\t\n\n\t\t\n\t}\n\t\n\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-timeera {\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-timeera {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-timeera {\n\n\t}\n}\n","/* TL.TimeMarker\n================================================== */\n\n.tl-timegroup {\n\t//height:100%;\n\twidth:100%;\n\tposition:absolute;\n\ttop:0;\n\tleft:0;\n\t\n\tbackground-color:@ui-background-color;\n\t\n\tdisplay: -ms-flexbox;\n\tdisplay: -webkit-flex;\n\tdisplay: flex;\n\talign-items: center;\n\t-ms-flex-align: center;\n\t-webkit-align-items: center;\n\t-webkit-box-align: center;\n\t\n\n\t\n\t.tl-timegroup-message {\n\t\t//z-index:6;\n\t\tcolor: @timegroup-message-color;\n\t\ttext-shadow: @color-background 0 2px 2px;\n\t\tmargin-left:80px;\n\t\t//background-color:@ui-background-color;\n\t\t\n\t}\n\t\n\t&.tl-timegroup-alternate {\n\t\tbackground-color:lighten(@ui-background-color,3);\n\t\t.tl-timegroup-message {\n\t\t\t//background-color:lighten(@ui-background-color,3);\n\t\t}\n\t}\n\t&.tl-timegroup-hidden {\n\t\tdisplay:none;\n\t}\n\t\n\t/* Animate Left Width and Top\n\t================================================== */\n\t.property-animation(left, @animation-duration, @animation-ease);\n\t.property-animation(top, @animation-duration-fast, @animation-ease);\n\t.property-animation(height, @animation-duration-fast, @animation-ease);\n\t.property-animation(width, @animation-duration, @animation-ease);\n\t.animation-timing-cubic-bezier();\n\t\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-timegroup {\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-timegroup {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-timegroup {\n\n\t}\n}\n","/* TL.TimeAxis\n================================================== */\n.tl-timeaxis-background {\n\theight:@axis-height;\n\twidth:100%;\n\tposition:absolute;\n\tbottom:0;\n\tleft:0;\n\tbackground-color:@color-background;\n\tborder-top: 1px solid darken(@ui-background-color,5);\n\tz-index:2;\n}\n.tl-timeaxis {\n\theight:@axis-height;\n\twidth:100%;\n\tposition:absolute;\n\tbottom:0;\n\tleft:0;\n\tz-index:3;\n\n\t.tl-timeaxis-content-container {\n\t\tposition:relative;\n\t\tbottom:0;\n\t\theight:@axis-height;\n\t\t.tl-timeaxis-major, .tl-timeaxis-minor {\n\t\t\topacity:0;\n\t\t\tposition:absolute;\n\n\t\t\t.tl-timeaxis-tick {\n\t\t\t\tposition:absolute;\n\t\t\t\tdisplay:block;\n\t\t\t\ttop:0;\n\t\t\t\tleft:0;\n\t\t\t\ttext-align: center;\n\t\t\t\tfont-weight:normal;\n\t\t\t\t//.property-animation(opacity, @animation-duration, @animation-ease);\n\t\t\t\t//.animation-timing-cubic-bezier();\n\t\t\t\t.tl-timeaxis-tick-text {\n\t\t\t\t\tdisplay:inline-block;\n\t\t\t\t\t//width:100%;\n\t\t\t\t\twhite-space: nowrap;\n\n\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\toverflow:hidden;\n\t\t\t\t}\n\t\t\t\t&:before {\n\t\t\t\t\tcontent: \"|\";\n\t\t\t\t\tdisplay:block;\n\t\t\t\t\tcolor:@color-background;\n\t\t\t\t\twidth:1px;\n\t\t\t\t\toverflow:hidden;\n\t\t\t\t\tborder-left: 1px solid @minor-ticks-line-color;\n\t\t\t\t\ttext-align:center;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.tl-timeaxis-animate {\n\t\t\t\t.tl-timeaxis-tick {\n\t\t\t\t\t.property-animation(all, @animation-duration, @animation-ease);\n\t\t\t\t\t.animation-timing-cubic-bezier();\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.tl-timeaxis-animate-opacity {\n\t\t\t\t.tl-timeaxis-tick {\n\t\t\t\t\t.property-animation(opacity, @animation-duration, @animation-ease);\n\t\t\t\t\t.animation-timing-cubic-bezier();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.tl-timeaxis-major {\n\t\t\tz-index:1;\n\t\t\tbackground-color:@color-background;\n\t\t\t.tl-timeaxis-tick {\n\t\t\t\tfont-size:@major-ticks-font-size;\n\t\t\t\tline-height:@major-ticks-font-size + @tick-padding;\n\t\t\t\tcolor:@major-ticks-color;\n\t\t\t\twidth:@major-ticks-width;\n\t\t\t\tmargin-left:-(@major-ticks-width/2);\n\n\t\t\t\t&:before {\n\t\t\t\t\tborder-color:@major-ticks-line-color;\n\t\t\t\t\t//border-left: 2px solid @major-ticks-line-color;\n\t\t\t\t\tfont-size:@major-ticks-font-size + (@tick-padding*3);\n\t\t\t\t\tline-height:@major-ticks-font-size + (@tick-padding*3);\n\t\t\t\t\tmargin-bottom:@tick-padding;\n\t\t\t\t\tmargin-left:(@major-ticks-width/2);\n\t\t\t\t}\n\n\t\t\t\t.tl-timeaxis-tick-text {\n\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.tl-timeaxis-minor {\n\n\t\t\t.tl-timeaxis-tick {\n\t\t\t\tfont-size:@minor-ticks-font-size;\n\t\t\t\tline-height:@minor-ticks-font-size + @tick-padding;\n\t\t\t\tcolor:@minor-ticks-color;\n\t\t\t\twidth:@minor-ticks-width;\n\t\t\t\tmargin-left:-(@minor-ticks-width/2);\n\t\t\t\t.tl-timeaxis-tick-text {\n\t\t\t\t\topacity:0;\n\t\t\t\t\twhite-space: normal;\n\t\t\t\t\tpadding-left:2px;\n\t\t\t\t\tpadding-right:2px;\n\t\t\t\t\tspan {\n\t\t\t\t\t\t//display:none;\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tfont-size:9px;\n\t\t\t\t\t\tline-height:9px;\n\t\t\t\t\t\tmargin-top:-2px;\n\t\t\t\t\t\tcolor:lighten(@minor-ticks-color,15);\n\t\t\t\t\t\t&.tl-timeaxis-timesuffix {\n\t\t\t\t\t\t\t//display:none;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t&:before {\n\t\t\t\t\tfont-size:@minor-ticks-font-size - @tick-padding;\n\t\t\t\t\tline-height:@minor-ticks-font-size - @tick-padding;\n\t\t\t\t\tmargin-left:(@minor-ticks-width/2);\n\t\t\t\t}\n\n\t\t\t\t&.tl-timeaxis-tick-hidden {\n\t\t\t\t\t.tl-timeaxis-tick-text {\n\t\t\t\t\t\topacity:0 !important;\n\t\t\t\t\t}\n\t\t\t\t\t&:before {\n\t\t\t\t\t\topacity:0.33;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\n\t}\n\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-timeaxis {\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-timeaxis {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-timeaxis {\n\n\t}\n}\n",".tlanimate {\n\t-webkit-transform: translateZ(0);\n\t-webkit-perspective: 1000;\n\t-webkit-backface-visibility: hidden;\n}\n.tl-animate {\n\t.property-animation(all, @animation-duration, @animation-ease);\n\t.animation-timing-cubic-bezier();\n}\n\n.tl-animate-opacity {\n\t.property-animation(opacity, @animation-duration, @animation-ease);\n\t.animation-timing-cubic-bezier();\n}","/* SLIDE\n================================================== */\n.tl-slide {\n\tposition:absolute;\n\twidth:100%;\n\theight:100%;\n\tpadding:0;\n\tmargin:0;\n\toverflow-x:hidden;\n\toverflow-y:auto;\n\n\t.tl-slide-background {\n\t\tposition:absolute;\n\t\tleft:0;\n\t\ttop:0;\n\t\twidth:100%;\n\t\theight:100%;\n\t\tz-index:-1;\n\t\toverflow:hidden;\n\t\tdisplay:none;\n\t\t.opacity(50);\n\t\tbackground: no-repeat center center;\n\t\t-webkit-background-size: cover;\n\t\t -moz-background-size: cover;\n\t\t -o-background-size: cover;\n\t\t\t background-size: cover;\n\t}\n\t.tl-slide-scrollable-container {\n\t\tdisplay:table;\n\t\ttable-layout: fixed;\n\t\theight:100%;\n\t\tz-index:1;\n\t}\n\t.tl-slide-content-container {\n\t\tdisplay:table-cell;\n\t\tvertical-align:middle;\n\t\tposition:relative;\n\t\twidth:100%;\n\t\theight:100%;\n\n\t\tz-index:3;\n .tl-slide-content {\n display:table;\n vertical-align:middle;\n direction:rtl; // Text content needs to be read before the media\n padding-left:100px;\n padding-right:100px;\n position:relative;\n max-width:100%;\n user-select: text;\n -webkit-box-sizing: content-box;\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n \n .tl-media {\n direction:ltr;\n position:relative;\n width:100%;\n min-width:50%;\n float: left;\n margin-top:auto;\n margin-bottom:auto;\n img, embed, object, video, iframe {\n\n }\n }\n .tl-text {\n direction:ltr;\n width:50%;\n max-width:50%;\n min-width:120px;\n padding: 0 20px 0 20px;\n display:table-cell;\n vertical-align:middle;\n text-align: left;\n }\n }\n\t}\n\n\t&.tl-slide-titleslide {\n\t\t//background-color:#333;\n\t}\n}\n\n/* Only Media (no text)\n================================================== */\n.tl-slide-media-only {\n\t.tl-slide-content-container {\n\t\t.tl-slide-content {\n\t\t\t//width:100%;\n\t\t\ttext-align:center;\n\t\t\t.tl-media {\n\t\t\t\t//display:table-cell;\n\t\t\t\t//vertical-align:middle;\n\t\t\t\ttext-align:center;\n\t\t\t\tposition:relative;\n\t\t\t\twidth:100%;\n\t\t\t\tmin-width:50%;\n\t\t\t\tmax-width:100%;\n\t\t\t\t//height:100%;\n\t\t\t\tfloat: none;\n\t\t\t\tmargin-top:auto;\n\t\t\t\tmargin-bottom:auto;\n\t\t\t\t//margin-right:auto;\n\t\t\t\timg, embed, object, video, iframe {\n\t\t\t\t\t//width:100%;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.tl-text {\n\t\t\t\twidth:\t\t\t\t100%;\n\t\t\t\tmax-width:\t\t\t100%;\n\t\t\t\tdisplay:\t\t\tblock;\n\t\t\t\tmargin-left:\t\tauto;\n\t\t\t\tmargin-right:\t\tauto;\n\t\t\t\ttext-align: \t\tcenter;\n\t\t\t\th2 {\n\t\t\t\t\t//margin-top: \t20px;\n\t\t\t\t\t//margin-bottom: \t20px;\n\t\t\t\t}\n\t\t\t\t//float:left;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/* Only Text (no media)\n================================================== */\n.tl-slide-text-only {\n\t.tl-slide-content-container {\n\t\t.tl-slide-content {\n\t\t\t//width:100%;\n\t\t\ttext-align:center;\n\t\t\t.tl-text {\n\t\t\t\tmax-width:80%;\n\t\t\t\twidth:80%;\n\t\t\t\tdisplay:block;\n\t\t\t\tmargin-left:auto;\n\t\t\t\tmargin-right:auto;\n\t\t\t\t//float:left;\n\t\t\t}\n\t\t}\n\t}\n}\n/* Background\n================================================== */\n\n\n.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {\n\t.slide-text-shadow();\n\n\tp, h1, h2, h3, h4, h5, h6 {\n\t\t.slide-text-shadow();\n\t}\n\ta, b, i, blockquote, blockquote p {\n\t\ttext-shadow: 1px 1px 1px #000;\n\t\tcolor: lighten(@color-theme, 90%);\n\t}\n\ta:hover{\n\t\ttext-decoration: underline;\n\t\tcolor: @color-theme;\n\t}\n\t.tl-caption, .tl-credit {\n\t\t.slide-text-shadow();\n\t}\n\t.tl-media-twitter, .tl-media-blockquote {\n\t\tblockquote {\n\t\t\t.slide-text-shadow();\n\t\t\tp {\n\t\t\t\t.slide-text-shadow();\n\t\t\t}\n\t\t}\n\t}\n\t.vcard {\n\t\ta, .nickname {\n\t\t\t.slide-text-shadow();\n\t\t}\n\t}\n\n}\n\n\n\n/* Full Image Background\n================================================== */\n.tl-slide.tl-full-image-background {\n\tbackground: no-repeat center center;\n\t-webkit-background-size: cover;\n\t -moz-background-size: cover;\n\t -o-background-size: cover;\n\t\t background-size: cover;\n\t//filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale');\n\t//-ms-filter: \"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')\";\n\tbackground-position:center 25%;\n\ttext-shadow: 1px 1px 2px #000;\n\t.tl-slide-content-container {\n\t\t//.translucent-background(#000, 0.50);\n\t}\n\tp, h1, h2, h3, h4, h5, h6 {\n\t\ttext-shadow: 1px 1px 2px #000;\n\t}\n\t.tl-caption, .tl-credit {\n\t\ttext-shadow: 1px 1px 2px #000;\n\t}\n\n\t.tl-media-twitter, .tl-media-blockquote {\n\t\tblockquote {\n\t\t\ttext-shadow: 1px 1px 2px #000 !important;\n\t\t\tp {\n\t\t\t\ttext-shadow: 1px 1px 2px #000 !important;\n\t\t\t}\n\t\t}\n\t}\n\n}\n/* Color Background\n================================================== */\n.tl-slide.tl-full-color-background {\n\n}\n/* Text Background\n================================================== */\n.tl-slide.tl-text-background {\n\t.tl-text {\n\t\t.tl-text-content-container {\n\t\t\tpadding:20px;\n\t\t\t.background-color-opacity(0,0,0, 60);\n\t\t\t.border-radius(7px);\n\t\t\th2 {\n\t\t\t\tmargin-top:5px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\n\t.tl-slide {\n\t\tdisplay:block;\n\t\tpadding-top:10px;\n\t\t.tl-slide-content-container {\n\t\t\tdisplay:block;\n\t\t\tposition:static;\n\t\t\theight:100%;\n\t\t\tdisplay: -webkit-flex; /* Safari */\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\t-webkit-align-items: center; /* Safari 7.0+ */\n\t\t\t.tl-slide-content {\n\t\t\t\tdisplay:block;\n\n \t\t\tdisplay: -webkit-flex; /* Safari */\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction:column;\n\t\t\t\t-webkit-flex-direction:column; /* Safari */\n\t\t\t\tposition:static;\n\t\t\t\theight:auto;\n\t\t\t\tpadding-left:50px;\n\t\t\t\tpadding-right:50px;\n\t\t\t\t.tl-media {\n\t\t\t\t\twidth:100%;\n\t\t\t\t\theight:auto;\n\t\t\t\t\tfloat: none;\n\t\t\t\t\tdisplay:block;\n\t\t\t\t\t//margin-top:20px;\n\t\t\t\t\tpadding-top:20px;\n\t\t\t\t\t//padding-bottom:20px;\n\t\t\t\t\tborder-top: 1px solid @ui-background-color-darker;\n\t\t\t\t}\n\t\t\t\t.tl-text {\n\t\t\t\t\tdisplay:block;\n\t\t\t\t\theight:auto;\n\t\t\t\t\tvertical-align:initial;\n\t\t\t\t\tposition:static;\n\t\t\t\t\twidth:100%;\n\t\t\t\t\tmax-width:100%;\n\t\t\t\t\tmin-width:0;\n\t\t\t\t\tfloat:none;\n\t\t\t\t\tpadding: 0;\n\n\t\t\t\t\t.tl-text-content-container {\n\t\t\t\t\t\tpadding-left:10px;\n\t\t\t\t\t\tpadding-right:10px;\n\t\t\t\t\t\tpadding-bottom:10px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.tl-slide.tl-full-color-background, &.tl-full-image-background {\n\t\t\t.tl-slide-content-container {\n\t\t\t\t.tl-slide-content {\n\t\t\t\t\t.tl-media {\n\t\t\t\t\t\tborder-color: fadeout(@ui-background-color-darker,75);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.tl-slide-media-only {\n\t\t\t.tl-slide-content-container {\n\t\t\t\t.tl-slide-content {\n\t\t\t\t\tflex-direction:column;\n\t\t\t\t\t-webkit-flex-direction:column; /* Safari */\n\t\t\t\t\t.tl-media {\n\t\t\t\t\t\tborder-top: none;\n\t\t\t\t\t\tpadding-top:0px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\t}\n}\n\n\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-storyslider {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-slide {\n\t\t.tl-slide-content-container {\n\t\t\t.tl-slide-content {\n\t\t\t\t.tl-media {\n\t\t\t\t\timg, embed, object, video, iframe {\n\t\t\t\t\t\tmax-height:175px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n","/* SlideNav\n================================================== */\n\n/* NAVIGATION\n================================================== */\n.tl-slidenav-previous, .tl-slidenav-next {\n\tposition:absolute;\n\ttop: 45%;\n\tz-index:10;\n\tcursor:pointer;\n padding: 0;\n outline-offset:5px;\n background-color: transparent;\n border: none;\n text-align: inherit;\n text-transform: inherit;\n font-family: inherit;\n font-size: inherit;\n font-weight: inherit;\n\n .tl-slidenav-content-container {\n\t\twidth:100px;\n\t\tposition:absolute;\n\t}\n\t.tl-slidenav-title, .tl-slidenav-description {\n\t\t//width:100%;\n\t\t//word-break:break-all;\n\t\twidth:80px;\n\t\t-webkit-line-clamp: 2;\n\t\t\t line-clamp: 2;\n\t\ttext-overflow: ellipsis;\n\t //-ms-word-break: break-all;\n\t // word-break: break-all;\n\n\t /* Non standard for webkit */\n\t // word-break: break-word;\n\t /*\n\t -webkit-hyphens: auto;\n\t -moz-hyphens: auto;\n\t -ms-hyphens: auto;\n\t hyphens: auto;\n\t\t*/\n\t\ta {\n\t\t\t\n\t\t}\n\t\tsmall {\n\t\t\tdisplay:block;\n\t\t}\n\t}\n\t.tl-slidenav-title {\n\t\tmargin-top:10px;\n\t\t.opacity(@opacity-slide-nav-title);\n\t\tfont-size: @base-font-size-small;\n\t\tline-height: @base-font-size-small;\n\t\t//font-weight: bold;\n\t}\n\t.tl-slidenav-description {\n\t\tfont-size: @base-font-size-small;\n\t\tmargin-top:5px;\n\t\t.opacity(@opacity-slide-nav-desc);\n\t\tsmall {\n\t\t\tdisplay:none;\n\t\t}\n\t}\n\t\n}\n\n/* NAVIGATION COLOR\n================================================== */\n.tl-slidenav-previous, .tl-slidenav-next {\n\t.tl-slidenav-content-container {\n\t\t.tl-slidenav-icon, .tl-slidenav-title, .tl-slidenav-description {\n\t\t\ttext-shadow: 1px 1px 1px @color-background;\n\t\t\tcolor: @color-foreground;\n\t\t}\n\t}\n\t.tl-slidenav-content-container.tl-slidenav-inverted {\n\t\t.tl-slidenav-icon, .tl-slidenav-title, .tl-slidenav-description {\n\t\t\tcolor:@color-text-inverted;\n\t\t\ttext-shadow: 1px 1px 1px @color-foreground;\n\t\t}\n\t}\n}\n\n/* ICONS\n================================================== */\n.tl-slidenav-next, .tl-slidenav-previous {\n\t.tl-slidenav-icon {\n\t\tfont-family: 'tl-icons';\n\t\tspeak: none;\n\t\tfont-style: normal;\n\t\tfont-weight: normal;\n\t\tfont-variant: normal;\n\t\ttext-transform: none;\n\t\tline-height: 1;\n\t\t-webkit-font-smoothing: antialiased;\n\t\t-moz-osx-font-smoothing: grayscale;\n\t\tfont-size:32px;\n\t\tmargin-bottom: 5px;\n\t}\n}\n\n.tl-slidenav-next {\n\ttext-align: right;\n\tmargin-right:10px;\n right: 100px;\n\t.tl-slidenav-title, .tl-slidenav-description {\n\t\tmargin-left:20px;\n\t}\n\t.tl-slidenav-icon {\n\t\tmargin-left: 100 - 24px;\n\t}\n\t.tl-slidenav-icon:before {\n\t\tcontent: \"\\e64f\";\n\t}\n}\n.tl-slidenav-previous {\n\ttext-align: left;\n\tmargin-left:10px;\n\t.tl-slidenav-icon {\n\t\tmargin-left: 0px;\n\t}\n\t.tl-slidenav-icon:before {\n\t\tcontent: \"\\e650\";\n\t}\n}\n\n\n\n/* NAVIGATION HOVER\n================================================== */\n.tl-slidenav-previous, .tl-slidenav-next {\n &:hover, &:focus-visible {\n .tl-slidenav-title {\n .opacity(100);\n }\n .tl-slidenav-description {\n .opacity(@opacity-slide-nav-desc-hover);\n }\n }\n}\n.tl-slidenav-next {\n &:hover, &:focus-visible {\n .tl-slidenav-icon {\n margin-left: 100 - 20px;\n }\n }\n}\n.tl-slidenav-previous {\n &:hover, &:focus-visible {\n .tl-slidenav-icon {\n margin-left: -4px;\n }\n }\n}\n\n// Mobile, iPhone and skinny\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n\t.tl-slidenav-previous, .tl-slidenav-next {\n\t\t\n\t}\n} \n.tl-skinny {\n\t.tl-slidenav-next {\n\t right: 32px;\n\t\t.tl-slidenav-icon {\n\t\t\tmargin-left:32 - 24px;\n\t\t}\n\t}\n\t.tl-slidenav-previous, .tl-slidenav-next {\n\t\t.tl-slidenav-content-container {\n\t\t\twidth:32px;\n\t\t\theight:32px;\n\t\t}\n\t\t.tl-slidenav-title, .tl-slidenav-description {\n\t\t\tdisplay:none;\n\t\t}\n\t\t.tl-slidenav-icon {\n\t\t\t.opacity(33);\n\t\t}\n\t}\n\t.tl-slidenav-next {\n &:hover, &:focus-visible {\n .tl-slidenav-icon {\n margin-left:32 - 20px;\n .opacity(100);\n }\n }\n\t}\n\t.tl-slidenav-previous {\n &:hover, &:focus-visible {\n .tl-slidenav-icon {\n margin-left: -4px;\n .opacity(100);\n }\n }\n\t}\n\t\n}\n\n\n\n.tl-layout-landscape.tl-mobile {\n .tl-slidenav-next {\n &:hover {\n /**\n * On mobile the hover state stays on the button after the click\n * Show the default margin as before the click\n */\n .tl-slidenav-icon {\n margin-left: 100 - 24px;\n .opacity(100);\n }\n }\n\n &:active {\n .tl-slidenav-icon {\n margin-left: 100 - 20px;\n }\n }\n }\n .tl-slidenav-previous {\n &:hover {\n /**\n * On mobile the hover state stays on the button after the click\n * Show the default margin as before the click\n */\n .tl-slidenav-icon {\n margin-left: 0px;\n .opacity(100);\n }\n }\n\n &:active {\n .tl-slidenav-icon {\n margin-left: -4px;\n }\n }\n }\n}\n\n.tl-layout-portrait.tl-mobile {\n\t.tl-slidenav-next:hover {\n\t\t.tl-slidenav-icon {\n\t\t .opacity(33);\n\t\t}\n\t}\n\t.tl-slidenav-next:active {\n\t\t.tl-slidenav-icon {\n\t\t .opacity(100);\n\t\t}\n\t}\n\t.tl-slidenav-previous:hover {\n\t\t.tl-slidenav-icon {\n\t\t\t.opacity(33);\n\t\t}\n\t}\n\t.tl-slidenav-previous:active {\n\t\t.tl-slidenav-icon {\n\t\t .opacity(100);\n\n\t\t}\n\t}\n}\n\n.tl-mobile, .tl-skinny.tl-mobile, .tl-skinny.tl-layout-landscape.tl-mobile, .tl-skinny.tl-layout-portrait.tl-mobile {\n\t.tl-slidenav-previous, .tl-slidenav-next {\n\t\tdisplay:none;\n\t}\n}\n","/* StorySlider\n================================================== */\n\n/* SLIDER CONTAINERS\n================================================== */\n.tl-storyslider {\n\twidth:100%;\n\theight:100%;\n\toverflow:hidden;\n\t.user-select(none);\n\tposition:relative;\n\tbox-sizing:content-box;\n\t//.box-shadow(1px 1px 7px rgba(0,0,0,.30));\n\n\tz-index:8;\n\timg, embed, object, video, iframe {\n\t\tmax-width: 100%;\n\t\tposition:relative;\n\t}\n\t.tl-slider-background {\n\t\tposition:absolute;\n\t\ttop:0;\n\t\tleft:0;\n\t\twidth:100%;\n\t\theight:100%;\n\t\tz-index:1;\n\n\t}\n\t.tl-slider-touch-mask {\n\t\twidth:100%;\n\t\theight:100%;\n\t\tz-index:25;\n\n\t\ttop:0px;\n\t\tleft:0px;\n\t\tposition: absolute;\n\t}\n\t.tl-slider-container-mask {\n\t\ttext-align: center;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\t//overflow: scroll;\n\t\tposition: relative;\n\t\tz-index:5;\n\t\t.tl-slider-container {\n\t\t\tposition: absolute;\n\t\t\ttop: 0px;\n\t\t\tleft: 0px;\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t\ttext-align: center;\n\n\t\t\t.tl-slider-item-container {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tdisplay:table-cell;\n\t\t\t\tvertical-align:middle;\n\n\t\t\t}\n\t\t}\n\t}\n\n}\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-storyslider {\n\t\t.tl-slider-container-mask {\n\n\t\t\t.tl-slider-container {\n\t\t\t\t.tl-slider-item-container {\n\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\t.tl-storyslider {\n\n\t}\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-storyslider {\n\n\t}\n}\n","/* Requires Variables.less\n================================================== */\n.tl-media {\n\t//display:table-cell;\n\t//vertical-align:middle;\n\twidth:100%;\n\tmin-width:50%;\n\theight:100%;\n\tfloat: left;\n\tmargin-top:auto;\n\tmargin-bottom:auto;\n\tposition:relative;\n\t//margin-right:auto;\n\n\t.tl-media-content-container {\n\t\t&.tl-media-content-container-text {\n\t\t\tborder-right: 1px solid @ui-background-color-darker;\n\t\t\tpadding-right:20px;\n\t\t}\n\t\t.tl-media-content{\n\t\t\tposition: relative;\n\t\t\t.clearfix();\n\n\t\t\t.tl-media-loaderror {\n\t\t\t\tp {\n\t\t\t\t\tcolor:@ui-background-color;\n\t\t\t\t\tspan {\n\t\t\t\t\t\tcolor:@ui-background-color;\n\t\t\t\t\t}\n\t\t\t\t\ttext-align:center;\n\t\t\t\t\tem {\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t[class^=\"tl-icon-\"], [class*=\" tl-icon-\"] {\n\t\t\t\t\tfont-size:@base-font-size-xlarge;\n\t\t\t\t\tcolor:@ui-background-color;\n\t\t\t\t\ttext-align:center;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\timg, embed, object, video {\n\t\t\t\tmax-width: 100%;\n\t\t\t\tmax-height:100%;\n\t\t\t}\n\n\t\t}\n\t}\n}\n\n/* Media Only Slides\n================================================== */\n.tl-slide-media-only {\n\t.tl-media {\n\t\t.tl-media-content-container {\n\t\t\t&.tl-media-content-container-text {\n\t\t\t\tborder-right: none;\n\t\t\t\tpadding-right:0;\n\t\t\t}\n\t\t}\n\t}\n\n}\n\n/* Media Shodow\n================================================== */\n\n.tl-media-shadow {\n\tposition: relative;\n\tz-index: 1;\n\t//display:block;\n\t//background:@color-background;\n\t//.box-shadow(1px 1px 7px rgba(0,0,0,.50));\n\t.box-shadow(0 12px 10px -10px rgba(0,0,0,.60));\n\n}\n\n.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {\n\ta, .vcard a {\n\t\ttext-shadow: 1px 1px 1px #000;\n\t\tcolor: lighten(@color-theme, 90%);\n\t}\n\ta:hover{\n\t\ttext-decoration: underline;\n\t\tcolor: @color-theme;\n\t}\n}\n/* Credit\n================================================== */\n.tl-credit {\n\tcolor: @color-text-credit;\n\ttext-align: right;\n\tdisplay: block;\n\tmargin: 0 auto;\n\tmargin-top: 6px;\n\tfont-size: @base-font-size-small - 1;\n\tline-height: 13px;\n}\n\n/* Caption\n================================================== */\n.tl-caption {\n\ttext-align: left;\n\tmargin-right: auto;\n\tmargin-left: auto;\n\tmargin-top: 10px;\n\tcolor: #666666;\n\tfont-size: @base-font-size-small;\n\tline-height: 14px;\n\ttext-rendering: optimizeLegibility;\n\tword-wrap: break-word;\n}\n\n/* Full Image Background\n================================================== */\n.tl-full-image-background, .tl-full-color-background {\n\n\t.tl-media-shadow:before, .tl-media-shadow:after {\n\t\tbackground: none;\n\t\t.box-shadow(0 0px 0px #000);\n\t}\n\n}\n.tl-full-image-background {\n\n}\n\n.tl-full-color-background {\n\n}\n\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-media {\n\t\twidth:100%;\n\t\theight:auto;\n\t\tfloat: none;\n\t\tdisplay:block;\n\t\t.tl-media-content-container {\n\t\t\t&.tl-media-content-container-text {\n\t\t\t\tborder-right: 0;\n\t\t\t\tpadding-right:0;\n\t\t\t}\n\t\t\t.tl-media-content{\n\n\t\t\t}\n\n\t\t\t.tl-credit, .tl-caption {\n\t\t\t\tmargin-top: 2px;\n\t\t\t\tpadding-left:10px;\n\t\t\t\tpadding-right:10px;\n\t\t\t\tfont-size:8px;\n\t\t\t}\n\t\t\t.tl-credit {\n\t\t\t\tmargin-top: 0px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\t.tl-media {\n\t\twidth:100%;\n\t\theight:auto;\n\t\tfloat: none;\n\t\tdisplay:block;\n\n\t\t.tl-media-content-container {\n\t\t\t&.tl-media-content-container-text {\n\t\t\t\tborder-right: 0;\n\t\t\t\tpadding-right:0;\n\t\t\t}\n\t\t\t.tl-media-content{\n\n\t\t\t}\n\t\t\t.tl-credit {\n\n\t\t\t}\n\t\t\t.tl-caption {\n\n\t\t\t}\n\n\t\t}\n\t}\n}\n","/* Requires Variables.less\n================================================== */\n\n.tl-text {\n\twidth:50%;\n\tmax-width:50%;\n\tmin-width:120px;\n\tpadding: 0 20px 0 20px;\n\tdisplay:table-cell;\n\tvertical-align:middle;\n\ttext-align: left;\n\t//float:left;\n\ttext-shadow: none;\n\tcolor:@color-text;\n\tp {\n\t\tcolor:@color-text;\n\t}\n\t.tl-text-content-container {\n\t\t.tl-text-content{\n\n\t\t}\n .tl-text-headline-container {\n display: flex;\n flex-direction:column-reverse;\n -webkit-flex-direction:column-reverse; /* Safari */\n }\n\t}\n\th2.tl-headline-title, h2.tl-headline {\n\t\tmargin-top:0;\n\t}\n\t.tl-headline-date, h3.tl-headline-date {\n\t\tfont-family:@font-main;\n\t\tfont-size:@base-font-size;\n\t\tline-height: @base-font-size;\n\t\tfont-weight: normal;\n\t\tmargin:0 0 3px 0;\n\t\tcolor: lighten(@color-text,25);\n\t\tsmall {\n\t\t\tfont-size:@base-font-size;\n\t\t\tline-height: @base-font-size;\n\t\t\tfont-weight: normal;\n\t\t\tcolor: lighten(@color-text,25);\n\t\t}\n\t}\n\t.tl-text-date {\n\t\tdisplay:inline-block;\n\t\tfont-family:@font-main;\n\t\tfont-weight:normal;\n\t\tmargin-top:10px;\n\t\tfont-size:12px;\n\t\tcolor: lighten(@color-text,25);\n\t\t&:after {\n\t\t\t//margin-left:3px;\n\t\t\t//color:#999;\n\t\t\t//font-weight:normal;\n\t\t}\n\t}\n\n}\n\n// When the background is an image\n.tl-full-image-background, .tl-full-color-background {\n\t.tl-text, .tl-text p {\n\t\tcolor: @color-text-inverted !important;\n\t\ttext-shadow: 1px 1px 2px #000;\n\t\t.tl-headline-date, h3.tl-headline-date {\n\t\t\tcolor: @color-text-inverted !important;\n\t\t\tsmall {\n\t\t\t\tcolor: @color-text-inverted !important;\n\t\t\t}\n\t\t}\n\t\ta:hover {\n\t\t\ttext-decoration: underline;\n\t\t\tcolor: @color-theme;\n\t\t}\n\t}\n}\n\n\n/* Skinny\n================================================== */\n.tl-skinny {\n\t.tl-text {\n\t\twidth:100%;\n\t\tmax-width:100%;\n\t\tmin-width:auto;\n\t\tfloat:none;\n\t\tmargin-top:20px;\n\t\t.tl-text-content-container {\n\t\t\t.tl-text-content{\n\n\t\t\t}\n\t\t}\n\t\th2.tl-headline-title, h2.tl-headline {\n\t\t\t//word-break: break-all;\n\t\t\tfont-size:32px;\n\t\t\tline-height:36px;\n\t\t}\n\t}\n}\n\n/* Medium\n================================================== */\n.tl-medium {\n\t.tl-text {\n\t\th2.tl-headline-title, h2.tl-headline {\n\t\t\t//word-break: break-all;\n\t\t\tfont-size:32px;\n\t\t\tline-height:36px;\n\t\t}\n\t}\n}\n\n/* Mobile, iPhone\n================================================== */\n.tl-mobile {\n\n}\n\n/* Mobile, iPhone and skinny\n================================================== */\n.tl-mobile.tl-skinny {\n\n}\n",".tl-media {\n\t.tl-media-image {\n\t\t\n\t}\n\n}\n\n.tl-mobile.tl-skinny {\n\t.tl-media {\n\t\t.tl-media-image {\n\t\t\tmax-height:250px !important;\n\t\t}\n\n\t}\n}",".tl-media {\n\t.tl-media-twitter {\n\t\ttext-align:left;\n\t\t//margin-left: auto;\n\t\t//margin-right: auto;\n\t\t//margin-bottom:@base-space;\n\t\tclear:both;\n\t\tblockquote {\n\t\t\tmargin:0;\n\t\t\tmargin-right: \t@base-spacing;\n\t\t\tfont-size: \t\t@base-font-size;\n\t\t\tline-height:\tfloor(@base-font-size * @base-line-height);\n\t\t\tcolor:\t\t\t@color-foreground;\n\t\t\tp {\n\t\t\t\tfont-size: \t\t@base-font-size-xlarge;\n\t\t\t\tline-height: \tfloor(@base-font-size-xlarge * 1.1);\n\t\t\t\tcolor:\t\t\t@color-dark;\n\t\t\t}\n\t\t\t.quote-mark {\n\t\t\t\t\n\t\t\t}\n\t\t}\n\t\tblockquote p:before {\n\t\t\tdisplay:none;\n\t\t}\n\t\tblockquote p:after {\n\t\t\tdisplay:none;\n\t\t}\n\t\t\n\t\t.tl-icon-twitter {\n\t\t\tcolor:#55ACEE;\n\t\t}\n\t\t.vcard {\n\t\t\ta:hover, a.tl-date:hover {\n\t\t\t\ttext-decoration: none;\n\t\t\t\tcolor:#55ACEE;\n\t\t\t\t.fn, .nickname {\n\t\t\t\t\tcolor:#55ACEE;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\n\t}\n\n}\n.tl-slide-media-only {\n\t.tl-media {\n\t\t.tl-media-twitter {\n\t\t\twidth:80%;\n\t\t\tmargin-left:auto;\n\t\t\tmargin-right:auto;\n\t\t}\n\t}\n}\n.tl-mobile.tl-skinny {\n\t.tl-media {\n\t\t.tl-media-twitter {\n\t\t\t\n\t\t\tblockquote {\n\t\t\t\tp {\n\t\t\t\t\tfont-size: \t\t@base-font-size;\n\t\t\t\t\tline-height:\tfloor(@base-font-size * @base-line-height);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n}\n.tl-skinny {\n\t\n\t.tl-media {\n\t\t.tl-media-twitter {\n\t\t\tmargin-left:10px;\n\t\t\tmargin-right:10px;\n\t\t\tblockquote {\n\t\t\t\tp {\n\t\t\t\t\tfont-size: \t\t@base-font-size-large;\n\t\t\t\t\tline-height:\tfloor(@base-font-size-large * 1.1);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n}\n",".tl-media {\n\t.tl-media-blockquote {\n\t\ttext-align:left;\n\t\tclear:both;\n\t\t\n\t\tblockquote {\n\t\t\tmargin:0;\n\t\t\tmargin-right: \t@base-spacing;\n\t\t\ttext-align: \tleft;\n\t\t\tfont-size: \t\t@base-font-size-xlarge;\n\t\t\tline-height: \tfloor(@base-font-size-xlarge * 1.1);\n\t\t\tcolor:\t\t\t@color-foreground;\n\t\t\tp {\n\t\t\t\tfont-size: \t\t@base-font-size-xlarge;\n\t\t\t\tline-height: \tfloor(@base-font-size-xlarge * 1.1);\n\t\t\t\tcolor:\t\t\t@color-foreground;\n\t\t\t\t&:before, &:after {\n\t\t\t\t\tdisplay:inline-block;\n\t\t\t\t\tfont-size: \t\tfloor(@base-font-size-xlarge * 1.3);\n\t\t\t\t\t//line-height: \tfloor(@base-font-size-xlarge * 1.1);\n\t\t\t\t\t//color:\t\t\tlighten(@color-foreground,50);\n\t\t\t\t\t//width:@base-font-size-xlarge;\n\t\t\t\t\t//height:@base-font-size-xlarge;\n\t\t\t\t}\n\t\t\t\t&:before {\n\t\t\t\t\tcontent: open-quote;\n\t\t\t\t\tmargin-right:5px;\n\t\t\t\t}\n\t\t\t\t&:after {\n\t\t\t\t\tcontent: close-quote;\n\t\t\t\t\tmargin-left:3px;\n\t\t\t\t} \n\t\t\t}\n\t\t\tcite {\n\t\t\t\tfont-size: \t\t@base-font-size;\n\t\t\t\tline-height:\tfloor(@base-font-size * @base-line-height);\n\t\t\t\t//color:\t\t\t@color-foreground;\n\t\t\t\tcolor: \t\t\tlighten(@color-foreground, 40%);\n\t\t\t\ttext-align: \tright;\n\t\t\t\tmargin-top: \t@base-spacing;\n\t\t\t}\n\n\t\t}\n\n\n\t}\n\n}\n.tl-slide-media-only {\n\t.tl-media {\n\t\t.tl-media-blockquote {\n\t\t\tborder-right: 0;\n\t\t\twidth:80%;\n\t\t\tmargin-left:auto;\n\t\t\tmargin-right:auto;\n\t\t}\n\t}\n}\n// Skinnier\n@media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {\n\t.tl-media {\n\t\t.tl-media-blockquote {\n\t\t\t\n\t\t\tblockquote {\n\t\t\t\tp {\n\t\t\t\t\tfont-size: \t\t@base-font-size-large;\n\t\t\t\t\tline-height:\tfloor(@base-font-size-large * 1.1);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n}\n// Mobile, iPhone and skinny\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n\t.tl-media {\n\t\t.tl-media-blockquote {\n\t\t\t\n\t\t\tblockquote {\n\t\t\t\tp {\n\t\t\t\t\tfont-size: \t\t@base-font-size;\n\t\t\t\t\tline-height:\tfloor(@base-font-size * @base-line-height);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n}",".tl-media {\n\t.tl-media-instagram {\n\t\t\n\t}\n\n}\n\n\n.tl-mobile.tl-skinny {\n\t.tl-media {\n\t\t.tl-media-instagram {\n\t\t\tmax-height:250px !important;\n\t\t}\n\n\t}\n}",".tl-media {\n\t.tl-media-profile {\n\t\tborder-radius: 50%;\n\t}\n\n}\n\n// Mobile, iPhone and skinny\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n\t.tl-media {\n\t\t.tl-media-profile {\n\t\t\n\t\t}\n\n\t}\n}",".tl-media {\n\t.tl-media-iframe {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tiframe {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t}\n\t}\n\n}\n\n// Mobile, iPhone and skinny\n@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {\n\t.tl-media {\n\t\t.tl-media-iframe {\n\t\t\n\t\t}\n\n\t}\n}",".tl-media {\n\t.tl-media-wikipedia {\n\t\t//font-size: @base-font;\n\t\t//line-height: @base-line;\n\t\ttext-align:left;\n\t\tmargin-left: auto;\n\t\tmargin-right: auto;\n\t\t//margin-bottom:@base-space;\n\t\tclear:both;\n\t\t.tl-icon-wikipedia {\n\t\t\tfont-size:32px;\n\t\t\tmargin-right:10px;\n\t\t\t//margin-bottom:10px;\n\t\t\tfloat:left;\n\t\t\tpadding-top:3px;\n\t\t\t//padding-right:10px;\n\n\t\t\t//border-right: 1px solid @ui-background-color-darker;\n\t\t}\n\t\t.tl-wikipedia-pageimage {\n\t\t\tfloat:left;\n\t\t\tmargin-right:10px;\n\t\t\tmargin-bottom:5px;\n\t\t\tmargin-top:5px;\n\t\t}\n\t\t.tl-wikipedia-title {\n\t\t\tmargin-left:60px;\n\t\t\tpadding-left:10px;\n\t\t\tborder-left: 1px solid @ui-background-color-darker;\n\t\t\tmargin-bottom:10px;\n\t\t}\n\t\t.tl-wikipedia-source {\n\t\t\t//margin-bottom:@base-space;\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 15px;\n\t\t\tfont-style: italic;\n\t\t\t//margin-top:10px;\n\t\t\tmargin-top:3px;\n\t\t\tdisplay:block;\n\t\t\t//margin-left:70px;\n\t\t\tcolor:fadeout(@color-dark, 50);\n\t\t}\n\t\th4 {\n\t\t\tmargin-top:0px;\n\t\t\t//border-bottom: 1px solid @color-line;\n\t\t\tmargin-bottom:0px;\n\t\t\t//margin-left:70px;\n\t\t}\n\t\th4 a {\n\t\t\tcolor:@color-dark; //@color-theme;\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\tp {\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 19px;\n\t\t}\n\n\t}\n\n}\n.tl-slide-media-only {\n\t.tl-media {\n\t\t.tl-media-wikipedia {\n\t\t\tborder-right: 0;\n\t\t\tborder-top: 1px solid @ui-background-color-darker;\n\t\t\twidth:80%;\n\t\t\tmargin-left:auto;\n\t\t\tmargin-right:auto;\n\t\t\tmargin-top:25px;\n\t\t\tpadding-top:25px;\n\t\t}\n\t}\n}\n.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {\n\t.tl-media {\n\t\t.tl-media-wikipedia {\n\t\t\tpadding:20px;\n\t\t\t.background-color-opacity(0,0,0, 60);\n\t\t\t.border-radius(7px);\n\t\t\th4 a {\n\t\t\t\t.slide-text-shadow();\n\t\t\t}\n\t\t\ta:hover{\n\t\t\t\ttext-decoration: underline;\n\t\t\t\tcolor: @color-theme;\n\t\t\t}\n\t\t\t.tl-wikipedia-title {\n\t\t\t\tborder-color: fadeout(@ui-background-color-darker,75);\n\t\t\t}\n\t\t\t.tl-wikipedia-source {\n\t\t\t\tcolor:fadeout(@ui-background-color-darker,15);\n\t\t\t}\n\t\t}\n\t}\n}\n// Mobile, iPhone and skinny\n.tl-mobile.tl-skinny, .tl-skinny{\n\t.tl-media {\n\t\t.tl-media-wikipedia {\n\t\t\tmargin-left: 10px;\n\t\t\tmargin-right: 10px;\n\t\t}\n\n\t}\n}\n",".tl-media {\n\t.tl-media-website {\n\t\t//font-size: @base-font;\n\t\t//line-height: @base-line;\n\t\ttext-align:left;\n\t\tmargin-left: auto;\n\t\tmargin-right: auto;\n\t\t//margin-bottom:@base-space;\n\t\tclear:both;\n\t\t.tl-media-website-description {\n\t\t\t//margin-bottom:@base-space;\n\t\t\tfont-size: 16px;\n\t\t\tline-height: 19px;\n\t\t\tfont-style: italic;\n\t\t\tmargin-bottom:10px;\n\t\t\ttext-transform: uppercase;\n\t\t}\n\t\th4 {\n\t\t\tmargin-top:0px;\n\t\t\t//border-bottom: 1px solid @color-line;\n\t\t\tmargin-bottom:0px;\n\t\t\tline-height:1;\n\t\t}\n\t\th4 a {\n\t\t\tcolor:@color-dark; //@color-theme;\n\t\t\ttext-decoration: none;\n\t\t}\n\n\t\tp {\n\t\t\tfont-size: 13px;\n\t\t\tline-height: 19px;\n\t\t}\n\n\t}\n\t.tl-media-content-container {\n\t\t.tl-media-content {\n\t\t\t.tl-media-website {\n\t\t\t\timg {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tmax-width: 120px;\n\t\t\t\t\tmax-height: 120px;\n\t\t\t\t\tmargin: 4px 0 0 15px;\n\t\t\t\t\t&.tl-media-website-icon {\n\t\t\t\t\t\tmax-width: 16px;\n\t\t\t\t\t\tmax-height: 16px;\n\t\t\t\t\t\tfloat:none;\n\t\t\t\t\t\tmargin:0;\n\t\t\t\t\t\tmargin-right:3px;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\t}\n\n}\n.tl-slide.tl-full-image-background, .tl-slide.tl-full-color-background {\n\t.tl-media {\n\t\t.tl-media-website {\n\t\t\tpadding:20px;\n\t\t\t.background-color-opacity(0,0,0, 60);\n\t\t\t.border-radius(7px);\n\t\t\th4 a {\n\t\t\t\t.slide-text-shadow();\n\t\t\t}\n\t\t\ta:hover{\n\t\t\t\ttext-decoration: underline;\n\t\t\t\tcolor: @color-theme;\n\t\t\t}\n\t\t}\n\t}\n}\n// Mobile, iPhone and skinny\n.tl-mobile.tl-skinny {\n\t.tl-media {\n\t\t.tl-media-website {\n\t\t\tmargin-left: 10px;\n\t\t\tmargin-right: 10px;\n\t\t}\n\n\t}\n}\n","/*!\n\tTimeline JS 3\n\n\tDesigned and built by Zach Wise for the Northwestern University Knight Lab\n\n\tThis Source Code Form is subject to the terms of the Mozilla Public\n\tLicense, v. 2.0. If a copy of the MPL was not distributed with this\n\tfile, You can obtain one at https://mozilla.org/MPL/2.0/.\n\n*/\n\n/* Includes\n================================================== */\n\n@import \"core/Mixins.less\"; \t\t// Less shortcuts and functions\n@import \"Typography.less\";\n\n// Icons\n@import \"icons/Icons.less\";\n\n//\tTL\n@import \"core/TL.less\";\n\n//\tComponents\n@import \"ui/TL.MenuBar.less\";\n@import \"ui/TL.MenuBar.Button.less\";\n@import \"ui/TL.Message.less\";\n\n@import \"timenav/TL.TimeNav.less\";\n@import \"timenav/TL.TimeMarker.less\";\n@import \"timenav/TL.TimeEra.less\";\n@import \"timenav/TL.TimeGroup.less\";\n@import \"timenav/TL.TimeAxis.less\";\n\n@import \"animation/TL.Animate.less\";\n\n@import \"slider/TL.Slide.less\";\n@import \"slider/TL.SlideNav.less\";\n@import \"slider/TL.StorySlider.less\";\n\n@import \"media/TL.Media.less\";\n@import \"media/types/TL.Media.Text.less\";\n@import \"media/types/TL.Media.Image.less\";\n@import \"media/types/TL.Media.Twitter.less\";\n@import \"media/types/TL.Media.Blockquote.less\";\n@import \"media/types/TL.Media.Flickr.less\";\n@import \"media/types/TL.Media.Instagram.less\";\n@import \"media/types/TL.Media.Profile.less\";\n@import \"media/types/TL.Media.YouTube.less\";\n@import \"media/types/TL.Media.IFrame.less\";\n@import \"media/types/TL.Media.Wikipedia.less\";\n@import \"media/types/TL.Media.Website.less\";\n\n/* Timeline\n================================================== */\n\n.tl-timeline {\n\twidth:100%;\n\theight:100%;\n\tfont-size: 16px;\n\tline-height: normal;\n\toverflow:hidden;\n\tposition: relative;\n\t.user-select(none);\n\tbackground-color:@color-background;\n\tcolor:@color-text;\n\t-webkit-box-sizing: content-box;\n\t-moz-box-sizing: content-box;\n\tbox-sizing: content-box;\n\n\t&.tl-timeline-embed {\n\t\tbox-sizing:border-box;\n\t\tborder-top: 1px solid darken(@ui-background-color-darker, 10);\n\t\tborder-bottom: 1px solid darken(@ui-background-color-darker, 10);\n\t\tborder-radius: 0;\n\t}\n\n\t&.tl-timeline-full-embed {\n\t\tbox-sizing:border-box;\n\t\tborder: 1px solid darken(@ui-background-color-darker, 10);\n\t\tborder-radius: 8px;\n\t}\n\n .tl-attribution {\n cursor: pointer;\n z-index:9;\n position:absolute;\n bottom:2px;\n left:0px;\n font-size:10px;\n line-height:10px;\n font-family:@font-sanserif !important;\n background-color: fadeout(@color-background, 15%);\n padding:3px;\n\n a {\n color:@brand-color;\n &:hover, &:focus-visible {\n color:@color-dark;\n text-decoration: none;\n .tl-knightlab-logo {\n background-color: #c34528;\n }\n }\n }\n\n .tl-knightlab-logo {\n display: inline-block;\n vertical-align: middle;\n height: 8px;\n width: 8px;\n margin-right:3px;\n background-color:#c34528;\n background-color:@brand-color;\n transform: rotate(45deg);\n -ms-transform: rotate(45deg);\n -webkit-transform: rotate(45deg);\n }\n\n }\n}\n\n/* Portrait\n================================================== */\n.tl-layout-portrait {\n\t.tl-storyslider {\n\t\t//padding-top:10px;\n\t\t.box-shadow(0px -3px 6px rgba(0,0,0,.20));\n\t}\n}\n\n.tl-rtl{\n\t.tl-text-content, .tl-headline, .tl-media-blockquote, .tl-headline-date, .tl-timeline blockquote p, .tl-media-website, .tl-media-wikipedia, .tl-media .tl-media-blockquote blockquote, .blockquote, blockquote p, .tl-text-content p{\n\t\ttext-align: right;\n\t\tdirection: rtl;\n\t}\n\n\t.tl-slide-media-only{\n\t\t.tl-headline, .tl-headline-date{\n\t\t\ttext-align: center;\n\t\t}\n\t}\n\n\t.tl-timemarker-text{\n\t\tmargin-right: 35px;\n\t}\n\n\t.tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-media-container{\n\t\tfloat:right;\n\t}\n\n\t.tl-caption {\n\t\ttext-align: right;\n\t}\n\n\t.tl-credit {\n\t\ttext-align: left;\n\t}\n\n}\n"],"names":[],"sourceRoot":""}
|