@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.
Files changed (2509) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/dist/css/fonts/font.bitter-raleway.css +1 -1
  3. package/dist/css/fonts/font.unicaone-vollkorn.css +2 -2
  4. package/dist/css/themes/timeline.theme.contrast.css +2 -2
  5. package/dist/css/themes/timeline.theme.dark.css +2 -2
  6. package/dist/css/timeline.css +1 -1
  7. package/dist/css/timeline.css.map +1 -1
  8. package/dist/js/timeline.js +1 -1
  9. package/dist/js/timeline.js.LICENSE.txt +1 -1
  10. package/dist/js/timeline.js.map +1 -1
  11. package/eleventy/node_modules/.package-lock.json +2197 -0
  12. package/eleventy/node_modules/@11ty/dependency-tree/LICENSE +21 -0
  13. package/eleventy/node_modules/@11ty/dependency-tree/README.md +94 -0
  14. package/eleventy/node_modules/@11ty/dependency-tree/main.js +132 -0
  15. package/eleventy/node_modules/@11ty/dependency-tree/package.json +39 -0
  16. package/eleventy/node_modules/@11ty/dependency-tree-esm/.github/workflows/ci.yml +22 -0
  17. package/eleventy/node_modules/@11ty/dependency-tree-esm/.github/workflows/release.yml +24 -0
  18. package/eleventy/node_modules/@11ty/dependency-tree-esm/LICENSE +21 -0
  19. package/eleventy/node_modules/@11ty/dependency-tree-esm/README.md +40 -0
  20. package/eleventy/node_modules/@11ty/dependency-tree-esm/main.js +98 -0
  21. package/eleventy/node_modules/@11ty/dependency-tree-esm/package.json +38 -0
  22. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/circular-child.js +1 -0
  23. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/circular-parent.js +1 -0
  24. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/circular-self.js +2 -0
  25. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/empty.js +0 -0
  26. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/file.js +2 -0
  27. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/import-attributes.js +3 -0
  28. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/imported-secondary.js +3 -0
  29. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/imported.js +3 -0
  30. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/imported.json +3 -0
  31. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/nested-grandchild.js +1 -0
  32. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/stubs/nested.js +2 -0
  33. package/eleventy/node_modules/@11ty/dependency-tree-esm/test/test.js +35 -0
  34. package/eleventy/node_modules/@11ty/eleventy/CODE_OF_CONDUCT.md +48 -0
  35. package/eleventy/node_modules/@11ty/eleventy/LICENSE +21 -0
  36. package/eleventy/node_modules/@11ty/eleventy/README.md +47 -0
  37. package/eleventy/node_modules/@11ty/eleventy/SECURITY.md +9 -0
  38. package/eleventy/node_modules/@11ty/eleventy/cmd.cjs +165 -0
  39. package/eleventy/node_modules/@11ty/eleventy/package.json +155 -0
  40. package/eleventy/node_modules/@11ty/eleventy/src/Benchmark/Benchmark.js +55 -0
  41. package/eleventy/node_modules/@11ty/eleventy/src/Benchmark/BenchmarkGroup.js +135 -0
  42. package/eleventy/node_modules/@11ty/eleventy/src/Benchmark/BenchmarkManager.js +73 -0
  43. package/eleventy/node_modules/@11ty/eleventy/src/Data/ComputedData.js +121 -0
  44. package/eleventy/node_modules/@11ty/eleventy/src/Data/ComputedDataProxy.js +131 -0
  45. package/eleventy/node_modules/@11ty/eleventy/src/Data/ComputedDataQueue.js +64 -0
  46. package/eleventy/node_modules/@11ty/eleventy/src/Data/ComputedDataTemplateString.js +70 -0
  47. package/eleventy/node_modules/@11ty/eleventy/src/Data/TemplateData.js +737 -0
  48. package/eleventy/node_modules/@11ty/eleventy/src/Data/TemplateDataInitialGlobalData.js +40 -0
  49. package/eleventy/node_modules/@11ty/eleventy/src/Eleventy.js +1472 -0
  50. package/eleventy/node_modules/@11ty/eleventy/src/EleventyCommonJs.cjs +43 -0
  51. package/eleventy/node_modules/@11ty/eleventy/src/EleventyExtensionMap.js +284 -0
  52. package/eleventy/node_modules/@11ty/eleventy/src/EleventyFiles.js +517 -0
  53. package/eleventy/node_modules/@11ty/eleventy/src/EleventyServe.js +305 -0
  54. package/eleventy/node_modules/@11ty/eleventy/src/EleventyWatch.js +131 -0
  55. package/eleventy/node_modules/@11ty/eleventy/src/EleventyWatchTargets.js +164 -0
  56. package/eleventy/node_modules/@11ty/eleventy/src/Engines/Custom.js +338 -0
  57. package/eleventy/node_modules/@11ty/eleventy/src/Engines/FrontMatter/JavaScript.js +34 -0
  58. package/eleventy/node_modules/@11ty/eleventy/src/Engines/Html.js +28 -0
  59. package/eleventy/node_modules/@11ty/eleventy/src/Engines/JavaScript.js +237 -0
  60. package/eleventy/node_modules/@11ty/eleventy/src/Engines/Liquid.js +326 -0
  61. package/eleventy/node_modules/@11ty/eleventy/src/Engines/Markdown.js +93 -0
  62. package/eleventy/node_modules/@11ty/eleventy/src/Engines/Nunjucks.js +447 -0
  63. package/eleventy/node_modules/@11ty/eleventy/src/Engines/TemplateEngine.js +184 -0
  64. package/eleventy/node_modules/@11ty/eleventy/src/Engines/TemplateEngineManager.js +197 -0
  65. package/eleventy/node_modules/@11ty/eleventy/src/Engines/Util/ContextAugmenter.js +67 -0
  66. package/eleventy/node_modules/@11ty/eleventy/src/Errors/DuplicatePermalinkOutputError.js +9 -0
  67. package/eleventy/node_modules/@11ty/eleventy/src/Errors/EleventyBaseError.js +24 -0
  68. package/eleventy/node_modules/@11ty/eleventy/src/Errors/EleventyErrorHandler.js +151 -0
  69. package/eleventy/node_modules/@11ty/eleventy/src/Errors/EleventyErrorUtil.js +72 -0
  70. package/eleventy/node_modules/@11ty/eleventy/src/Errors/TemplateContentPrematureUseError.js +5 -0
  71. package/eleventy/node_modules/@11ty/eleventy/src/Errors/TemplateContentUnrenderedTemplateError.js +5 -0
  72. package/eleventy/node_modules/@11ty/eleventy/src/Errors/UsingCircularTemplateContentReferenceError.js +5 -0
  73. package/eleventy/node_modules/@11ty/eleventy/src/EventBus.js +23 -0
  74. package/eleventy/node_modules/@11ty/eleventy/src/FileSystemSearch.js +102 -0
  75. package/eleventy/node_modules/@11ty/eleventy/src/Filters/GetCollectionItem.js +20 -0
  76. package/eleventy/node_modules/@11ty/eleventy/src/Filters/GetCollectionItemIndex.js +17 -0
  77. package/eleventy/node_modules/@11ty/eleventy/src/Filters/GetLocaleCollectionItem.js +47 -0
  78. package/eleventy/node_modules/@11ty/eleventy/src/Filters/Slug.js +14 -0
  79. package/eleventy/node_modules/@11ty/eleventy/src/Filters/Slugify.js +14 -0
  80. package/eleventy/node_modules/@11ty/eleventy/src/Filters/Url.js +35 -0
  81. package/eleventy/node_modules/@11ty/eleventy/src/GlobalDependencyMap.js +424 -0
  82. package/eleventy/node_modules/@11ty/eleventy/src/Plugins/HtmlBasePlugin.js +151 -0
  83. package/eleventy/node_modules/@11ty/eleventy/src/Plugins/I18nPlugin.js +317 -0
  84. package/eleventy/node_modules/@11ty/eleventy/src/Plugins/IdAttributePlugin.js +103 -0
  85. package/eleventy/node_modules/@11ty/eleventy/src/Plugins/InputPathToUrl.js +177 -0
  86. package/eleventy/node_modules/@11ty/eleventy/src/Plugins/Pagination.js +380 -0
  87. package/eleventy/node_modules/@11ty/eleventy/src/Plugins/RenderPlugin.js +481 -0
  88. package/eleventy/node_modules/@11ty/eleventy/src/Template.js +1124 -0
  89. package/eleventy/node_modules/@11ty/eleventy/src/TemplateBehavior.js +85 -0
  90. package/eleventy/node_modules/@11ty/eleventy/src/TemplateCache.js +104 -0
  91. package/eleventy/node_modules/@11ty/eleventy/src/TemplateCollection.js +81 -0
  92. package/eleventy/node_modules/@11ty/eleventy/src/TemplateConfig.js +551 -0
  93. package/eleventy/node_modules/@11ty/eleventy/src/TemplateContent.js +712 -0
  94. package/eleventy/node_modules/@11ty/eleventy/src/TemplateFileSlug.js +57 -0
  95. package/eleventy/node_modules/@11ty/eleventy/src/TemplateGlob.js +35 -0
  96. package/eleventy/node_modules/@11ty/eleventy/src/TemplateLayout.js +242 -0
  97. package/eleventy/node_modules/@11ty/eleventy/src/TemplateLayoutPathResolver.js +136 -0
  98. package/eleventy/node_modules/@11ty/eleventy/src/TemplateMap.js +828 -0
  99. package/eleventy/node_modules/@11ty/eleventy/src/TemplatePassthrough.js +339 -0
  100. package/eleventy/node_modules/@11ty/eleventy/src/TemplatePassthroughManager.js +311 -0
  101. package/eleventy/node_modules/@11ty/eleventy/src/TemplatePermalink.js +189 -0
  102. package/eleventy/node_modules/@11ty/eleventy/src/TemplateRender.js +294 -0
  103. package/eleventy/node_modules/@11ty/eleventy/src/TemplateWriter.js +518 -0
  104. package/eleventy/node_modules/@11ty/eleventy/src/UserConfig.js +1292 -0
  105. package/eleventy/node_modules/@11ty/eleventy/src/Util/AsyncEventEmitter.js +75 -0
  106. package/eleventy/node_modules/@11ty/eleventy/src/Util/Compatibility.js +55 -0
  107. package/eleventy/node_modules/@11ty/eleventy/src/Util/ConsoleLogger.js +126 -0
  108. package/eleventy/node_modules/@11ty/eleventy/src/Util/DateGitFirstAdded.js +24 -0
  109. package/eleventy/node_modules/@11ty/eleventy/src/Util/DateGitLastUpdated.js +28 -0
  110. package/eleventy/node_modules/@11ty/eleventy/src/Util/DirContains.js +9 -0
  111. package/eleventy/node_modules/@11ty/eleventy/src/Util/EsmResolver.js +51 -0
  112. package/eleventy/node_modules/@11ty/eleventy/src/Util/EventBusUtil.js +26 -0
  113. package/eleventy/node_modules/@11ty/eleventy/src/Util/ExistsCache.js +82 -0
  114. package/eleventy/node_modules/@11ty/eleventy/src/Util/FilePathUtil.js +19 -0
  115. package/eleventy/node_modules/@11ty/eleventy/src/Util/GetJavaScriptData.js +30 -0
  116. package/eleventy/node_modules/@11ty/eleventy/src/Util/GlobMatcher.js +21 -0
  117. package/eleventy/node_modules/@11ty/eleventy/src/Util/HtmlTransformer.js +158 -0
  118. package/eleventy/node_modules/@11ty/eleventy/src/Util/ImportJsonSync.js +64 -0
  119. package/eleventy/node_modules/@11ty/eleventy/src/Util/IsAsyncFunction.js +5 -0
  120. package/eleventy/node_modules/@11ty/eleventy/src/Util/JavaScriptDependencies.js +55 -0
  121. package/eleventy/node_modules/@11ty/eleventy/src/Util/MemoizeFunction.js +26 -0
  122. package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/DeepFreeze.js +20 -0
  123. package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/ObjectFilter.js +9 -0
  124. package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/ProxyWrap.js +111 -0
  125. package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/SampleModule.mjs +1 -0
  126. package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/Sortable.js +136 -0
  127. package/eleventy/node_modules/@11ty/eleventy/src/Util/Objects/Unique.js +3 -0
  128. package/eleventy/node_modules/@11ty/eleventy/src/Util/PassthroughCopyBehaviorCheck.js +16 -0
  129. package/eleventy/node_modules/@11ty/eleventy/src/Util/PathNormalizer.js +60 -0
  130. package/eleventy/node_modules/@11ty/eleventy/src/Util/PathPrefixer.js +21 -0
  131. package/eleventy/node_modules/@11ty/eleventy/src/Util/Pluralize.js +3 -0
  132. package/eleventy/node_modules/@11ty/eleventy/src/Util/ProjectDirectories.js +344 -0
  133. package/eleventy/node_modules/@11ty/eleventy/src/Util/ProjectTemplateFormats.js +134 -0
  134. package/eleventy/node_modules/@11ty/eleventy/src/Util/Require.js +206 -0
  135. package/eleventy/node_modules/@11ty/eleventy/src/Util/ReservedData.js +69 -0
  136. package/eleventy/node_modules/@11ty/eleventy/src/Util/SetUnion.js +11 -0
  137. package/eleventy/node_modules/@11ty/eleventy/src/Util/TransformsUtil.js +70 -0
  138. package/eleventy/node_modules/@11ty/eleventy/src/Util/ValidUrl.js +9 -0
  139. package/eleventy/node_modules/@11ty/eleventy/src/defaultConfig.js +168 -0
  140. package/eleventy/node_modules/@11ty/eleventy/tsconfig.json +117 -0
  141. package/eleventy/node_modules/@11ty/eleventy-dev-server/README.md +60 -0
  142. package/eleventy/node_modules/@11ty/eleventy-dev-server/cli.js +89 -0
  143. package/eleventy/node_modules/@11ty/eleventy-dev-server/client/reload-client.js +294 -0
  144. package/eleventy/node_modules/@11ty/eleventy-dev-server/cmd.js +77 -0
  145. package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/LICENSE +21 -0
  146. package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/README.md +27 -0
  147. package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/index.js +11 -0
  148. package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/package.json +41 -0
  149. package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/src/IsPlainObject.js +24 -0
  150. package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/src/Merge.js +84 -0
  151. package/eleventy/node_modules/@11ty/eleventy-dev-server/node_modules/@11ty/eleventy-utils/src/TemplatePath.js +372 -0
  152. package/eleventy/node_modules/@11ty/eleventy-dev-server/package.json +58 -0
  153. package/eleventy/node_modules/@11ty/eleventy-dev-server/server/wrapResponse.js +129 -0
  154. package/eleventy/node_modules/@11ty/eleventy-dev-server/server.js +950 -0
  155. package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/README.md +337 -0
  156. package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/eleventy.bundle.js +66 -0
  157. package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/package.json +62 -0
  158. package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/BundleFileOutput.js +76 -0
  159. package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/CodeManager.js +209 -0
  160. package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/OutOfOrderRender.js +153 -0
  161. package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/eleventy.bundleManagers.js +74 -0
  162. package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/eleventy.pruneEmptyBundles.js +88 -0
  163. package/eleventy/node_modules/@11ty/eleventy-plugin-bundle/src/eleventy.shortcodes.js +83 -0
  164. package/eleventy/node_modules/@11ty/eleventy-utils/LICENSE +21 -0
  165. package/eleventy/node_modules/@11ty/eleventy-utils/README.md +29 -0
  166. package/eleventy/node_modules/@11ty/eleventy-utils/index.js +11 -0
  167. package/eleventy/node_modules/@11ty/eleventy-utils/package.json +47 -0
  168. package/eleventy/node_modules/@11ty/eleventy-utils/src/IsPlainObject.js +24 -0
  169. package/eleventy/node_modules/@11ty/eleventy-utils/src/Merge.js +84 -0
  170. package/eleventy/node_modules/@11ty/eleventy-utils/src/TemplatePath.js +368 -0
  171. package/eleventy/node_modules/@11ty/lodash-custom/README.md +14 -0
  172. package/eleventy/node_modules/@11ty/lodash-custom/lodash.custom.js +1704 -0
  173. package/eleventy/node_modules/@11ty/lodash-custom/package.json +38 -0
  174. package/eleventy/node_modules/@11ty/posthtml-urls/LICENSE +21 -0
  175. package/eleventy/node_modules/@11ty/posthtml-urls/README.md +48 -0
  176. package/eleventy/node_modules/@11ty/posthtml-urls/lib/defaultOptions.js +37 -0
  177. package/eleventy/node_modules/@11ty/posthtml-urls/lib/index.js +142 -0
  178. package/eleventy/node_modules/@11ty/posthtml-urls/package.json +47 -0
  179. package/eleventy/node_modules/@11ty/recursive-copy/README.md +198 -0
  180. package/eleventy/node_modules/@11ty/recursive-copy/index.d.ts +117 -0
  181. package/eleventy/node_modules/@11ty/recursive-copy/index.js +3 -0
  182. package/eleventy/node_modules/@11ty/recursive-copy/lib/copy.js +427 -0
  183. package/eleventy/node_modules/@11ty/recursive-copy/package.json +71 -0
  184. package/eleventy/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
  185. package/eleventy/node_modules/@isaacs/cliui/README.md +143 -0
  186. package/eleventy/node_modules/@isaacs/cliui/index.mjs +14 -0
  187. package/eleventy/node_modules/@isaacs/cliui/package.json +86 -0
  188. package/eleventy/node_modules/@nodelib/fs.scandir/LICENSE +21 -0
  189. package/eleventy/node_modules/@nodelib/fs.scandir/README.md +171 -0
  190. package/eleventy/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
  191. package/eleventy/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +19 -0
  192. package/eleventy/node_modules/@nodelib/fs.scandir/out/constants.d.ts +4 -0
  193. package/eleventy/node_modules/@nodelib/fs.scandir/out/constants.js +17 -0
  194. package/eleventy/node_modules/@nodelib/fs.scandir/out/index.d.ts +12 -0
  195. package/eleventy/node_modules/@nodelib/fs.scandir/out/index.js +26 -0
  196. package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
  197. package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/async.js +104 -0
  198. package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +1 -0
  199. package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/common.js +13 -0
  200. package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +5 -0
  201. package/eleventy/node_modules/@nodelib/fs.scandir/out/providers/sync.js +54 -0
  202. package/eleventy/node_modules/@nodelib/fs.scandir/out/settings.d.ts +20 -0
  203. package/eleventy/node_modules/@nodelib/fs.scandir/out/settings.js +24 -0
  204. package/eleventy/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
  205. package/eleventy/node_modules/@nodelib/fs.scandir/out/types/index.js +2 -0
  206. package/eleventy/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +2 -0
  207. package/eleventy/node_modules/@nodelib/fs.scandir/out/utils/fs.js +19 -0
  208. package/eleventy/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +2 -0
  209. package/eleventy/node_modules/@nodelib/fs.scandir/out/utils/index.js +5 -0
  210. package/eleventy/node_modules/@nodelib/fs.scandir/package.json +44 -0
  211. package/eleventy/node_modules/@nodelib/fs.stat/LICENSE +21 -0
  212. package/eleventy/node_modules/@nodelib/fs.stat/README.md +126 -0
  213. package/eleventy/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
  214. package/eleventy/node_modules/@nodelib/fs.stat/out/adapters/fs.js +17 -0
  215. package/eleventy/node_modules/@nodelib/fs.stat/out/index.d.ts +12 -0
  216. package/eleventy/node_modules/@nodelib/fs.stat/out/index.js +26 -0
  217. package/eleventy/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
  218. package/eleventy/node_modules/@nodelib/fs.stat/out/providers/async.js +36 -0
  219. package/eleventy/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +3 -0
  220. package/eleventy/node_modules/@nodelib/fs.stat/out/providers/sync.js +23 -0
  221. package/eleventy/node_modules/@nodelib/fs.stat/out/settings.d.ts +16 -0
  222. package/eleventy/node_modules/@nodelib/fs.stat/out/settings.js +16 -0
  223. package/eleventy/node_modules/@nodelib/fs.stat/out/types/index.d.ts +4 -0
  224. package/eleventy/node_modules/@nodelib/fs.stat/out/types/index.js +2 -0
  225. package/eleventy/node_modules/@nodelib/fs.stat/package.json +37 -0
  226. package/eleventy/node_modules/@nodelib/fs.walk/LICENSE +21 -0
  227. package/eleventy/node_modules/@nodelib/fs.walk/README.md +215 -0
  228. package/eleventy/node_modules/@nodelib/fs.walk/out/index.d.ts +14 -0
  229. package/eleventy/node_modules/@nodelib/fs.walk/out/index.js +34 -0
  230. package/eleventy/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
  231. package/eleventy/node_modules/@nodelib/fs.walk/out/providers/async.js +30 -0
  232. package/eleventy/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +4 -0
  233. package/eleventy/node_modules/@nodelib/fs.walk/out/providers/index.js +9 -0
  234. package/eleventy/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +12 -0
  235. package/eleventy/node_modules/@nodelib/fs.walk/out/providers/stream.js +34 -0
  236. package/eleventy/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +10 -0
  237. package/eleventy/node_modules/@nodelib/fs.walk/out/providers/sync.js +14 -0
  238. package/eleventy/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
  239. package/eleventy/node_modules/@nodelib/fs.walk/out/readers/async.js +97 -0
  240. package/eleventy/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +7 -0
  241. package/eleventy/node_modules/@nodelib/fs.walk/out/readers/common.js +31 -0
  242. package/eleventy/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
  243. package/eleventy/node_modules/@nodelib/fs.walk/out/readers/reader.js +11 -0
  244. package/eleventy/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +15 -0
  245. package/eleventy/node_modules/@nodelib/fs.walk/out/readers/sync.js +59 -0
  246. package/eleventy/node_modules/@nodelib/fs.walk/out/settings.d.ts +30 -0
  247. package/eleventy/node_modules/@nodelib/fs.walk/out/settings.js +26 -0
  248. package/eleventy/node_modules/@nodelib/fs.walk/out/types/index.d.ts +8 -0
  249. package/eleventy/node_modules/@nodelib/fs.walk/out/types/index.js +2 -0
  250. package/eleventy/node_modules/@nodelib/fs.walk/package.json +44 -0
  251. package/eleventy/node_modules/@pkgjs/parseargs/.editorconfig +14 -0
  252. package/eleventy/node_modules/@pkgjs/parseargs/CHANGELOG.md +147 -0
  253. package/eleventy/node_modules/@pkgjs/parseargs/LICENSE +201 -0
  254. package/eleventy/node_modules/@pkgjs/parseargs/README.md +413 -0
  255. package/eleventy/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
  256. package/eleventy/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
  257. package/eleventy/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
  258. package/eleventy/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
  259. package/eleventy/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
  260. package/eleventy/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
  261. package/eleventy/node_modules/@pkgjs/parseargs/index.js +396 -0
  262. package/eleventy/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
  263. package/eleventy/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
  264. package/eleventy/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
  265. package/eleventy/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
  266. package/eleventy/node_modules/@pkgjs/parseargs/package.json +36 -0
  267. package/eleventy/node_modules/@pkgjs/parseargs/utils.js +198 -0
  268. package/eleventy/node_modules/@sindresorhus/slugify/index.d.ts +246 -0
  269. package/eleventy/node_modules/@sindresorhus/slugify/index.js +127 -0
  270. package/eleventy/node_modules/@sindresorhus/slugify/license +9 -0
  271. package/eleventy/node_modules/@sindresorhus/slugify/overridable-replacements.js +7 -0
  272. package/eleventy/node_modules/@sindresorhus/slugify/package.json +59 -0
  273. package/eleventy/node_modules/@sindresorhus/slugify/readme.md +273 -0
  274. package/eleventy/node_modules/@sindresorhus/transliterate/index.d.ts +48 -0
  275. package/eleventy/node_modules/@sindresorhus/transliterate/index.js +33 -0
  276. package/eleventy/node_modules/@sindresorhus/transliterate/license +9 -0
  277. package/eleventy/node_modules/@sindresorhus/transliterate/package.json +47 -0
  278. package/eleventy/node_modules/@sindresorhus/transliterate/readme.md +103 -0
  279. package/eleventy/node_modules/@sindresorhus/transliterate/replacements.js +2056 -0
  280. package/eleventy/node_modules/a-sync-waterfall/LICENSE +21 -0
  281. package/eleventy/node_modules/a-sync-waterfall/README.md +95 -0
  282. package/eleventy/node_modules/a-sync-waterfall/index.js +83 -0
  283. package/eleventy/node_modules/a-sync-waterfall/package.json +21 -0
  284. package/eleventy/node_modules/a-sync-waterfall/test.js +77 -0
  285. package/eleventy/node_modules/acorn/CHANGELOG.md +928 -0
  286. package/eleventy/node_modules/acorn/LICENSE +21 -0
  287. package/eleventy/node_modules/acorn/README.md +282 -0
  288. package/eleventy/node_modules/acorn/bin/acorn +4 -0
  289. package/eleventy/node_modules/acorn/dist/acorn.d.mts +866 -0
  290. package/eleventy/node_modules/acorn/dist/acorn.d.ts +866 -0
  291. package/eleventy/node_modules/acorn/dist/acorn.js +6174 -0
  292. package/eleventy/node_modules/acorn/dist/acorn.mjs +6145 -0
  293. package/eleventy/node_modules/acorn/dist/bin.js +90 -0
  294. package/eleventy/node_modules/acorn/package.json +50 -0
  295. package/eleventy/node_modules/acorn-walk/CHANGELOG.md +199 -0
  296. package/eleventy/node_modules/acorn-walk/LICENSE +21 -0
  297. package/eleventy/node_modules/acorn-walk/README.md +124 -0
  298. package/eleventy/node_modules/acorn-walk/dist/walk.d.mts +177 -0
  299. package/eleventy/node_modules/acorn-walk/dist/walk.d.ts +177 -0
  300. package/eleventy/node_modules/acorn-walk/dist/walk.js +455 -0
  301. package/eleventy/node_modules/acorn-walk/dist/walk.mjs +437 -0
  302. package/eleventy/node_modules/acorn-walk/package.json +50 -0
  303. package/eleventy/node_modules/ansi-regex/index.d.ts +33 -0
  304. package/eleventy/node_modules/ansi-regex/index.js +10 -0
  305. package/eleventy/node_modules/ansi-regex/license +9 -0
  306. package/eleventy/node_modules/ansi-regex/package.json +61 -0
  307. package/eleventy/node_modules/ansi-regex/readme.md +60 -0
  308. package/eleventy/node_modules/ansi-styles/index.d.ts +236 -0
  309. package/eleventy/node_modules/ansi-styles/index.js +223 -0
  310. package/eleventy/node_modules/ansi-styles/license +9 -0
  311. package/eleventy/node_modules/ansi-styles/package.json +54 -0
  312. package/eleventy/node_modules/ansi-styles/readme.md +173 -0
  313. package/eleventy/node_modules/anymatch/LICENSE +15 -0
  314. package/eleventy/node_modules/anymatch/README.md +87 -0
  315. package/eleventy/node_modules/anymatch/index.d.ts +20 -0
  316. package/eleventy/node_modules/anymatch/index.js +104 -0
  317. package/eleventy/node_modules/anymatch/package.json +48 -0
  318. package/eleventy/node_modules/argparse/CHANGELOG.md +216 -0
  319. package/eleventy/node_modules/argparse/LICENSE +254 -0
  320. package/eleventy/node_modules/argparse/README.md +84 -0
  321. package/eleventy/node_modules/argparse/argparse.js +3707 -0
  322. package/eleventy/node_modules/argparse/lib/sub.js +67 -0
  323. package/eleventy/node_modules/argparse/lib/textwrap.js +440 -0
  324. package/eleventy/node_modules/argparse/package.json +31 -0
  325. package/eleventy/node_modules/array-differ/index.js +7 -0
  326. package/eleventy/node_modules/array-differ/package.json +32 -0
  327. package/eleventy/node_modules/array-differ/readme.md +41 -0
  328. package/eleventy/node_modules/array-union/index.js +6 -0
  329. package/eleventy/node_modules/array-union/license +21 -0
  330. package/eleventy/node_modules/array-union/package.json +40 -0
  331. package/eleventy/node_modules/array-union/readme.md +28 -0
  332. package/eleventy/node_modules/array-uniq/index.js +62 -0
  333. package/eleventy/node_modules/array-uniq/license +21 -0
  334. package/eleventy/node_modules/array-uniq/package.json +37 -0
  335. package/eleventy/node_modules/array-uniq/readme.md +30 -0
  336. package/eleventy/node_modules/arrify/index.js +8 -0
  337. package/eleventy/node_modules/arrify/license +21 -0
  338. package/eleventy/node_modules/arrify/package.json +33 -0
  339. package/eleventy/node_modules/arrify/readme.md +36 -0
  340. package/eleventy/node_modules/asap/CHANGES.md +70 -0
  341. package/eleventy/node_modules/asap/LICENSE.md +21 -0
  342. package/eleventy/node_modules/asap/README.md +237 -0
  343. package/eleventy/node_modules/asap/asap.js +65 -0
  344. package/eleventy/node_modules/asap/browser-asap.js +66 -0
  345. package/eleventy/node_modules/asap/browser-raw.js +223 -0
  346. package/eleventy/node_modules/asap/package.json +58 -0
  347. package/eleventy/node_modules/asap/raw.js +101 -0
  348. package/eleventy/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  349. package/eleventy/node_modules/balanced-match/LICENSE.md +21 -0
  350. package/eleventy/node_modules/balanced-match/README.md +97 -0
  351. package/eleventy/node_modules/balanced-match/index.js +62 -0
  352. package/eleventy/node_modules/balanced-match/package.json +48 -0
  353. package/eleventy/node_modules/bcp-47/index.d.ts +6 -0
  354. package/eleventy/node_modules/bcp-47/index.js +9 -0
  355. package/eleventy/node_modules/bcp-47/lib/normal.d.ts +2 -0
  356. package/eleventy/node_modules/bcp-47/lib/normal.js +29 -0
  357. package/eleventy/node_modules/bcp-47/lib/parse.d.ts +29 -0
  358. package/eleventy/node_modules/bcp-47/lib/parse.js +310 -0
  359. package/eleventy/node_modules/bcp-47/lib/regular.d.ts +2 -0
  360. package/eleventy/node_modules/bcp-47/lib/regular.js +12 -0
  361. package/eleventy/node_modules/bcp-47/lib/stringify.d.ts +13 -0
  362. package/eleventy/node_modules/bcp-47/lib/stringify.js +50 -0
  363. package/eleventy/node_modules/bcp-47/license +22 -0
  364. package/eleventy/node_modules/bcp-47/package.json +85 -0
  365. package/eleventy/node_modules/bcp-47/readme.md +344 -0
  366. package/eleventy/node_modules/bcp-47-match/index.d.ts +47 -0
  367. package/eleventy/node_modules/bcp-47-match/index.js +234 -0
  368. package/eleventy/node_modules/bcp-47-match/license +22 -0
  369. package/eleventy/node_modules/bcp-47-match/package.json +88 -0
  370. package/eleventy/node_modules/bcp-47-match/readme.md +315 -0
  371. package/eleventy/node_modules/bcp-47-normalize/index.d.ts +3 -0
  372. package/eleventy/node_modules/bcp-47-normalize/index.js +6 -0
  373. package/eleventy/node_modules/bcp-47-normalize/lib/fields.d.ts +24 -0
  374. package/eleventy/node_modules/bcp-47-normalize/lib/fields.js +3217 -0
  375. package/eleventy/node_modules/bcp-47-normalize/lib/index.d.ts +36 -0
  376. package/eleventy/node_modules/bcp-47-normalize/lib/index.js +335 -0
  377. package/eleventy/node_modules/bcp-47-normalize/lib/likely.d.ts +4 -0
  378. package/eleventy/node_modules/bcp-47-normalize/lib/likely.js +8039 -0
  379. package/eleventy/node_modules/bcp-47-normalize/lib/many.d.ts +10 -0
  380. package/eleventy/node_modules/bcp-47-normalize/lib/many.js +95 -0
  381. package/eleventy/node_modules/bcp-47-normalize/lib/matches.d.ts +13 -0
  382. package/eleventy/node_modules/bcp-47-normalize/lib/matches.js +1859 -0
  383. package/eleventy/node_modules/bcp-47-normalize/license +22 -0
  384. package/eleventy/node_modules/bcp-47-normalize/package.json +91 -0
  385. package/eleventy/node_modules/bcp-47-normalize/readme.md +207 -0
  386. package/eleventy/node_modules/binary-extensions/binary-extensions.json +263 -0
  387. package/eleventy/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
  388. package/eleventy/node_modules/binary-extensions/index.d.ts +14 -0
  389. package/eleventy/node_modules/binary-extensions/index.js +1 -0
  390. package/eleventy/node_modules/binary-extensions/license +10 -0
  391. package/eleventy/node_modules/binary-extensions/package.json +40 -0
  392. package/eleventy/node_modules/binary-extensions/readme.md +25 -0
  393. package/eleventy/node_modules/brace-expansion/LICENSE +21 -0
  394. package/eleventy/node_modules/brace-expansion/README.md +129 -0
  395. package/eleventy/node_modules/brace-expansion/index.js +201 -0
  396. package/eleventy/node_modules/brace-expansion/package.json +47 -0
  397. package/eleventy/node_modules/braces/LICENSE +21 -0
  398. package/eleventy/node_modules/braces/README.md +586 -0
  399. package/eleventy/node_modules/braces/index.js +170 -0
  400. package/eleventy/node_modules/braces/lib/compile.js +60 -0
  401. package/eleventy/node_modules/braces/lib/constants.js +57 -0
  402. package/eleventy/node_modules/braces/lib/expand.js +113 -0
  403. package/eleventy/node_modules/braces/lib/parse.js +331 -0
  404. package/eleventy/node_modules/braces/lib/stringify.js +32 -0
  405. package/eleventy/node_modules/braces/lib/utils.js +122 -0
  406. package/eleventy/node_modules/braces/package.json +77 -0
  407. package/eleventy/node_modules/chardet/LICENSE +19 -0
  408. package/eleventy/node_modules/chardet/README.md +114 -0
  409. package/eleventy/node_modules/chardet/lib/encoding/ascii.d.ts +6 -0
  410. package/eleventy/node_modules/chardet/lib/encoding/ascii.js +23 -0
  411. package/eleventy/node_modules/chardet/lib/encoding/ascii.js.map +1 -0
  412. package/eleventy/node_modules/chardet/lib/encoding/index.d.ts +14 -0
  413. package/eleventy/node_modules/chardet/lib/encoding/index.js +3 -0
  414. package/eleventy/node_modules/chardet/lib/encoding/index.js.map +1 -0
  415. package/eleventy/node_modules/chardet/lib/encoding/iso2022.d.ts +23 -0
  416. package/eleventy/node_modules/chardet/lib/encoding/iso2022.js +114 -0
  417. package/eleventy/node_modules/chardet/lib/encoding/iso2022.js.map +1 -0
  418. package/eleventy/node_modules/chardet/lib/encoding/mbcs.d.ts +50 -0
  419. package/eleventy/node_modules/chardet/lib/encoding/mbcs.js +347 -0
  420. package/eleventy/node_modules/chardet/lib/encoding/mbcs.js.map +1 -0
  421. package/eleventy/node_modules/chardet/lib/encoding/sbcs.d.ts +75 -0
  422. package/eleventy/node_modules/chardet/lib/encoding/sbcs.js +764 -0
  423. package/eleventy/node_modules/chardet/lib/encoding/sbcs.js.map +1 -0
  424. package/eleventy/node_modules/chardet/lib/encoding/unicode.d.ts +27 -0
  425. package/eleventy/node_modules/chardet/lib/encoding/unicode.js +109 -0
  426. package/eleventy/node_modules/chardet/lib/encoding/unicode.js.map +1 -0
  427. package/eleventy/node_modules/chardet/lib/encoding/utf8.d.ts +6 -0
  428. package/eleventy/node_modules/chardet/lib/encoding/utf8.js +72 -0
  429. package/eleventy/node_modules/chardet/lib/encoding/utf8.js.map +1 -0
  430. package/eleventy/node_modules/chardet/lib/fs/browser.d.ts +2 -0
  431. package/eleventy/node_modules/chardet/lib/fs/browser.js +6 -0
  432. package/eleventy/node_modules/chardet/lib/fs/browser.js.map +1 -0
  433. package/eleventy/node_modules/chardet/lib/fs/node.d.ts +2 -0
  434. package/eleventy/node_modules/chardet/lib/fs/node.js +11 -0
  435. package/eleventy/node_modules/chardet/lib/fs/node.js.map +1 -0
  436. package/eleventy/node_modules/chardet/lib/index.d.ts +19 -0
  437. package/eleventy/node_modules/chardet/lib/index.js +149 -0
  438. package/eleventy/node_modules/chardet/lib/index.js.map +1 -0
  439. package/eleventy/node_modules/chardet/lib/match.d.ts +8 -0
  440. package/eleventy/node_modules/chardet/lib/match.js +8 -0
  441. package/eleventy/node_modules/chardet/lib/match.js.map +1 -0
  442. package/eleventy/node_modules/chardet/lib/utils.d.ts +1 -0
  443. package/eleventy/node_modules/chardet/lib/utils.js +10 -0
  444. package/eleventy/node_modules/chardet/lib/utils.js.map +1 -0
  445. package/eleventy/node_modules/chardet/package.json +95 -0
  446. package/eleventy/node_modules/chokidar/LICENSE +21 -0
  447. package/eleventy/node_modules/chokidar/README.md +308 -0
  448. package/eleventy/node_modules/chokidar/index.js +973 -0
  449. package/eleventy/node_modules/chokidar/lib/constants.js +66 -0
  450. package/eleventy/node_modules/chokidar/lib/fsevents-handler.js +526 -0
  451. package/eleventy/node_modules/chokidar/lib/nodefs-handler.js +654 -0
  452. package/eleventy/node_modules/chokidar/package.json +70 -0
  453. package/eleventy/node_modules/chokidar/types/index.d.ts +192 -0
  454. package/eleventy/node_modules/color-convert/CHANGELOG.md +54 -0
  455. package/eleventy/node_modules/color-convert/LICENSE +21 -0
  456. package/eleventy/node_modules/color-convert/README.md +68 -0
  457. package/eleventy/node_modules/color-convert/conversions.js +839 -0
  458. package/eleventy/node_modules/color-convert/index.js +81 -0
  459. package/eleventy/node_modules/color-convert/package.json +48 -0
  460. package/eleventy/node_modules/color-convert/route.js +97 -0
  461. package/eleventy/node_modules/color-name/LICENSE +8 -0
  462. package/eleventy/node_modules/color-name/README.md +11 -0
  463. package/eleventy/node_modules/color-name/index.js +152 -0
  464. package/eleventy/node_modules/color-name/package.json +28 -0
  465. package/eleventy/node_modules/commander/LICENSE +22 -0
  466. package/eleventy/node_modules/commander/Readme.md +1134 -0
  467. package/eleventy/node_modules/commander/esm.mjs +16 -0
  468. package/eleventy/node_modules/commander/index.js +27 -0
  469. package/eleventy/node_modules/commander/lib/argument.js +147 -0
  470. package/eleventy/node_modules/commander/lib/command.js +2179 -0
  471. package/eleventy/node_modules/commander/lib/error.js +45 -0
  472. package/eleventy/node_modules/commander/lib/help.js +464 -0
  473. package/eleventy/node_modules/commander/lib/option.js +331 -0
  474. package/eleventy/node_modules/commander/lib/suggestSimilar.js +100 -0
  475. package/eleventy/node_modules/commander/package-support.json +16 -0
  476. package/eleventy/node_modules/commander/package.json +80 -0
  477. package/eleventy/node_modules/commander/typings/index.d.ts +889 -0
  478. package/eleventy/node_modules/concat-map/.travis.yml +4 -0
  479. package/eleventy/node_modules/concat-map/LICENSE +18 -0
  480. package/eleventy/node_modules/concat-map/README.markdown +62 -0
  481. package/eleventy/node_modules/concat-map/example/map.js +6 -0
  482. package/eleventy/node_modules/concat-map/index.js +13 -0
  483. package/eleventy/node_modules/concat-map/package.json +43 -0
  484. package/eleventy/node_modules/concat-map/test/map.js +39 -0
  485. package/eleventy/node_modules/cross-spawn/LICENSE +21 -0
  486. package/eleventy/node_modules/cross-spawn/README.md +89 -0
  487. package/eleventy/node_modules/cross-spawn/index.js +39 -0
  488. package/eleventy/node_modules/cross-spawn/lib/enoent.js +59 -0
  489. package/eleventy/node_modules/cross-spawn/lib/parse.js +91 -0
  490. package/eleventy/node_modules/cross-spawn/lib/util/escape.js +47 -0
  491. package/eleventy/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  492. package/eleventy/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  493. package/eleventy/node_modules/cross-spawn/package.json +73 -0
  494. package/eleventy/node_modules/debug/LICENSE +20 -0
  495. package/eleventy/node_modules/debug/README.md +481 -0
  496. package/eleventy/node_modules/debug/package.json +65 -0
  497. package/eleventy/node_modules/debug/src/browser.js +272 -0
  498. package/eleventy/node_modules/debug/src/common.js +292 -0
  499. package/eleventy/node_modules/debug/src/index.js +10 -0
  500. package/eleventy/node_modules/debug/src/node.js +263 -0
  501. package/eleventy/node_modules/depd/History.md +103 -0
  502. package/eleventy/node_modules/depd/LICENSE +22 -0
  503. package/eleventy/node_modules/depd/Readme.md +280 -0
  504. package/eleventy/node_modules/depd/index.js +538 -0
  505. package/eleventy/node_modules/depd/lib/browser/index.js +77 -0
  506. package/eleventy/node_modules/depd/package.json +45 -0
  507. package/eleventy/node_modules/dependency-graph/.github/workflows/node.js.yml +24 -0
  508. package/eleventy/node_modules/dependency-graph/CHANGELOG.md +88 -0
  509. package/eleventy/node_modules/dependency-graph/LICENSE +19 -0
  510. package/eleventy/node_modules/dependency-graph/README.md +78 -0
  511. package/eleventy/node_modules/dependency-graph/lib/dep_graph.js +364 -0
  512. package/eleventy/node_modules/dependency-graph/lib/index.d.ts +127 -0
  513. package/eleventy/node_modules/dependency-graph/package.json +31 -0
  514. package/eleventy/node_modules/dependency-graph/specs/dep_graph_spec.js +567 -0
  515. package/eleventy/node_modules/destroy/LICENSE +23 -0
  516. package/eleventy/node_modules/destroy/README.md +63 -0
  517. package/eleventy/node_modules/destroy/index.js +209 -0
  518. package/eleventy/node_modules/destroy/package.json +48 -0
  519. package/eleventy/node_modules/dev-ip/.jshintrc +26 -0
  520. package/eleventy/node_modules/dev-ip/.travis.yml +5 -0
  521. package/eleventy/node_modules/dev-ip/LICENSE-MIT +22 -0
  522. package/eleventy/node_modules/dev-ip/README.md +32 -0
  523. package/eleventy/node_modules/dev-ip/example.js +4 -0
  524. package/eleventy/node_modules/dev-ip/lib/dev-ip.js +44 -0
  525. package/eleventy/node_modules/dev-ip/package.json +43 -0
  526. package/eleventy/node_modules/dev-ip/test/.jshintrc +26 -0
  527. package/eleventy/node_modules/dev-ip/test/devip.js +77 -0
  528. package/eleventy/node_modules/dev-ip/test/fixtures/resp-multiple.js +35 -0
  529. package/eleventy/node_modules/dev-ip/test/fixtures/resp-none.js +19 -0
  530. package/eleventy/node_modules/dev-ip/test/fixtures/resp-single.js +30 -0
  531. package/eleventy/node_modules/dom-serializer/LICENSE +11 -0
  532. package/eleventy/node_modules/dom-serializer/README.md +97 -0
  533. package/eleventy/node_modules/dom-serializer/lib/esm/foreignNames.d.ts +3 -0
  534. package/eleventy/node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map +1 -0
  535. package/eleventy/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
  536. package/eleventy/node_modules/dom-serializer/lib/esm/index.d.ts +52 -0
  537. package/eleventy/node_modules/dom-serializer/lib/esm/index.d.ts.map +1 -0
  538. package/eleventy/node_modules/dom-serializer/lib/esm/index.js +190 -0
  539. package/eleventy/node_modules/dom-serializer/lib/esm/package.json +1 -0
  540. package/eleventy/node_modules/dom-serializer/lib/foreignNames.d.ts +3 -0
  541. package/eleventy/node_modules/dom-serializer/lib/foreignNames.d.ts.map +1 -0
  542. package/eleventy/node_modules/dom-serializer/lib/foreignNames.js +103 -0
  543. package/eleventy/node_modules/dom-serializer/lib/index.d.ts +43 -0
  544. package/eleventy/node_modules/dom-serializer/lib/index.d.ts.map +1 -0
  545. package/eleventy/node_modules/dom-serializer/lib/index.js +211 -0
  546. package/eleventy/node_modules/dom-serializer/node_modules/entities/LICENSE +11 -0
  547. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode.d.ts +5 -0
  548. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode.d.ts.map +1 -0
  549. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode.js +53 -0
  550. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode_codepoint.d.ts +2 -0
  551. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
  552. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/decode_codepoint.js +30 -0
  553. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/encode.d.ts +47 -0
  554. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/encode.d.ts.map +1 -0
  555. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/encode.js +136 -0
  556. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/index.d.ts +27 -0
  557. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/index.d.ts.map +1 -0
  558. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/index.js +57 -0
  559. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/maps/decode.json +1 -0
  560. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/maps/entities.json +1 -0
  561. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/maps/legacy.json +1 -0
  562. package/eleventy/node_modules/dom-serializer/node_modules/entities/lib/maps/xml.json +1 -0
  563. package/eleventy/node_modules/dom-serializer/node_modules/entities/package.json +64 -0
  564. package/eleventy/node_modules/dom-serializer/node_modules/entities/readme.md +57 -0
  565. package/eleventy/node_modules/dom-serializer/package.json +55 -0
  566. package/eleventy/node_modules/domelementtype/LICENSE +11 -0
  567. package/eleventy/node_modules/domelementtype/lib/esm/index.d.ts +48 -0
  568. package/eleventy/node_modules/domelementtype/lib/esm/index.d.ts.map +1 -0
  569. package/eleventy/node_modules/domelementtype/lib/esm/index.js +51 -0
  570. package/eleventy/node_modules/domelementtype/lib/esm/package.json +1 -0
  571. package/eleventy/node_modules/domelementtype/lib/index.d.ts +48 -0
  572. package/eleventy/node_modules/domelementtype/lib/index.d.ts.map +1 -0
  573. package/eleventy/node_modules/domelementtype/lib/index.js +55 -0
  574. package/eleventy/node_modules/domelementtype/package.json +54 -0
  575. package/eleventy/node_modules/domelementtype/readme.md +1 -0
  576. package/eleventy/node_modules/domhandler/LICENSE +11 -0
  577. package/eleventy/node_modules/domhandler/lib/index.d.ts +85 -0
  578. package/eleventy/node_modules/domhandler/lib/index.d.ts.map +1 -0
  579. package/eleventy/node_modules/domhandler/lib/index.js +176 -0
  580. package/eleventy/node_modules/domhandler/lib/node.d.ts +237 -0
  581. package/eleventy/node_modules/domhandler/lib/node.d.ts.map +1 -0
  582. package/eleventy/node_modules/domhandler/lib/node.js +444 -0
  583. package/eleventy/node_modules/domhandler/package.json +58 -0
  584. package/eleventy/node_modules/domhandler/readme.md +163 -0
  585. package/eleventy/node_modules/domutils/LICENSE +11 -0
  586. package/eleventy/node_modules/domutils/lib/feeds.d.ts +45 -0
  587. package/eleventy/node_modules/domutils/lib/feeds.d.ts.map +1 -0
  588. package/eleventy/node_modules/domutils/lib/feeds.js +190 -0
  589. package/eleventy/node_modules/domutils/lib/helpers.d.ts +51 -0
  590. package/eleventy/node_modules/domutils/lib/helpers.d.ts.map +1 -0
  591. package/eleventy/node_modules/domutils/lib/helpers.js +125 -0
  592. package/eleventy/node_modules/domutils/lib/index.d.ts +10 -0
  593. package/eleventy/node_modules/domutils/lib/index.d.ts.map +1 -0
  594. package/eleventy/node_modules/domutils/lib/index.js +28 -0
  595. package/eleventy/node_modules/domutils/lib/legacy.d.ts +47 -0
  596. package/eleventy/node_modules/domutils/lib/legacy.d.ts.map +1 -0
  597. package/eleventy/node_modules/domutils/lib/legacy.js +124 -0
  598. package/eleventy/node_modules/domutils/lib/manipulation.d.ts +43 -0
  599. package/eleventy/node_modules/domutils/lib/manipulation.d.ts.map +1 -0
  600. package/eleventy/node_modules/domutils/lib/manipulation.js +129 -0
  601. package/eleventy/node_modules/domutils/lib/querying.d.ts +55 -0
  602. package/eleventy/node_modules/domutils/lib/querying.d.ts.map +1 -0
  603. package/eleventy/node_modules/domutils/lib/querying.js +126 -0
  604. package/eleventy/node_modules/domutils/lib/stringify.d.ts +41 -0
  605. package/eleventy/node_modules/domutils/lib/stringify.d.ts.map +1 -0
  606. package/eleventy/node_modules/domutils/lib/stringify.js +86 -0
  607. package/eleventy/node_modules/domutils/lib/traversal.d.ts +59 -0
  608. package/eleventy/node_modules/domutils/lib/traversal.d.ts.map +1 -0
  609. package/eleventy/node_modules/domutils/lib/traversal.js +117 -0
  610. package/eleventy/node_modules/domutils/package.json +65 -0
  611. package/eleventy/node_modules/domutils/readme.md +31 -0
  612. package/eleventy/node_modules/eastasianwidth/README.md +32 -0
  613. package/eleventy/node_modules/eastasianwidth/eastasianwidth.js +311 -0
  614. package/eleventy/node_modules/eastasianwidth/package.json +18 -0
  615. package/eleventy/node_modules/ee-first/LICENSE +22 -0
  616. package/eleventy/node_modules/ee-first/README.md +80 -0
  617. package/eleventy/node_modules/ee-first/index.js +95 -0
  618. package/eleventy/node_modules/ee-first/package.json +29 -0
  619. package/eleventy/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  620. package/eleventy/node_modules/emoji-regex/README.md +137 -0
  621. package/eleventy/node_modules/emoji-regex/RGI_Emoji.d.ts +5 -0
  622. package/eleventy/node_modules/emoji-regex/RGI_Emoji.js +6 -0
  623. package/eleventy/node_modules/emoji-regex/es2015/RGI_Emoji.d.ts +5 -0
  624. package/eleventy/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
  625. package/eleventy/node_modules/emoji-regex/es2015/index.d.ts +5 -0
  626. package/eleventy/node_modules/emoji-regex/es2015/index.js +6 -0
  627. package/eleventy/node_modules/emoji-regex/es2015/text.d.ts +5 -0
  628. package/eleventy/node_modules/emoji-regex/es2015/text.js +6 -0
  629. package/eleventy/node_modules/emoji-regex/index.d.ts +5 -0
  630. package/eleventy/node_modules/emoji-regex/index.js +6 -0
  631. package/eleventy/node_modules/emoji-regex/package.json +52 -0
  632. package/eleventy/node_modules/emoji-regex/text.d.ts +5 -0
  633. package/eleventy/node_modules/emoji-regex/text.js +6 -0
  634. package/eleventy/node_modules/encodeurl/LICENSE +22 -0
  635. package/eleventy/node_modules/encodeurl/README.md +109 -0
  636. package/eleventy/node_modules/encodeurl/index.js +60 -0
  637. package/eleventy/node_modules/encodeurl/package.json +40 -0
  638. package/eleventy/node_modules/entities/LICENSE +11 -0
  639. package/eleventy/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
  640. package/eleventy/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
  641. package/eleventy/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
  642. package/eleventy/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
  643. package/eleventy/node_modules/entities/dist/commonjs/decode.d.ts +209 -0
  644. package/eleventy/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
  645. package/eleventy/node_modules/entities/dist/commonjs/decode.js +514 -0
  646. package/eleventy/node_modules/entities/dist/commonjs/decode.js.map +1 -0
  647. package/eleventy/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
  648. package/eleventy/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
  649. package/eleventy/node_modules/entities/dist/commonjs/encode.js +76 -0
  650. package/eleventy/node_modules/entities/dist/commonjs/encode.js.map +1 -0
  651. package/eleventy/node_modules/entities/dist/commonjs/escape.d.ts +43 -0
  652. package/eleventy/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
  653. package/eleventy/node_modules/entities/dist/commonjs/escape.js +120 -0
  654. package/eleventy/node_modules/entities/dist/commonjs/escape.js.map +1 -0
  655. package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +3 -0
  656. package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
  657. package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-html.js +9 -0
  658. package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
  659. package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +3 -0
  660. package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
  661. package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +9 -0
  662. package/eleventy/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
  663. package/eleventy/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +8 -0
  664. package/eleventy/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
  665. package/eleventy/node_modules/entities/dist/commonjs/generated/encode-html.js +12 -0
  666. package/eleventy/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
  667. package/eleventy/node_modules/entities/dist/commonjs/index.d.ts +96 -0
  668. package/eleventy/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
  669. package/eleventy/node_modules/entities/dist/commonjs/index.js +128 -0
  670. package/eleventy/node_modules/entities/dist/commonjs/index.js.map +1 -0
  671. package/eleventy/node_modules/entities/dist/commonjs/package.json +3 -0
  672. package/eleventy/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
  673. package/eleventy/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
  674. package/eleventy/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
  675. package/eleventy/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
  676. package/eleventy/node_modules/entities/dist/esm/decode.d.ts +209 -0
  677. package/eleventy/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
  678. package/eleventy/node_modules/entities/dist/esm/decode.js +497 -0
  679. package/eleventy/node_modules/entities/dist/esm/decode.js.map +1 -0
  680. package/eleventy/node_modules/entities/dist/esm/encode.d.ts +22 -0
  681. package/eleventy/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
  682. package/eleventy/node_modules/entities/dist/esm/encode.js +69 -0
  683. package/eleventy/node_modules/entities/dist/esm/encode.js.map +1 -0
  684. package/eleventy/node_modules/entities/dist/esm/escape.d.ts +43 -0
  685. package/eleventy/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
  686. package/eleventy/node_modules/entities/dist/esm/escape.js +116 -0
  687. package/eleventy/node_modules/entities/dist/esm/escape.js.map +1 -0
  688. package/eleventy/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +3 -0
  689. package/eleventy/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
  690. package/eleventy/node_modules/entities/dist/esm/generated/decode-data-html.js +7 -0
  691. package/eleventy/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
  692. package/eleventy/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +3 -0
  693. package/eleventy/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
  694. package/eleventy/node_modules/entities/dist/esm/generated/decode-data-xml.js +7 -0
  695. package/eleventy/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
  696. package/eleventy/node_modules/entities/dist/esm/generated/encode-html.d.ts +8 -0
  697. package/eleventy/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
  698. package/eleventy/node_modules/entities/dist/esm/generated/encode-html.js +10 -0
  699. package/eleventy/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
  700. package/eleventy/node_modules/entities/dist/esm/index.d.ts +96 -0
  701. package/eleventy/node_modules/entities/dist/esm/index.d.ts.map +1 -0
  702. package/eleventy/node_modules/entities/dist/esm/index.js +104 -0
  703. package/eleventy/node_modules/entities/dist/esm/index.js.map +1 -0
  704. package/eleventy/node_modules/entities/dist/esm/package.json +3 -0
  705. package/eleventy/node_modules/entities/package.json +120 -0
  706. package/eleventy/node_modules/entities/readme.md +122 -0
  707. package/eleventy/node_modules/entities/src/decode-codepoint.ts +81 -0
  708. package/eleventy/node_modules/entities/src/decode.spec.ts +320 -0
  709. package/eleventy/node_modules/entities/src/decode.ts +620 -0
  710. package/eleventy/node_modules/entities/src/encode.spec.ts +78 -0
  711. package/eleventy/node_modules/entities/src/encode.ts +77 -0
  712. package/eleventy/node_modules/entities/src/escape.spec.ts +14 -0
  713. package/eleventy/node_modules/entities/src/escape.ts +144 -0
  714. package/eleventy/node_modules/entities/src/generated/.eslintrc.json +10 -0
  715. package/eleventy/node_modules/entities/src/generated/decode-data-html.ts +8 -0
  716. package/eleventy/node_modules/entities/src/generated/decode-data-xml.ts +8 -0
  717. package/eleventy/node_modules/entities/src/generated/encode-html.ts +17 -0
  718. package/eleventy/node_modules/entities/src/index.spec.ts +125 -0
  719. package/eleventy/node_modules/entities/src/index.ts +185 -0
  720. package/eleventy/node_modules/errno/.jshintrc +59 -0
  721. package/eleventy/node_modules/errno/.travis.yml +19 -0
  722. package/eleventy/node_modules/errno/README.md +145 -0
  723. package/eleventy/node_modules/errno/build.js +43 -0
  724. package/eleventy/node_modules/errno/cli.js +22 -0
  725. package/eleventy/node_modules/errno/custom.js +57 -0
  726. package/eleventy/node_modules/errno/errno.js +313 -0
  727. package/eleventy/node_modules/errno/package.json +33 -0
  728. package/eleventy/node_modules/errno/test.js +88 -0
  729. package/eleventy/node_modules/escape-html/LICENSE +24 -0
  730. package/eleventy/node_modules/escape-html/Readme.md +43 -0
  731. package/eleventy/node_modules/escape-html/index.js +78 -0
  732. package/eleventy/node_modules/escape-html/package.json +24 -0
  733. package/eleventy/node_modules/escape-string-regexp/index.d.ts +16 -0
  734. package/eleventy/node_modules/escape-string-regexp/index.js +11 -0
  735. package/eleventy/node_modules/escape-string-regexp/license +9 -0
  736. package/eleventy/node_modules/escape-string-regexp/package.json +40 -0
  737. package/eleventy/node_modules/escape-string-regexp/readme.md +34 -0
  738. package/eleventy/node_modules/esm-import-transformer/.github/workflows/ci.yml +23 -0
  739. package/eleventy/node_modules/esm-import-transformer/README.md +91 -0
  740. package/eleventy/node_modules/esm-import-transformer/import-transformer.js +130 -0
  741. package/eleventy/node_modules/esm-import-transformer/package.json +26 -0
  742. package/eleventy/node_modules/esm-import-transformer/test/commonjsTest.cjs +16 -0
  743. package/eleventy/node_modules/esm-import-transformer/test/test.js +217 -0
  744. package/eleventy/node_modules/esprima/ChangeLog +235 -0
  745. package/eleventy/node_modules/esprima/LICENSE.BSD +21 -0
  746. package/eleventy/node_modules/esprima/README.md +46 -0
  747. package/eleventy/node_modules/esprima/bin/esparse.js +139 -0
  748. package/eleventy/node_modules/esprima/bin/esvalidate.js +236 -0
  749. package/eleventy/node_modules/esprima/dist/esprima.js +6709 -0
  750. package/eleventy/node_modules/esprima/package.json +112 -0
  751. package/eleventy/node_modules/etag/HISTORY.md +83 -0
  752. package/eleventy/node_modules/etag/LICENSE +22 -0
  753. package/eleventy/node_modules/etag/README.md +159 -0
  754. package/eleventy/node_modules/etag/index.js +131 -0
  755. package/eleventy/node_modules/etag/package.json +47 -0
  756. package/eleventy/node_modules/evaluate-value/LICENSE +21 -0
  757. package/eleventy/node_modules/evaluate-value/README.md +41 -0
  758. package/eleventy/node_modules/evaluate-value/index-es5.js +17 -0
  759. package/eleventy/node_modules/evaluate-value/index-es5.js.map +1 -0
  760. package/eleventy/node_modules/evaluate-value/index.js +17 -0
  761. package/eleventy/node_modules/evaluate-value/package.json +33 -0
  762. package/eleventy/node_modules/extend-shallow/LICENSE +21 -0
  763. package/eleventy/node_modules/extend-shallow/README.md +61 -0
  764. package/eleventy/node_modules/extend-shallow/index.js +33 -0
  765. package/eleventy/node_modules/extend-shallow/package.json +56 -0
  766. package/eleventy/node_modules/fast-glob/LICENSE +21 -0
  767. package/eleventy/node_modules/fast-glob/README.md +830 -0
  768. package/eleventy/node_modules/fast-glob/out/index.d.ts +40 -0
  769. package/eleventy/node_modules/fast-glob/out/index.js +102 -0
  770. package/eleventy/node_modules/fast-glob/out/managers/tasks.d.ts +22 -0
  771. package/eleventy/node_modules/fast-glob/out/managers/tasks.js +110 -0
  772. package/eleventy/node_modules/fast-glob/out/providers/async.d.ts +9 -0
  773. package/eleventy/node_modules/fast-glob/out/providers/async.js +23 -0
  774. package/eleventy/node_modules/fast-glob/out/providers/filters/deep.d.ts +16 -0
  775. package/eleventy/node_modules/fast-glob/out/providers/filters/deep.js +62 -0
  776. package/eleventy/node_modules/fast-glob/out/providers/filters/entry.d.ts +17 -0
  777. package/eleventy/node_modules/fast-glob/out/providers/filters/entry.js +85 -0
  778. package/eleventy/node_modules/fast-glob/out/providers/filters/error.d.ts +8 -0
  779. package/eleventy/node_modules/fast-glob/out/providers/filters/error.js +15 -0
  780. package/eleventy/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +33 -0
  781. package/eleventy/node_modules/fast-glob/out/providers/matchers/matcher.js +45 -0
  782. package/eleventy/node_modules/fast-glob/out/providers/matchers/partial.d.ts +4 -0
  783. package/eleventy/node_modules/fast-glob/out/providers/matchers/partial.js +38 -0
  784. package/eleventy/node_modules/fast-glob/out/providers/provider.d.ts +19 -0
  785. package/eleventy/node_modules/fast-glob/out/providers/provider.js +48 -0
  786. package/eleventy/node_modules/fast-glob/out/providers/stream.d.ts +11 -0
  787. package/eleventy/node_modules/fast-glob/out/providers/stream.js +31 -0
  788. package/eleventy/node_modules/fast-glob/out/providers/sync.d.ts +9 -0
  789. package/eleventy/node_modules/fast-glob/out/providers/sync.js +23 -0
  790. package/eleventy/node_modules/fast-glob/out/providers/transformers/entry.d.ts +8 -0
  791. package/eleventy/node_modules/fast-glob/out/providers/transformers/entry.js +26 -0
  792. package/eleventy/node_modules/fast-glob/out/readers/async.d.ts +10 -0
  793. package/eleventy/node_modules/fast-glob/out/readers/async.js +35 -0
  794. package/eleventy/node_modules/fast-glob/out/readers/reader.d.ts +15 -0
  795. package/eleventy/node_modules/fast-glob/out/readers/reader.js +33 -0
  796. package/eleventy/node_modules/fast-glob/out/readers/stream.d.ts +14 -0
  797. package/eleventy/node_modules/fast-glob/out/readers/stream.js +55 -0
  798. package/eleventy/node_modules/fast-glob/out/readers/sync.d.ts +12 -0
  799. package/eleventy/node_modules/fast-glob/out/readers/sync.js +43 -0
  800. package/eleventy/node_modules/fast-glob/out/settings.d.ts +164 -0
  801. package/eleventy/node_modules/fast-glob/out/settings.js +59 -0
  802. package/eleventy/node_modules/fast-glob/out/types/index.d.ts +31 -0
  803. package/eleventy/node_modules/fast-glob/out/types/index.js +2 -0
  804. package/eleventy/node_modules/fast-glob/out/utils/array.d.ts +2 -0
  805. package/eleventy/node_modules/fast-glob/out/utils/array.js +22 -0
  806. package/eleventy/node_modules/fast-glob/out/utils/errno.d.ts +2 -0
  807. package/eleventy/node_modules/fast-glob/out/utils/errno.js +7 -0
  808. package/eleventy/node_modules/fast-glob/out/utils/fs.d.ts +4 -0
  809. package/eleventy/node_modules/fast-glob/out/utils/fs.js +19 -0
  810. package/eleventy/node_modules/fast-glob/out/utils/index.d.ts +8 -0
  811. package/eleventy/node_modules/fast-glob/out/utils/index.js +17 -0
  812. package/eleventy/node_modules/fast-glob/out/utils/path.d.ts +13 -0
  813. package/eleventy/node_modules/fast-glob/out/utils/path.js +68 -0
  814. package/eleventy/node_modules/fast-glob/out/utils/pattern.d.ts +49 -0
  815. package/eleventy/node_modules/fast-glob/out/utils/pattern.js +206 -0
  816. package/eleventy/node_modules/fast-glob/out/utils/stream.d.ts +4 -0
  817. package/eleventy/node_modules/fast-glob/out/utils/stream.js +17 -0
  818. package/eleventy/node_modules/fast-glob/out/utils/string.d.ts +2 -0
  819. package/eleventy/node_modules/fast-glob/out/utils/string.js +11 -0
  820. package/eleventy/node_modules/fast-glob/package.json +81 -0
  821. package/eleventy/node_modules/fastq/.github/dependabot.yml +11 -0
  822. package/eleventy/node_modules/fastq/.github/workflows/ci.yml +75 -0
  823. package/eleventy/node_modules/fastq/LICENSE +13 -0
  824. package/eleventy/node_modules/fastq/README.md +306 -0
  825. package/eleventy/node_modules/fastq/SECURITY.md +15 -0
  826. package/eleventy/node_modules/fastq/bench.js +66 -0
  827. package/eleventy/node_modules/fastq/example.js +14 -0
  828. package/eleventy/node_modules/fastq/example.mjs +11 -0
  829. package/eleventy/node_modules/fastq/index.d.ts +38 -0
  830. package/eleventy/node_modules/fastq/package.json +53 -0
  831. package/eleventy/node_modules/fastq/queue.js +311 -0
  832. package/eleventy/node_modules/fastq/test/example.ts +83 -0
  833. package/eleventy/node_modules/fastq/test/promise.js +291 -0
  834. package/eleventy/node_modules/fastq/test/test.js +642 -0
  835. package/eleventy/node_modules/fastq/test/tsconfig.json +11 -0
  836. package/eleventy/node_modules/filesize/LICENSE +28 -0
  837. package/eleventy/node_modules/filesize/README.md +113 -0
  838. package/eleventy/node_modules/filesize/dist/filesize.cjs +238 -0
  839. package/eleventy/node_modules/filesize/dist/filesize.esm.js +231 -0
  840. package/eleventy/node_modules/filesize/package.json +60 -0
  841. package/eleventy/node_modules/filesize/types/filesize.d.ts +56 -0
  842. package/eleventy/node_modules/fill-range/LICENSE +21 -0
  843. package/eleventy/node_modules/fill-range/README.md +237 -0
  844. package/eleventy/node_modules/fill-range/index.js +248 -0
  845. package/eleventy/node_modules/fill-range/package.json +74 -0
  846. package/eleventy/node_modules/finalhandler/HISTORY.md +210 -0
  847. package/eleventy/node_modules/finalhandler/LICENSE +22 -0
  848. package/eleventy/node_modules/finalhandler/README.md +147 -0
  849. package/eleventy/node_modules/finalhandler/SECURITY.md +25 -0
  850. package/eleventy/node_modules/finalhandler/index.js +341 -0
  851. package/eleventy/node_modules/finalhandler/node_modules/debug/.coveralls.yml +1 -0
  852. package/eleventy/node_modules/finalhandler/node_modules/debug/.eslintrc +11 -0
  853. package/eleventy/node_modules/finalhandler/node_modules/debug/.travis.yml +14 -0
  854. package/eleventy/node_modules/finalhandler/node_modules/debug/CHANGELOG.md +362 -0
  855. package/eleventy/node_modules/finalhandler/node_modules/debug/LICENSE +19 -0
  856. package/eleventy/node_modules/finalhandler/node_modules/debug/Makefile +50 -0
  857. package/eleventy/node_modules/finalhandler/node_modules/debug/README.md +312 -0
  858. package/eleventy/node_modules/finalhandler/node_modules/debug/component.json +19 -0
  859. package/eleventy/node_modules/finalhandler/node_modules/debug/karma.conf.js +70 -0
  860. package/eleventy/node_modules/finalhandler/node_modules/debug/node.js +1 -0
  861. package/eleventy/node_modules/finalhandler/node_modules/debug/package.json +49 -0
  862. package/eleventy/node_modules/finalhandler/node_modules/debug/src/browser.js +185 -0
  863. package/eleventy/node_modules/finalhandler/node_modules/debug/src/debug.js +202 -0
  864. package/eleventy/node_modules/finalhandler/node_modules/debug/src/index.js +10 -0
  865. package/eleventy/node_modules/finalhandler/node_modules/debug/src/inspector-log.js +15 -0
  866. package/eleventy/node_modules/finalhandler/node_modules/debug/src/node.js +248 -0
  867. package/eleventy/node_modules/finalhandler/node_modules/ms/index.js +152 -0
  868. package/eleventy/node_modules/finalhandler/node_modules/ms/license.md +21 -0
  869. package/eleventy/node_modules/finalhandler/node_modules/ms/package.json +37 -0
  870. package/eleventy/node_modules/finalhandler/node_modules/ms/readme.md +51 -0
  871. package/eleventy/node_modules/finalhandler/package.json +47 -0
  872. package/eleventy/node_modules/foreground-child/LICENSE +15 -0
  873. package/eleventy/node_modules/foreground-child/README.md +128 -0
  874. package/eleventy/node_modules/foreground-child/dist/commonjs/all-signals.d.ts +3 -0
  875. package/eleventy/node_modules/foreground-child/dist/commonjs/all-signals.d.ts.map +1 -0
  876. package/eleventy/node_modules/foreground-child/dist/commonjs/all-signals.js +58 -0
  877. package/eleventy/node_modules/foreground-child/dist/commonjs/all-signals.js.map +1 -0
  878. package/eleventy/node_modules/foreground-child/dist/commonjs/index.d.ts +65 -0
  879. package/eleventy/node_modules/foreground-child/dist/commonjs/index.d.ts.map +1 -0
  880. package/eleventy/node_modules/foreground-child/dist/commonjs/index.js +123 -0
  881. package/eleventy/node_modules/foreground-child/dist/commonjs/index.js.map +1 -0
  882. package/eleventy/node_modules/foreground-child/dist/commonjs/package.json +3 -0
  883. package/eleventy/node_modules/foreground-child/dist/commonjs/proxy-signals.d.ts +7 -0
  884. package/eleventy/node_modules/foreground-child/dist/commonjs/proxy-signals.d.ts.map +1 -0
  885. package/eleventy/node_modules/foreground-child/dist/commonjs/proxy-signals.js +38 -0
  886. package/eleventy/node_modules/foreground-child/dist/commonjs/proxy-signals.js.map +1 -0
  887. package/eleventy/node_modules/foreground-child/dist/commonjs/watchdog.d.ts +11 -0
  888. package/eleventy/node_modules/foreground-child/dist/commonjs/watchdog.d.ts.map +1 -0
  889. package/eleventy/node_modules/foreground-child/dist/commonjs/watchdog.js +50 -0
  890. package/eleventy/node_modules/foreground-child/dist/commonjs/watchdog.js.map +1 -0
  891. package/eleventy/node_modules/foreground-child/dist/esm/all-signals.d.ts +3 -0
  892. package/eleventy/node_modules/foreground-child/dist/esm/all-signals.d.ts.map +1 -0
  893. package/eleventy/node_modules/foreground-child/dist/esm/all-signals.js +52 -0
  894. package/eleventy/node_modules/foreground-child/dist/esm/all-signals.js.map +1 -0
  895. package/eleventy/node_modules/foreground-child/dist/esm/index.d.ts +65 -0
  896. package/eleventy/node_modules/foreground-child/dist/esm/index.d.ts.map +1 -0
  897. package/eleventy/node_modules/foreground-child/dist/esm/index.js +115 -0
  898. package/eleventy/node_modules/foreground-child/dist/esm/index.js.map +1 -0
  899. package/eleventy/node_modules/foreground-child/dist/esm/package.json +3 -0
  900. package/eleventy/node_modules/foreground-child/dist/esm/proxy-signals.d.ts +7 -0
  901. package/eleventy/node_modules/foreground-child/dist/esm/proxy-signals.d.ts.map +1 -0
  902. package/eleventy/node_modules/foreground-child/dist/esm/proxy-signals.js +34 -0
  903. package/eleventy/node_modules/foreground-child/dist/esm/proxy-signals.js.map +1 -0
  904. package/eleventy/node_modules/foreground-child/dist/esm/watchdog.d.ts +11 -0
  905. package/eleventy/node_modules/foreground-child/dist/esm/watchdog.d.ts.map +1 -0
  906. package/eleventy/node_modules/foreground-child/dist/esm/watchdog.js +46 -0
  907. package/eleventy/node_modules/foreground-child/dist/esm/watchdog.js.map +1 -0
  908. package/eleventy/node_modules/foreground-child/package.json +111 -0
  909. package/eleventy/node_modules/fresh/HISTORY.md +70 -0
  910. package/eleventy/node_modules/fresh/LICENSE +23 -0
  911. package/eleventy/node_modules/fresh/README.md +119 -0
  912. package/eleventy/node_modules/fresh/index.js +137 -0
  913. package/eleventy/node_modules/fresh/package.json +46 -0
  914. package/eleventy/node_modules/fsevents/LICENSE +22 -0
  915. package/eleventy/node_modules/fsevents/README.md +89 -0
  916. package/eleventy/node_modules/fsevents/fsevents.d.ts +46 -0
  917. package/eleventy/node_modules/fsevents/fsevents.js +83 -0
  918. package/eleventy/node_modules/fsevents/fsevents.node +0 -0
  919. package/eleventy/node_modules/fsevents/package.json +62 -0
  920. package/eleventy/node_modules/glob/LICENSE +15 -0
  921. package/eleventy/node_modules/glob/README.md +1265 -0
  922. package/eleventy/node_modules/glob/dist/commonjs/glob.d.ts +388 -0
  923. package/eleventy/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
  924. package/eleventy/node_modules/glob/dist/commonjs/glob.js +247 -0
  925. package/eleventy/node_modules/glob/dist/commonjs/glob.js.map +1 -0
  926. package/eleventy/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
  927. package/eleventy/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
  928. package/eleventy/node_modules/glob/dist/commonjs/has-magic.js +27 -0
  929. package/eleventy/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
  930. package/eleventy/node_modules/glob/dist/commonjs/ignore.d.ts +24 -0
  931. package/eleventy/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
  932. package/eleventy/node_modules/glob/dist/commonjs/ignore.js +119 -0
  933. package/eleventy/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
  934. package/eleventy/node_modules/glob/dist/commonjs/index.d.ts +97 -0
  935. package/eleventy/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
  936. package/eleventy/node_modules/glob/dist/commonjs/index.js +68 -0
  937. package/eleventy/node_modules/glob/dist/commonjs/index.js.map +1 -0
  938. package/eleventy/node_modules/glob/dist/commonjs/package.json +3 -0
  939. package/eleventy/node_modules/glob/dist/commonjs/pattern.d.ts +76 -0
  940. package/eleventy/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
  941. package/eleventy/node_modules/glob/dist/commonjs/pattern.js +219 -0
  942. package/eleventy/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
  943. package/eleventy/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
  944. package/eleventy/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
  945. package/eleventy/node_modules/glob/dist/commonjs/processor.js +301 -0
  946. package/eleventy/node_modules/glob/dist/commonjs/processor.js.map +1 -0
  947. package/eleventy/node_modules/glob/dist/commonjs/walker.d.ts +97 -0
  948. package/eleventy/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
  949. package/eleventy/node_modules/glob/dist/commonjs/walker.js +387 -0
  950. package/eleventy/node_modules/glob/dist/commonjs/walker.js.map +1 -0
  951. package/eleventy/node_modules/glob/dist/esm/bin.d.mts +3 -0
  952. package/eleventy/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
  953. package/eleventy/node_modules/glob/dist/esm/bin.mjs +270 -0
  954. package/eleventy/node_modules/glob/dist/esm/bin.mjs.map +1 -0
  955. package/eleventy/node_modules/glob/dist/esm/glob.d.ts +388 -0
  956. package/eleventy/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
  957. package/eleventy/node_modules/glob/dist/esm/glob.js +243 -0
  958. package/eleventy/node_modules/glob/dist/esm/glob.js.map +1 -0
  959. package/eleventy/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
  960. package/eleventy/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
  961. package/eleventy/node_modules/glob/dist/esm/has-magic.js +23 -0
  962. package/eleventy/node_modules/glob/dist/esm/has-magic.js.map +1 -0
  963. package/eleventy/node_modules/glob/dist/esm/ignore.d.ts +24 -0
  964. package/eleventy/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
  965. package/eleventy/node_modules/glob/dist/esm/ignore.js +115 -0
  966. package/eleventy/node_modules/glob/dist/esm/ignore.js.map +1 -0
  967. package/eleventy/node_modules/glob/dist/esm/index.d.ts +97 -0
  968. package/eleventy/node_modules/glob/dist/esm/index.d.ts.map +1 -0
  969. package/eleventy/node_modules/glob/dist/esm/index.js +55 -0
  970. package/eleventy/node_modules/glob/dist/esm/index.js.map +1 -0
  971. package/eleventy/node_modules/glob/dist/esm/package.json +3 -0
  972. package/eleventy/node_modules/glob/dist/esm/pattern.d.ts +76 -0
  973. package/eleventy/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
  974. package/eleventy/node_modules/glob/dist/esm/pattern.js +215 -0
  975. package/eleventy/node_modules/glob/dist/esm/pattern.js.map +1 -0
  976. package/eleventy/node_modules/glob/dist/esm/processor.d.ts +59 -0
  977. package/eleventy/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
  978. package/eleventy/node_modules/glob/dist/esm/processor.js +294 -0
  979. package/eleventy/node_modules/glob/dist/esm/processor.js.map +1 -0
  980. package/eleventy/node_modules/glob/dist/esm/walker.d.ts +97 -0
  981. package/eleventy/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
  982. package/eleventy/node_modules/glob/dist/esm/walker.js +381 -0
  983. package/eleventy/node_modules/glob/dist/esm/walker.js.map +1 -0
  984. package/eleventy/node_modules/glob/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
  985. package/eleventy/node_modules/glob/node_modules/brace-expansion/LICENSE +21 -0
  986. package/eleventy/node_modules/glob/node_modules/brace-expansion/README.md +135 -0
  987. package/eleventy/node_modules/glob/node_modules/brace-expansion/index.js +203 -0
  988. package/eleventy/node_modules/glob/node_modules/brace-expansion/package.json +46 -0
  989. package/eleventy/node_modules/glob/node_modules/minimatch/LICENSE +15 -0
  990. package/eleventy/node_modules/glob/node_modules/minimatch/README.md +454 -0
  991. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
  992. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
  993. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  994. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
  995. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.d.ts +20 -0
  996. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
  997. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.js +592 -0
  998. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
  999. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
  1000. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
  1001. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.js +152 -0
  1002. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
  1003. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.d.ts +12 -0
  1004. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
  1005. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.js +22 -0
  1006. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
  1007. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/index.d.ts +94 -0
  1008. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
  1009. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/index.js +1017 -0
  1010. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
  1011. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/package.json +3 -0
  1012. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.d.ts +17 -0
  1013. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
  1014. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.js +24 -0
  1015. package/eleventy/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
  1016. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
  1017. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
  1018. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  1019. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
  1020. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/ast.d.ts +20 -0
  1021. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
  1022. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/ast.js +588 -0
  1023. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/ast.js.map +1 -0
  1024. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
  1025. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
  1026. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.js +148 -0
  1027. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
  1028. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/escape.d.ts +12 -0
  1029. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
  1030. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/escape.js +18 -0
  1031. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/escape.js.map +1 -0
  1032. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/index.d.ts +94 -0
  1033. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
  1034. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/index.js +1001 -0
  1035. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/index.js.map +1 -0
  1036. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/package.json +3 -0
  1037. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/unescape.d.ts +17 -0
  1038. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
  1039. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/unescape.js +20 -0
  1040. package/eleventy/node_modules/glob/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
  1041. package/eleventy/node_modules/glob/node_modules/minimatch/package.json +82 -0
  1042. package/eleventy/node_modules/glob/package.json +99 -0
  1043. package/eleventy/node_modules/glob-parent/CHANGELOG.md +110 -0
  1044. package/eleventy/node_modules/glob-parent/LICENSE +15 -0
  1045. package/eleventy/node_modules/glob-parent/README.md +137 -0
  1046. package/eleventy/node_modules/glob-parent/index.js +42 -0
  1047. package/eleventy/node_modules/glob-parent/package.json +48 -0
  1048. package/eleventy/node_modules/graceful-fs/LICENSE +15 -0
  1049. package/eleventy/node_modules/graceful-fs/README.md +143 -0
  1050. package/eleventy/node_modules/graceful-fs/clone.js +23 -0
  1051. package/eleventy/node_modules/graceful-fs/graceful-fs.js +448 -0
  1052. package/eleventy/node_modules/graceful-fs/legacy-streams.js +118 -0
  1053. package/eleventy/node_modules/graceful-fs/package.json +53 -0
  1054. package/eleventy/node_modules/graceful-fs/polyfills.js +355 -0
  1055. package/eleventy/node_modules/gray-matter/CHANGELOG.md +24 -0
  1056. package/eleventy/node_modules/gray-matter/LICENSE +21 -0
  1057. package/eleventy/node_modules/gray-matter/README.md +565 -0
  1058. package/eleventy/node_modules/gray-matter/gray-matter.d.ts +114 -0
  1059. package/eleventy/node_modules/gray-matter/index.js +228 -0
  1060. package/eleventy/node_modules/gray-matter/lib/defaults.js +18 -0
  1061. package/eleventy/node_modules/gray-matter/lib/engine.js +30 -0
  1062. package/eleventy/node_modules/gray-matter/lib/engines.js +54 -0
  1063. package/eleventy/node_modules/gray-matter/lib/excerpt.js +32 -0
  1064. package/eleventy/node_modules/gray-matter/lib/parse.js +13 -0
  1065. package/eleventy/node_modules/gray-matter/lib/stringify.js +56 -0
  1066. package/eleventy/node_modules/gray-matter/lib/to-file.js +43 -0
  1067. package/eleventy/node_modules/gray-matter/lib/utils.js +66 -0
  1068. package/eleventy/node_modules/gray-matter/node_modules/argparse/CHANGELOG.md +185 -0
  1069. package/eleventy/node_modules/gray-matter/node_modules/argparse/LICENSE +21 -0
  1070. package/eleventy/node_modules/gray-matter/node_modules/argparse/README.md +257 -0
  1071. package/eleventy/node_modules/gray-matter/node_modules/argparse/index.js +3 -0
  1072. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/append/constant.js +47 -0
  1073. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/append.js +53 -0
  1074. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/count.js +40 -0
  1075. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/help.js +47 -0
  1076. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/store/constant.js +43 -0
  1077. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/store/false.js +27 -0
  1078. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/store/true.js +26 -0
  1079. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/store.js +50 -0
  1080. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/subparsers.js +149 -0
  1081. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action/version.js +47 -0
  1082. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action.js +146 -0
  1083. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/action_container.js +482 -0
  1084. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/argparse.js +14 -0
  1085. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/argument/error.js +50 -0
  1086. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/argument/exclusive.js +54 -0
  1087. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/argument/group.js +75 -0
  1088. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/argument_parser.js +1161 -0
  1089. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/const.js +21 -0
  1090. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/help/added_formatters.js +87 -0
  1091. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/help/formatter.js +795 -0
  1092. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/namespace.js +76 -0
  1093. package/eleventy/node_modules/gray-matter/node_modules/argparse/lib/utils.js +57 -0
  1094. package/eleventy/node_modules/gray-matter/node_modules/argparse/package.json +34 -0
  1095. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/CHANGELOG.md +557 -0
  1096. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/LICENSE +21 -0
  1097. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/README.md +299 -0
  1098. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/bin/js-yaml.js +132 -0
  1099. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/dist/js-yaml.js +3989 -0
  1100. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/dist/js-yaml.min.js +1 -0
  1101. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/index.js +7 -0
  1102. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/common.js +59 -0
  1103. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/dumper.js +850 -0
  1104. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/exception.js +43 -0
  1105. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/loader.js +1644 -0
  1106. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/mark.js +76 -0
  1107. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema/core.js +18 -0
  1108. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +25 -0
  1109. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +28 -0
  1110. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +17 -0
  1111. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema/json.js +25 -0
  1112. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/schema.js +108 -0
  1113. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/binary.js +138 -0
  1114. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/bool.js +35 -0
  1115. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/float.js +116 -0
  1116. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/int.js +173 -0
  1117. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/js/function.js +93 -0
  1118. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +60 -0
  1119. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +28 -0
  1120. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/map.js +8 -0
  1121. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/merge.js +12 -0
  1122. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/null.js +34 -0
  1123. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/omap.js +44 -0
  1124. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/pairs.js +53 -0
  1125. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/seq.js +8 -0
  1126. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/set.js +29 -0
  1127. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/str.js +8 -0
  1128. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +88 -0
  1129. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml/type.js +61 -0
  1130. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/lib/js-yaml.js +39 -0
  1131. package/eleventy/node_modules/gray-matter/node_modules/js-yaml/package.json +49 -0
  1132. package/eleventy/node_modules/gray-matter/package.json +127 -0
  1133. package/eleventy/node_modules/htmlparser2/LICENSE +18 -0
  1134. package/eleventy/node_modules/htmlparser2/README.md +166 -0
  1135. package/eleventy/node_modules/htmlparser2/lib/FeedHandler.d.ts +23 -0
  1136. package/eleventy/node_modules/htmlparser2/lib/FeedHandler.d.ts.map +1 -0
  1137. package/eleventy/node_modules/htmlparser2/lib/FeedHandler.js +68 -0
  1138. package/eleventy/node_modules/htmlparser2/lib/Parser.d.ts +180 -0
  1139. package/eleventy/node_modules/htmlparser2/lib/Parser.d.ts.map +1 -0
  1140. package/eleventy/node_modules/htmlparser2/lib/Parser.js +424 -0
  1141. package/eleventy/node_modules/htmlparser2/lib/Tokenizer.d.ts +173 -0
  1142. package/eleventy/node_modules/htmlparser2/lib/Tokenizer.d.ts.map +1 -0
  1143. package/eleventy/node_modules/htmlparser2/lib/Tokenizer.js +821 -0
  1144. package/eleventy/node_modules/htmlparser2/lib/WritableStream.d.ts +16 -0
  1145. package/eleventy/node_modules/htmlparser2/lib/WritableStream.d.ts.map +1 -0
  1146. package/eleventy/node_modules/htmlparser2/lib/WritableStream.js +53 -0
  1147. package/eleventy/node_modules/htmlparser2/lib/index.d.ts +39 -0
  1148. package/eleventy/node_modules/htmlparser2/lib/index.d.ts.map +1 -0
  1149. package/eleventy/node_modules/htmlparser2/lib/index.js +84 -0
  1150. package/eleventy/node_modules/htmlparser2/node_modules/entities/LICENSE +11 -0
  1151. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode.d.ts +15 -0
  1152. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode.d.ts.map +1 -0
  1153. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode.js +145 -0
  1154. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.d.ts +2 -0
  1155. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
  1156. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.js +54 -0
  1157. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode-trie.d.ts +8 -0
  1158. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode-trie.d.ts.map +1 -0
  1159. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode-trie.js +77 -0
  1160. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode.d.ts +46 -0
  1161. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode.d.ts.map +1 -0
  1162. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/encode.js +126 -0
  1163. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
  1164. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
  1165. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.js +5 -0
  1166. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
  1167. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
  1168. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.js +5 -0
  1169. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/index.d.ts +91 -0
  1170. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/index.d.ts.map +1 -0
  1171. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/index.js +118 -0
  1172. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/maps/entities.json +1 -0
  1173. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/maps/legacy.json +1 -0
  1174. package/eleventy/node_modules/htmlparser2/node_modules/entities/lib/maps/xml.json +1 -0
  1175. package/eleventy/node_modules/htmlparser2/node_modules/entities/package.json +67 -0
  1176. package/eleventy/node_modules/htmlparser2/node_modules/entities/readme.md +74 -0
  1177. package/eleventy/node_modules/htmlparser2/package.json +75 -0
  1178. package/eleventy/node_modules/http-equiv-refresh/README.md +31 -0
  1179. package/eleventy/node_modules/http-equiv-refresh/index-es5.js +30 -0
  1180. package/eleventy/node_modules/http-equiv-refresh/index-es5.js.map +1 -0
  1181. package/eleventy/node_modules/http-equiv-refresh/index.js +24 -0
  1182. package/eleventy/node_modules/http-equiv-refresh/license +21 -0
  1183. package/eleventy/node_modules/http-equiv-refresh/package.json +42 -0
  1184. package/eleventy/node_modules/http-errors/HISTORY.md +180 -0
  1185. package/eleventy/node_modules/http-errors/LICENSE +23 -0
  1186. package/eleventy/node_modules/http-errors/README.md +169 -0
  1187. package/eleventy/node_modules/http-errors/index.js +289 -0
  1188. package/eleventy/node_modules/http-errors/package.json +50 -0
  1189. package/eleventy/node_modules/inherits/LICENSE +16 -0
  1190. package/eleventy/node_modules/inherits/README.md +42 -0
  1191. package/eleventy/node_modules/inherits/inherits.js +9 -0
  1192. package/eleventy/node_modules/inherits/inherits_browser.js +27 -0
  1193. package/eleventy/node_modules/inherits/package.json +29 -0
  1194. package/eleventy/node_modules/is-alphabetical/index.d.ts +8 -0
  1195. package/eleventy/node_modules/is-alphabetical/index.js +16 -0
  1196. package/eleventy/node_modules/is-alphabetical/license +22 -0
  1197. package/eleventy/node_modules/is-alphabetical/package.json +73 -0
  1198. package/eleventy/node_modules/is-alphabetical/readme.md +141 -0
  1199. package/eleventy/node_modules/is-alphanumerical/index.d.ts +8 -0
  1200. package/eleventy/node_modules/is-alphanumerical/index.js +13 -0
  1201. package/eleventy/node_modules/is-alphanumerical/license +22 -0
  1202. package/eleventy/node_modules/is-alphanumerical/package.json +79 -0
  1203. package/eleventy/node_modules/is-alphanumerical/readme.md +142 -0
  1204. package/eleventy/node_modules/is-binary-path/index.d.ts +17 -0
  1205. package/eleventy/node_modules/is-binary-path/index.js +7 -0
  1206. package/eleventy/node_modules/is-binary-path/license +9 -0
  1207. package/eleventy/node_modules/is-binary-path/package.json +40 -0
  1208. package/eleventy/node_modules/is-binary-path/readme.md +34 -0
  1209. package/eleventy/node_modules/is-decimal/index.d.ts +8 -0
  1210. package/eleventy/node_modules/is-decimal/index.js +13 -0
  1211. package/eleventy/node_modules/is-decimal/license +22 -0
  1212. package/eleventy/node_modules/is-decimal/package.json +73 -0
  1213. package/eleventy/node_modules/is-decimal/readme.md +139 -0
  1214. package/eleventy/node_modules/is-extendable/LICENSE +21 -0
  1215. package/eleventy/node_modules/is-extendable/README.md +72 -0
  1216. package/eleventy/node_modules/is-extendable/index.js +13 -0
  1217. package/eleventy/node_modules/is-extendable/package.json +51 -0
  1218. package/eleventy/node_modules/is-extglob/LICENSE +21 -0
  1219. package/eleventy/node_modules/is-extglob/README.md +107 -0
  1220. package/eleventy/node_modules/is-extglob/index.js +20 -0
  1221. package/eleventy/node_modules/is-extglob/package.json +69 -0
  1222. package/eleventy/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
  1223. package/eleventy/node_modules/is-fullwidth-code-point/index.js +50 -0
  1224. package/eleventy/node_modules/is-fullwidth-code-point/license +9 -0
  1225. package/eleventy/node_modules/is-fullwidth-code-point/package.json +42 -0
  1226. package/eleventy/node_modules/is-fullwidth-code-point/readme.md +39 -0
  1227. package/eleventy/node_modules/is-glob/LICENSE +21 -0
  1228. package/eleventy/node_modules/is-glob/README.md +206 -0
  1229. package/eleventy/node_modules/is-glob/index.js +150 -0
  1230. package/eleventy/node_modules/is-glob/package.json +81 -0
  1231. package/eleventy/node_modules/is-json/.travis.yml +14 -0
  1232. package/eleventy/node_modules/is-json/LICENSE +15 -0
  1233. package/eleventy/node_modules/is-json/README.md +41 -0
  1234. package/eleventy/node_modules/is-json/index.js +48 -0
  1235. package/eleventy/node_modules/is-json/package.json +29 -0
  1236. package/eleventy/node_modules/is-json/test/index.js +33 -0
  1237. package/eleventy/node_modules/is-number/LICENSE +21 -0
  1238. package/eleventy/node_modules/is-number/README.md +187 -0
  1239. package/eleventy/node_modules/is-number/index.js +18 -0
  1240. package/eleventy/node_modules/is-number/package.json +82 -0
  1241. package/eleventy/node_modules/isexe/LICENSE +15 -0
  1242. package/eleventy/node_modules/isexe/README.md +51 -0
  1243. package/eleventy/node_modules/isexe/index.js +57 -0
  1244. package/eleventy/node_modules/isexe/mode.js +41 -0
  1245. package/eleventy/node_modules/isexe/package.json +31 -0
  1246. package/eleventy/node_modules/isexe/test/basic.js +221 -0
  1247. package/eleventy/node_modules/isexe/windows.js +42 -0
  1248. package/eleventy/node_modules/iso-639-1/.eslintrc +38 -0
  1249. package/eleventy/node_modules/iso-639-1/.nvmrc +1 -0
  1250. package/eleventy/node_modules/iso-639-1/.prettierrc +4 -0
  1251. package/eleventy/node_modules/iso-639-1/.travis.yml +6 -0
  1252. package/eleventy/node_modules/iso-639-1/CHANGELOG.md +75 -0
  1253. package/eleventy/node_modules/iso-639-1/LICENSE +21 -0
  1254. package/eleventy/node_modules/iso-639-1/index.d.ts +205 -0
  1255. package/eleventy/node_modules/iso-639-1/package.json +41 -0
  1256. package/eleventy/node_modules/iso-639-1/readme.md +121 -0
  1257. package/eleventy/node_modules/iso-639-1/src/data.js +736 -0
  1258. package/eleventy/node_modules/iso-639-1/src/index.js +59 -0
  1259. package/eleventy/node_modules/iso-639-1/test/test.js +92 -0
  1260. package/eleventy/node_modules/iso-639-1/webpack.config.js +20 -0
  1261. package/eleventy/node_modules/jackspeak/LICENSE.md +55 -0
  1262. package/eleventy/node_modules/jackspeak/README.md +357 -0
  1263. package/eleventy/node_modules/jackspeak/dist/commonjs/index.d.ts +315 -0
  1264. package/eleventy/node_modules/jackspeak/dist/commonjs/index.d.ts.map +1 -0
  1265. package/eleventy/node_modules/jackspeak/dist/commonjs/index.js +1010 -0
  1266. package/eleventy/node_modules/jackspeak/dist/commonjs/index.js.map +1 -0
  1267. package/eleventy/node_modules/jackspeak/dist/commonjs/package.json +3 -0
  1268. package/eleventy/node_modules/jackspeak/dist/commonjs/parse-args-cjs.cjs.map +1 -0
  1269. package/eleventy/node_modules/jackspeak/dist/commonjs/parse-args-cjs.d.cts.map +1 -0
  1270. package/eleventy/node_modules/jackspeak/dist/commonjs/parse-args.d.ts +4 -0
  1271. package/eleventy/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
  1272. package/eleventy/node_modules/jackspeak/dist/esm/index.d.ts +315 -0
  1273. package/eleventy/node_modules/jackspeak/dist/esm/index.d.ts.map +1 -0
  1274. package/eleventy/node_modules/jackspeak/dist/esm/index.js +1000 -0
  1275. package/eleventy/node_modules/jackspeak/dist/esm/index.js.map +1 -0
  1276. package/eleventy/node_modules/jackspeak/dist/esm/package.json +3 -0
  1277. package/eleventy/node_modules/jackspeak/dist/esm/parse-args.d.ts +4 -0
  1278. package/eleventy/node_modules/jackspeak/dist/esm/parse-args.d.ts.map +1 -0
  1279. package/eleventy/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
  1280. package/eleventy/node_modules/jackspeak/dist/esm/parse-args.js.map +1 -0
  1281. package/eleventy/node_modules/jackspeak/package.json +95 -0
  1282. package/eleventy/node_modules/js-yaml/CHANGELOG.md +616 -0
  1283. package/eleventy/node_modules/js-yaml/LICENSE +21 -0
  1284. package/eleventy/node_modules/js-yaml/README.md +246 -0
  1285. package/eleventy/node_modules/js-yaml/bin/js-yaml.js +126 -0
  1286. package/eleventy/node_modules/js-yaml/dist/js-yaml.js +3874 -0
  1287. package/eleventy/node_modules/js-yaml/dist/js-yaml.min.js +2 -0
  1288. package/eleventy/node_modules/js-yaml/dist/js-yaml.mjs +3851 -0
  1289. package/eleventy/node_modules/js-yaml/index.js +47 -0
  1290. package/eleventy/node_modules/js-yaml/lib/common.js +59 -0
  1291. package/eleventy/node_modules/js-yaml/lib/dumper.js +965 -0
  1292. package/eleventy/node_modules/js-yaml/lib/exception.js +55 -0
  1293. package/eleventy/node_modules/js-yaml/lib/loader.js +1727 -0
  1294. package/eleventy/node_modules/js-yaml/lib/schema/core.js +11 -0
  1295. package/eleventy/node_modules/js-yaml/lib/schema/default.js +22 -0
  1296. package/eleventy/node_modules/js-yaml/lib/schema/failsafe.js +17 -0
  1297. package/eleventy/node_modules/js-yaml/lib/schema/json.js +19 -0
  1298. package/eleventy/node_modules/js-yaml/lib/schema.js +121 -0
  1299. package/eleventy/node_modules/js-yaml/lib/snippet.js +101 -0
  1300. package/eleventy/node_modules/js-yaml/lib/type/binary.js +125 -0
  1301. package/eleventy/node_modules/js-yaml/lib/type/bool.js +35 -0
  1302. package/eleventy/node_modules/js-yaml/lib/type/float.js +97 -0
  1303. package/eleventy/node_modules/js-yaml/lib/type/int.js +156 -0
  1304. package/eleventy/node_modules/js-yaml/lib/type/map.js +8 -0
  1305. package/eleventy/node_modules/js-yaml/lib/type/merge.js +12 -0
  1306. package/eleventy/node_modules/js-yaml/lib/type/null.js +35 -0
  1307. package/eleventy/node_modules/js-yaml/lib/type/omap.js +44 -0
  1308. package/eleventy/node_modules/js-yaml/lib/type/pairs.js +53 -0
  1309. package/eleventy/node_modules/js-yaml/lib/type/seq.js +8 -0
  1310. package/eleventy/node_modules/js-yaml/lib/type/set.js +29 -0
  1311. package/eleventy/node_modules/js-yaml/lib/type/str.js +8 -0
  1312. package/eleventy/node_modules/js-yaml/lib/type/timestamp.js +88 -0
  1313. package/eleventy/node_modules/js-yaml/lib/type.js +66 -0
  1314. package/eleventy/node_modules/js-yaml/package.json +66 -0
  1315. package/eleventy/node_modules/junk/index.js +30 -0
  1316. package/eleventy/node_modules/junk/license +21 -0
  1317. package/eleventy/node_modules/junk/package.json +37 -0
  1318. package/eleventy/node_modules/junk/readme.md +46 -0
  1319. package/eleventy/node_modules/kind-of/CHANGELOG.md +160 -0
  1320. package/eleventy/node_modules/kind-of/LICENSE +21 -0
  1321. package/eleventy/node_modules/kind-of/README.md +367 -0
  1322. package/eleventy/node_modules/kind-of/index.js +129 -0
  1323. package/eleventy/node_modules/kind-of/package.json +88 -0
  1324. package/eleventy/node_modules/kleur/colors.d.ts +38 -0
  1325. package/eleventy/node_modules/kleur/colors.js +53 -0
  1326. package/eleventy/node_modules/kleur/colors.mjs +53 -0
  1327. package/eleventy/node_modules/kleur/index.d.ts +45 -0
  1328. package/eleventy/node_modules/kleur/index.js +110 -0
  1329. package/eleventy/node_modules/kleur/index.mjs +110 -0
  1330. package/eleventy/node_modules/kleur/license +21 -0
  1331. package/eleventy/node_modules/kleur/package.json +51 -0
  1332. package/eleventy/node_modules/kleur/readme.md +232 -0
  1333. package/eleventy/node_modules/linkify-it/LICENSE +22 -0
  1334. package/eleventy/node_modules/linkify-it/README.md +196 -0
  1335. package/eleventy/node_modules/linkify-it/index.mjs +642 -0
  1336. package/eleventy/node_modules/linkify-it/lib/re.mjs +189 -0
  1337. package/eleventy/node_modules/linkify-it/package.json +58 -0
  1338. package/eleventy/node_modules/liquidjs/LICENSE +21 -0
  1339. package/eleventy/node_modules/liquidjs/README.md +228 -0
  1340. package/eleventy/node_modules/liquidjs/bin/liquid.js +139 -0
  1341. package/eleventy/node_modules/liquidjs/dist/cache/cache.d.ts +7 -0
  1342. package/eleventy/node_modules/liquidjs/dist/cache/index.d.ts +2 -0
  1343. package/eleventy/node_modules/liquidjs/dist/cache/lru.d.ts +14 -0
  1344. package/eleventy/node_modules/liquidjs/dist/cache/lru.spec.d.ts +1 -0
  1345. package/eleventy/node_modules/liquidjs/dist/context/block-mode.d.ts +4 -0
  1346. package/eleventy/node_modules/liquidjs/dist/context/context.d.ts +64 -0
  1347. package/eleventy/node_modules/liquidjs/dist/context/context.spec.d.ts +1 -0
  1348. package/eleventy/node_modules/liquidjs/dist/context/index.d.ts +3 -0
  1349. package/eleventy/node_modules/liquidjs/dist/context/scope.d.ts +6 -0
  1350. package/eleventy/node_modules/liquidjs/dist/drop/blank-drop.d.ts +5 -0
  1351. package/eleventy/node_modules/liquidjs/dist/drop/block-drop.d.ts +10 -0
  1352. package/eleventy/node_modules/liquidjs/dist/drop/comparable.d.ts +8 -0
  1353. package/eleventy/node_modules/liquidjs/dist/drop/drop.d.ts +3 -0
  1354. package/eleventy/node_modules/liquidjs/dist/drop/empty-drop.d.ts +11 -0
  1355. package/eleventy/node_modules/liquidjs/dist/drop/forloop-drop.d.ts +15 -0
  1356. package/eleventy/node_modules/liquidjs/dist/drop/index.d.ts +7 -0
  1357. package/eleventy/node_modules/liquidjs/dist/drop/null-drop.d.ts +10 -0
  1358. package/eleventy/node_modules/liquidjs/dist/drop/tablerowloop-drop.d.ts +10 -0
  1359. package/eleventy/node_modules/liquidjs/dist/emitters/emitter.d.ts +11 -0
  1360. package/eleventy/node_modules/liquidjs/dist/emitters/index.d.ts +4 -0
  1361. package/eleventy/node_modules/liquidjs/dist/emitters/keeping-type-emitter.d.ts +5 -0
  1362. package/eleventy/node_modules/liquidjs/dist/emitters/simple-emitter.d.ts +5 -0
  1363. package/eleventy/node_modules/liquidjs/dist/emitters/streamed-emitter.d.ts +9 -0
  1364. package/eleventy/node_modules/liquidjs/dist/filters/array.d.ts +26 -0
  1365. package/eleventy/node_modules/liquidjs/dist/filters/date.d.ts +6 -0
  1366. package/eleventy/node_modules/liquidjs/dist/filters/html.d.ts +6 -0
  1367. package/eleventy/node_modules/liquidjs/dist/filters/index.d.ts +2 -0
  1368. package/eleventy/node_modules/liquidjs/dist/filters/math.d.ts +11 -0
  1369. package/eleventy/node_modules/liquidjs/dist/filters/misc.d.ts +18 -0
  1370. package/eleventy/node_modules/liquidjs/dist/filters/string.d.ts +27 -0
  1371. package/eleventy/node_modules/liquidjs/dist/filters/url.d.ts +14 -0
  1372. package/eleventy/node_modules/liquidjs/dist/fs/fs-impl.d.ts +9 -0
  1373. package/eleventy/node_modules/liquidjs/dist/fs/fs-impl.spec.d.ts +1 -0
  1374. package/eleventy/node_modules/liquidjs/dist/fs/fs.d.ts +20 -0
  1375. package/eleventy/node_modules/liquidjs/dist/fs/index.d.ts +2 -0
  1376. package/eleventy/node_modules/liquidjs/dist/fs/loader.d.ts +24 -0
  1377. package/eleventy/node_modules/liquidjs/dist/fs/loader.spec.d.ts +1 -0
  1378. package/eleventy/node_modules/liquidjs/dist/fs/map-fs.d.ts +13 -0
  1379. package/eleventy/node_modules/liquidjs/dist/fs/map-fs.spec.d.ts +1 -0
  1380. package/eleventy/node_modules/liquidjs/dist/fs/node-require.d.ts +1 -0
  1381. package/eleventy/node_modules/liquidjs/dist/index.d.ts +15 -0
  1382. package/eleventy/node_modules/liquidjs/dist/liquid-options.d.ts +159 -0
  1383. package/eleventy/node_modules/liquidjs/dist/liquid-options.spec.d.ts +1 -0
  1384. package/eleventy/node_modules/liquidjs/dist/liquid.browser.min.js +2 -0
  1385. package/eleventy/node_modules/liquidjs/dist/liquid.browser.min.js.map +1 -0
  1386. package/eleventy/node_modules/liquidjs/dist/liquid.browser.mjs +4891 -0
  1387. package/eleventy/node_modules/liquidjs/dist/liquid.browser.umd.js +7178 -0
  1388. package/eleventy/node_modules/liquidjs/dist/liquid.browser.umd.js.map +1 -0
  1389. package/eleventy/node_modules/liquidjs/dist/liquid.d.ts +70 -0
  1390. package/eleventy/node_modules/liquidjs/dist/liquid.node.js +4914 -0
  1391. package/eleventy/node_modules/liquidjs/dist/liquid.node.mjs +4904 -0
  1392. package/eleventy/node_modules/liquidjs/dist/parser/filter-arg.d.ts +5 -0
  1393. package/eleventy/node_modules/liquidjs/dist/parser/index.d.ts +4 -0
  1394. package/eleventy/node_modules/liquidjs/dist/parser/parse-stream.d.ts +15 -0
  1395. package/eleventy/node_modules/liquidjs/dist/parser/parse-stream.spec.d.ts +1 -0
  1396. package/eleventy/node_modules/liquidjs/dist/parser/parser.d.ts +20 -0
  1397. package/eleventy/node_modules/liquidjs/dist/parser/parser.spec.d.ts +1 -0
  1398. package/eleventy/node_modules/liquidjs/dist/parser/token-kind.d.ts +16 -0
  1399. package/eleventy/node_modules/liquidjs/dist/parser/tokenizer.d.ts +63 -0
  1400. package/eleventy/node_modules/liquidjs/dist/parser/tokenizer.spec.d.ts +1 -0
  1401. package/eleventy/node_modules/liquidjs/dist/parser/whitespace-ctrl.d.ts +3 -0
  1402. package/eleventy/node_modules/liquidjs/dist/render/boolean.d.ts +3 -0
  1403. package/eleventy/node_modules/liquidjs/dist/render/boolean.spec.d.ts +1 -0
  1404. package/eleventy/node_modules/liquidjs/dist/render/expression.d.ts +10 -0
  1405. package/eleventy/node_modules/liquidjs/dist/render/expression.spec.d.ts +1 -0
  1406. package/eleventy/node_modules/liquidjs/dist/render/index.d.ts +4 -0
  1407. package/eleventy/node_modules/liquidjs/dist/render/operator.d.ts +8 -0
  1408. package/eleventy/node_modules/liquidjs/dist/render/render.d.ts +8 -0
  1409. package/eleventy/node_modules/liquidjs/dist/render/render.spec.d.ts +1 -0
  1410. package/eleventy/node_modules/liquidjs/dist/render/string.d.ts +1 -0
  1411. package/eleventy/node_modules/liquidjs/dist/render/string.spec.d.ts +1 -0
  1412. package/eleventy/node_modules/liquidjs/dist/tags/assign.d.ts +12 -0
  1413. package/eleventy/node_modules/liquidjs/dist/tags/block.d.ts +11 -0
  1414. package/eleventy/node_modules/liquidjs/dist/tags/break.d.ts +4 -0
  1415. package/eleventy/node_modules/liquidjs/dist/tags/capture.d.ts +13 -0
  1416. package/eleventy/node_modules/liquidjs/dist/tags/case.d.ts +15 -0
  1417. package/eleventy/node_modules/liquidjs/dist/tags/comment.d.ts +5 -0
  1418. package/eleventy/node_modules/liquidjs/dist/tags/continue.d.ts +4 -0
  1419. package/eleventy/node_modules/liquidjs/dist/tags/cycle.d.ts +9 -0
  1420. package/eleventy/node_modules/liquidjs/dist/tags/decrement.d.ts +9 -0
  1421. package/eleventy/node_modules/liquidjs/dist/tags/echo.d.ts +8 -0
  1422. package/eleventy/node_modules/liquidjs/dist/tags/for.d.ts +15 -0
  1423. package/eleventy/node_modules/liquidjs/dist/tags/if.d.ts +14 -0
  1424. package/eleventy/node_modules/liquidjs/dist/tags/include.d.ts +12 -0
  1425. package/eleventy/node_modules/liquidjs/dist/tags/increment.d.ts +9 -0
  1426. package/eleventy/node_modules/liquidjs/dist/tags/index.d.ts +24 -0
  1427. package/eleventy/node_modules/liquidjs/dist/tags/inline-comment.d.ts +5 -0
  1428. package/eleventy/node_modules/liquidjs/dist/tags/layout.d.ts +14 -0
  1429. package/eleventy/node_modules/liquidjs/dist/tags/liquid.d.ts +8 -0
  1430. package/eleventy/node_modules/liquidjs/dist/tags/raw.d.ts +6 -0
  1431. package/eleventy/node_modules/liquidjs/dist/tags/render.d.ts +22 -0
  1432. package/eleventy/node_modules/liquidjs/dist/tags/tablerow.d.ts +14 -0
  1433. package/eleventy/node_modules/liquidjs/dist/tags/unless.d.ts +15 -0
  1434. package/eleventy/node_modules/liquidjs/dist/template/analysis.d.ts +85 -0
  1435. package/eleventy/node_modules/liquidjs/dist/template/analysis.spec.d.ts +1 -0
  1436. package/eleventy/node_modules/liquidjs/dist/template/filter-impl-options.d.ts +14 -0
  1437. package/eleventy/node_modules/liquidjs/dist/template/filter.d.ts +15 -0
  1438. package/eleventy/node_modules/liquidjs/dist/template/filter.spec.d.ts +1 -0
  1439. package/eleventy/node_modules/liquidjs/dist/template/hash.d.ts +18 -0
  1440. package/eleventy/node_modules/liquidjs/dist/template/hash.spec.d.ts +1 -0
  1441. package/eleventy/node_modules/liquidjs/dist/template/html.d.ts +9 -0
  1442. package/eleventy/node_modules/liquidjs/dist/template/index.d.ts +11 -0
  1443. package/eleventy/node_modules/liquidjs/dist/template/output.d.ts +12 -0
  1444. package/eleventy/node_modules/liquidjs/dist/template/output.spec.d.ts +1 -0
  1445. package/eleventy/node_modules/liquidjs/dist/template/tag-options-adapter.d.ts +10 -0
  1446. package/eleventy/node_modules/liquidjs/dist/template/tag.d.ts +18 -0
  1447. package/eleventy/node_modules/liquidjs/dist/template/template-impl.d.ts +4 -0
  1448. package/eleventy/node_modules/liquidjs/dist/template/template.d.ts +36 -0
  1449. package/eleventy/node_modules/liquidjs/dist/template/value.d.ts +15 -0
  1450. package/eleventy/node_modules/liquidjs/dist/template/value.spec.d.ts +1 -0
  1451. package/eleventy/node_modules/liquidjs/dist/tokens/delimited-token.d.ts +9 -0
  1452. package/eleventy/node_modules/liquidjs/dist/tokens/filter-token.d.ts +7 -0
  1453. package/eleventy/node_modules/liquidjs/dist/tokens/filtered-value-token.d.ts +17 -0
  1454. package/eleventy/node_modules/liquidjs/dist/tokens/hash-token.d.ts +12 -0
  1455. package/eleventy/node_modules/liquidjs/dist/tokens/html-token.d.ts +11 -0
  1456. package/eleventy/node_modules/liquidjs/dist/tokens/identifier-token.d.ts +9 -0
  1457. package/eleventy/node_modules/liquidjs/dist/tokens/index.d.ts +18 -0
  1458. package/eleventy/node_modules/liquidjs/dist/tokens/liquid-tag-token.d.ts +12 -0
  1459. package/eleventy/node_modules/liquidjs/dist/tokens/literal-token.d.ts +11 -0
  1460. package/eleventy/node_modules/liquidjs/dist/tokens/number-token.d.ts +9 -0
  1461. package/eleventy/node_modules/liquidjs/dist/tokens/operator-token.d.ts +38 -0
  1462. package/eleventy/node_modules/liquidjs/dist/tokens/output-token.d.ts +5 -0
  1463. package/eleventy/node_modules/liquidjs/dist/tokens/property-access-token.d.ts +12 -0
  1464. package/eleventy/node_modules/liquidjs/dist/tokens/quoted-token.d.ts +9 -0
  1465. package/eleventy/node_modules/liquidjs/dist/tokens/range-token.d.ts +11 -0
  1466. package/eleventy/node_modules/liquidjs/dist/tokens/tag-token.d.ts +9 -0
  1467. package/eleventy/node_modules/liquidjs/dist/tokens/token.d.ts +12 -0
  1468. package/eleventy/node_modules/liquidjs/dist/tokens/top-level-token.d.ts +4 -0
  1469. package/eleventy/node_modules/liquidjs/dist/tokens/value-token.d.ts +6 -0
  1470. package/eleventy/node_modules/liquidjs/dist/util/assert.d.ts +2 -0
  1471. package/eleventy/node_modules/liquidjs/dist/util/assert.spec.d.ts +1 -0
  1472. package/eleventy/node_modules/liquidjs/dist/util/async.d.ts +2 -0
  1473. package/eleventy/node_modules/liquidjs/dist/util/async.spec.d.ts +1 -0
  1474. package/eleventy/node_modules/liquidjs/dist/util/character.d.ts +10 -0
  1475. package/eleventy/node_modules/liquidjs/dist/util/error.d.ts +35 -0
  1476. package/eleventy/node_modules/liquidjs/dist/util/error.spec.d.ts +1 -0
  1477. package/eleventy/node_modules/liquidjs/dist/util/index.d.ts +12 -0
  1478. package/eleventy/node_modules/liquidjs/dist/util/intl.d.ts +6 -0
  1479. package/eleventy/node_modules/liquidjs/dist/util/limiter.d.ts +8 -0
  1480. package/eleventy/node_modules/liquidjs/dist/util/liquid-date.d.ts +52 -0
  1481. package/eleventy/node_modules/liquidjs/dist/util/liquid-date.spec.d.ts +1 -0
  1482. package/eleventy/node_modules/liquidjs/dist/util/literal.d.ts +11 -0
  1483. package/eleventy/node_modules/liquidjs/dist/util/operator-trie.d.ts +14 -0
  1484. package/eleventy/node_modules/liquidjs/dist/util/performance.d.ts +5 -0
  1485. package/eleventy/node_modules/liquidjs/dist/util/performance.spec.d.ts +1 -0
  1486. package/eleventy/node_modules/liquidjs/dist/util/strftime.d.ts +2 -0
  1487. package/eleventy/node_modules/liquidjs/dist/util/strftime.spec.d.ts +1 -0
  1488. package/eleventy/node_modules/liquidjs/dist/util/type-guards.d.ts +13 -0
  1489. package/eleventy/node_modules/liquidjs/dist/util/type-guards.spec.d.ts +1 -0
  1490. package/eleventy/node_modules/liquidjs/dist/util/underscore.d.ts +39 -0
  1491. package/eleventy/node_modules/liquidjs/dist/util/underscore.spec.d.ts +1 -0
  1492. package/eleventy/node_modules/liquidjs/package.json +165 -0
  1493. package/eleventy/node_modules/list-to-array/LICENSE +22 -0
  1494. package/eleventy/node_modules/list-to-array/README.md +52 -0
  1495. package/eleventy/node_modules/list-to-array/index.js +18 -0
  1496. package/eleventy/node_modules/list-to-array/package.json +32 -0
  1497. package/eleventy/node_modules/list-to-array/tests.js +29 -0
  1498. package/eleventy/node_modules/lru-cache/LICENSE +15 -0
  1499. package/eleventy/node_modules/lru-cache/README.md +331 -0
  1500. package/eleventy/node_modules/lru-cache/dist/commonjs/index.d.ts +1277 -0
  1501. package/eleventy/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -0
  1502. package/eleventy/node_modules/lru-cache/dist/commonjs/index.js +1546 -0
  1503. package/eleventy/node_modules/lru-cache/dist/commonjs/index.js.map +1 -0
  1504. package/eleventy/node_modules/lru-cache/dist/commonjs/index.min.js +2 -0
  1505. package/eleventy/node_modules/lru-cache/dist/commonjs/index.min.js.map +7 -0
  1506. package/eleventy/node_modules/lru-cache/dist/commonjs/package.json +3 -0
  1507. package/eleventy/node_modules/lru-cache/dist/esm/index.d.ts +1277 -0
  1508. package/eleventy/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -0
  1509. package/eleventy/node_modules/lru-cache/dist/esm/index.js +1542 -0
  1510. package/eleventy/node_modules/lru-cache/dist/esm/index.js.map +1 -0
  1511. package/eleventy/node_modules/lru-cache/dist/esm/index.min.js +2 -0
  1512. package/eleventy/node_modules/lru-cache/dist/esm/index.min.js.map +7 -0
  1513. package/eleventy/node_modules/lru-cache/dist/esm/package.json +3 -0
  1514. package/eleventy/node_modules/lru-cache/package.json +116 -0
  1515. package/eleventy/node_modules/luxon/LICENSE.md +7 -0
  1516. package/eleventy/node_modules/luxon/README.md +55 -0
  1517. package/eleventy/node_modules/luxon/package.json +87 -0
  1518. package/eleventy/node_modules/luxon/src/datetime.js +2556 -0
  1519. package/eleventy/node_modules/luxon/src/duration.js +990 -0
  1520. package/eleventy/node_modules/luxon/src/errors.js +61 -0
  1521. package/eleventy/node_modules/luxon/src/impl/conversions.js +206 -0
  1522. package/eleventy/node_modules/luxon/src/impl/diff.js +95 -0
  1523. package/eleventy/node_modules/luxon/src/impl/digits.js +90 -0
  1524. package/eleventy/node_modules/luxon/src/impl/english.js +233 -0
  1525. package/eleventy/node_modules/luxon/src/impl/formats.js +176 -0
  1526. package/eleventy/node_modules/luxon/src/impl/formatter.js +409 -0
  1527. package/eleventy/node_modules/luxon/src/impl/invalid.js +14 -0
  1528. package/eleventy/node_modules/luxon/src/impl/locale.js +546 -0
  1529. package/eleventy/node_modules/luxon/src/impl/regexParser.js +335 -0
  1530. package/eleventy/node_modules/luxon/src/impl/tokenParser.js +505 -0
  1531. package/eleventy/node_modules/luxon/src/impl/util.js +316 -0
  1532. package/eleventy/node_modules/luxon/src/impl/zoneUtil.js +34 -0
  1533. package/eleventy/node_modules/luxon/src/info.js +205 -0
  1534. package/eleventy/node_modules/luxon/src/interval.js +657 -0
  1535. package/eleventy/node_modules/luxon/src/luxon.js +26 -0
  1536. package/eleventy/node_modules/luxon/src/package.json +4 -0
  1537. package/eleventy/node_modules/luxon/src/settings.js +180 -0
  1538. package/eleventy/node_modules/luxon/src/zone.js +97 -0
  1539. package/eleventy/node_modules/luxon/src/zones/IANAZone.js +231 -0
  1540. package/eleventy/node_modules/luxon/src/zones/fixedOffsetZone.js +150 -0
  1541. package/eleventy/node_modules/luxon/src/zones/invalidZone.js +53 -0
  1542. package/eleventy/node_modules/luxon/src/zones/systemZone.js +61 -0
  1543. package/eleventy/node_modules/markdown-it/LICENSE +22 -0
  1544. package/eleventy/node_modules/markdown-it/README.md +324 -0
  1545. package/eleventy/node_modules/markdown-it/bin/markdown-it.mjs +107 -0
  1546. package/eleventy/node_modules/markdown-it/dist/index.cjs.js +5540 -0
  1547. package/eleventy/node_modules/markdown-it/dist/markdown-it.js +6963 -0
  1548. package/eleventy/node_modules/markdown-it/dist/markdown-it.min.js +2 -0
  1549. package/eleventy/node_modules/markdown-it/index.mjs +1 -0
  1550. package/eleventy/node_modules/markdown-it/lib/common/html_blocks.mjs +67 -0
  1551. package/eleventy/node_modules/markdown-it/lib/common/html_re.mjs +25 -0
  1552. package/eleventy/node_modules/markdown-it/lib/common/utils.mjs +304 -0
  1553. package/eleventy/node_modules/markdown-it/lib/helpers/index.mjs +11 -0
  1554. package/eleventy/node_modules/markdown-it/lib/helpers/parse_link_destination.mjs +77 -0
  1555. package/eleventy/node_modules/markdown-it/lib/helpers/parse_link_label.mjs +49 -0
  1556. package/eleventy/node_modules/markdown-it/lib/helpers/parse_link_title.mjs +66 -0
  1557. package/eleventy/node_modules/markdown-it/lib/index.mjs +565 -0
  1558. package/eleventy/node_modules/markdown-it/lib/parser_block.mjs +134 -0
  1559. package/eleventy/node_modules/markdown-it/lib/parser_core.mjs +62 -0
  1560. package/eleventy/node_modules/markdown-it/lib/parser_inline.mjs +197 -0
  1561. package/eleventy/node_modules/markdown-it/lib/presets/commonmark.mjs +88 -0
  1562. package/eleventy/node_modules/markdown-it/lib/presets/default.mjs +47 -0
  1563. package/eleventy/node_modules/markdown-it/lib/presets/zero.mjs +70 -0
  1564. package/eleventy/node_modules/markdown-it/lib/renderer.mjs +322 -0
  1565. package/eleventy/node_modules/markdown-it/lib/ruler.mjs +340 -0
  1566. package/eleventy/node_modules/markdown-it/lib/rules_block/blockquote.mjs +209 -0
  1567. package/eleventy/node_modules/markdown-it/lib/rules_block/code.mjs +30 -0
  1568. package/eleventy/node_modules/markdown-it/lib/rules_block/fence.mjs +94 -0
  1569. package/eleventy/node_modules/markdown-it/lib/rules_block/heading.mjs +51 -0
  1570. package/eleventy/node_modules/markdown-it/lib/rules_block/hr.mjs +40 -0
  1571. package/eleventy/node_modules/markdown-it/lib/rules_block/html_block.mjs +69 -0
  1572. package/eleventy/node_modules/markdown-it/lib/rules_block/lheading.mjs +82 -0
  1573. package/eleventy/node_modules/markdown-it/lib/rules_block/list.mjs +331 -0
  1574. package/eleventy/node_modules/markdown-it/lib/rules_block/paragraph.mjs +46 -0
  1575. package/eleventy/node_modules/markdown-it/lib/rules_block/reference.mjs +212 -0
  1576. package/eleventy/node_modules/markdown-it/lib/rules_block/state_block.mjs +220 -0
  1577. package/eleventy/node_modules/markdown-it/lib/rules_block/table.mjs +228 -0
  1578. package/eleventy/node_modules/markdown-it/lib/rules_core/block.mjs +13 -0
  1579. package/eleventy/node_modules/markdown-it/lib/rules_core/inline.mjs +11 -0
  1580. package/eleventy/node_modules/markdown-it/lib/rules_core/linkify.mjs +134 -0
  1581. package/eleventy/node_modules/markdown-it/lib/rules_core/normalize.mjs +17 -0
  1582. package/eleventy/node_modules/markdown-it/lib/rules_core/replacements.mjs +101 -0
  1583. package/eleventy/node_modules/markdown-it/lib/rules_core/smartquotes.mjs +193 -0
  1584. package/eleventy/node_modules/markdown-it/lib/rules_core/state_core.mjs +17 -0
  1585. package/eleventy/node_modules/markdown-it/lib/rules_core/text_join.mjs +43 -0
  1586. package/eleventy/node_modules/markdown-it/lib/rules_inline/autolink.mjs +72 -0
  1587. package/eleventy/node_modules/markdown-it/lib/rules_inline/backticks.mjs +60 -0
  1588. package/eleventy/node_modules/markdown-it/lib/rules_inline/balance_pairs.mjs +124 -0
  1589. package/eleventy/node_modules/markdown-it/lib/rules_inline/emphasis.mjs +123 -0
  1590. package/eleventy/node_modules/markdown-it/lib/rules_inline/entity.mjs +51 -0
  1591. package/eleventy/node_modules/markdown-it/lib/rules_inline/escape.mjs +69 -0
  1592. package/eleventy/node_modules/markdown-it/lib/rules_inline/fragments_join.mjs +38 -0
  1593. package/eleventy/node_modules/markdown-it/lib/rules_inline/html_inline.mjs +50 -0
  1594. package/eleventy/node_modules/markdown-it/lib/rules_inline/image.mjs +138 -0
  1595. package/eleventy/node_modules/markdown-it/lib/rules_inline/link.mjs +139 -0
  1596. package/eleventy/node_modules/markdown-it/lib/rules_inline/linkify.mjs +56 -0
  1597. package/eleventy/node_modules/markdown-it/lib/rules_inline/newline.mjs +42 -0
  1598. package/eleventy/node_modules/markdown-it/lib/rules_inline/state_inline.mjs +123 -0
  1599. package/eleventy/node_modules/markdown-it/lib/rules_inline/strikethrough.mjs +127 -0
  1600. package/eleventy/node_modules/markdown-it/lib/rules_inline/text.mjs +86 -0
  1601. package/eleventy/node_modules/markdown-it/lib/token.mjs +191 -0
  1602. package/eleventy/node_modules/markdown-it/node_modules/entities/LICENSE +11 -0
  1603. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode.d.ts +211 -0
  1604. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode.d.ts.map +1 -0
  1605. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode.js +536 -0
  1606. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode.js.map +1 -0
  1607. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode_codepoint.d.ts +19 -0
  1608. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
  1609. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode_codepoint.js +76 -0
  1610. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/decode_codepoint.js.map +1 -0
  1611. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/encode.d.ts +22 -0
  1612. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/encode.d.ts.map +1 -0
  1613. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/encode.js +77 -0
  1614. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/encode.js.map +1 -0
  1615. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/escape.d.ts +43 -0
  1616. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/escape.d.ts.map +1 -0
  1617. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/escape.js +122 -0
  1618. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/escape.js.map +1 -0
  1619. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode.d.ts +211 -0
  1620. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode.d.ts.map +1 -0
  1621. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode.js +496 -0
  1622. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode.js.map +1 -0
  1623. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode_codepoint.d.ts +19 -0
  1624. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +1 -0
  1625. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode_codepoint.js +71 -0
  1626. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/decode_codepoint.js.map +1 -0
  1627. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/encode.d.ts +22 -0
  1628. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/encode.d.ts.map +1 -0
  1629. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/encode.js +69 -0
  1630. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/encode.js.map +1 -0
  1631. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/escape.d.ts +43 -0
  1632. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/escape.d.ts.map +1 -0
  1633. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/escape.js +116 -0
  1634. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/escape.js.map +1 -0
  1635. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +3 -0
  1636. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +1 -0
  1637. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
  1638. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-html.js.map +1 -0
  1639. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +3 -0
  1640. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +1 -0
  1641. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
  1642. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +1 -0
  1643. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/encode-html.d.ts +8 -0
  1644. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +1 -0
  1645. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/encode-html.js +10 -0
  1646. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/generated/encode-html.js.map +1 -0
  1647. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/index.d.ts +96 -0
  1648. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/index.d.ts.map +1 -0
  1649. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/index.js +99 -0
  1650. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/index.js.map +1 -0
  1651. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/esm/package.json +1 -0
  1652. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
  1653. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
  1654. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-html.js +9 -0
  1655. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-html.js.map +1 -0
  1656. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
  1657. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
  1658. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
  1659. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/decode-data-xml.js.map +1 -0
  1660. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/encode-html.d.ts +8 -0
  1661. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/encode-html.d.ts.map +1 -0
  1662. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/encode-html.js +12 -0
  1663. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/generated/encode-html.js.map +1 -0
  1664. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/index.d.ts +96 -0
  1665. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/index.d.ts.map +1 -0
  1666. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/index.js +126 -0
  1667. package/eleventy/node_modules/markdown-it/node_modules/entities/lib/index.js.map +1 -0
  1668. package/eleventy/node_modules/markdown-it/node_modules/entities/package.json +90 -0
  1669. package/eleventy/node_modules/markdown-it/node_modules/entities/readme.md +122 -0
  1670. package/eleventy/node_modules/markdown-it/package.json +92 -0
  1671. package/eleventy/node_modules/maximatch/index.js +39 -0
  1672. package/eleventy/node_modules/maximatch/license +21 -0
  1673. package/eleventy/node_modules/maximatch/package.json +44 -0
  1674. package/eleventy/node_modules/maximatch/readme.md +71 -0
  1675. package/eleventy/node_modules/mdurl/LICENSE +45 -0
  1676. package/eleventy/node_modules/mdurl/README.md +102 -0
  1677. package/eleventy/node_modules/mdurl/index.mjs +11 -0
  1678. package/eleventy/node_modules/mdurl/lib/decode.mjs +112 -0
  1679. package/eleventy/node_modules/mdurl/lib/encode.mjs +89 -0
  1680. package/eleventy/node_modules/mdurl/lib/format.mjs +21 -0
  1681. package/eleventy/node_modules/mdurl/lib/parse.mjs +308 -0
  1682. package/eleventy/node_modules/mdurl/package.json +37 -0
  1683. package/eleventy/node_modules/merge2/LICENSE +21 -0
  1684. package/eleventy/node_modules/merge2/README.md +144 -0
  1685. package/eleventy/node_modules/merge2/index.js +144 -0
  1686. package/eleventy/node_modules/merge2/package.json +43 -0
  1687. package/eleventy/node_modules/micromatch/LICENSE +21 -0
  1688. package/eleventy/node_modules/micromatch/README.md +1024 -0
  1689. package/eleventy/node_modules/micromatch/index.js +474 -0
  1690. package/eleventy/node_modules/micromatch/package.json +119 -0
  1691. package/eleventy/node_modules/mime/CHANGELOG.md +312 -0
  1692. package/eleventy/node_modules/mime/LICENSE +21 -0
  1693. package/eleventy/node_modules/mime/Mime.js +97 -0
  1694. package/eleventy/node_modules/mime/README.md +178 -0
  1695. package/eleventy/node_modules/mime/cli.js +46 -0
  1696. package/eleventy/node_modules/mime/index.js +4 -0
  1697. package/eleventy/node_modules/mime/lite.js +4 -0
  1698. package/eleventy/node_modules/mime/package.json +52 -0
  1699. package/eleventy/node_modules/mime/types/other.js +1 -0
  1700. package/eleventy/node_modules/mime/types/standard.js +1 -0
  1701. package/eleventy/node_modules/mime-db/HISTORY.md +507 -0
  1702. package/eleventy/node_modules/mime-db/LICENSE +23 -0
  1703. package/eleventy/node_modules/mime-db/README.md +100 -0
  1704. package/eleventy/node_modules/mime-db/db.json +8519 -0
  1705. package/eleventy/node_modules/mime-db/index.js +12 -0
  1706. package/eleventy/node_modules/mime-db/package.json +60 -0
  1707. package/eleventy/node_modules/mime-types/HISTORY.md +397 -0
  1708. package/eleventy/node_modules/mime-types/LICENSE +23 -0
  1709. package/eleventy/node_modules/mime-types/README.md +113 -0
  1710. package/eleventy/node_modules/mime-types/index.js +188 -0
  1711. package/eleventy/node_modules/mime-types/package.json +44 -0
  1712. package/eleventy/node_modules/minimatch/LICENSE +15 -0
  1713. package/eleventy/node_modules/minimatch/README.md +230 -0
  1714. package/eleventy/node_modules/minimatch/minimatch.js +947 -0
  1715. package/eleventy/node_modules/minimatch/package.json +33 -0
  1716. package/eleventy/node_modules/minimist/.eslintrc +29 -0
  1717. package/eleventy/node_modules/minimist/.github/FUNDING.yml +12 -0
  1718. package/eleventy/node_modules/minimist/.nycrc +14 -0
  1719. package/eleventy/node_modules/minimist/CHANGELOG.md +298 -0
  1720. package/eleventy/node_modules/minimist/LICENSE +18 -0
  1721. package/eleventy/node_modules/minimist/README.md +121 -0
  1722. package/eleventy/node_modules/minimist/example/parse.js +4 -0
  1723. package/eleventy/node_modules/minimist/index.js +263 -0
  1724. package/eleventy/node_modules/minimist/package.json +75 -0
  1725. package/eleventy/node_modules/minimist/test/all_bool.js +34 -0
  1726. package/eleventy/node_modules/minimist/test/bool.js +177 -0
  1727. package/eleventy/node_modules/minimist/test/dash.js +43 -0
  1728. package/eleventy/node_modules/minimist/test/default_bool.js +37 -0
  1729. package/eleventy/node_modules/minimist/test/dotted.js +24 -0
  1730. package/eleventy/node_modules/minimist/test/kv_short.js +32 -0
  1731. package/eleventy/node_modules/minimist/test/long.js +33 -0
  1732. package/eleventy/node_modules/minimist/test/num.js +38 -0
  1733. package/eleventy/node_modules/minimist/test/parse.js +209 -0
  1734. package/eleventy/node_modules/minimist/test/parse_modified.js +11 -0
  1735. package/eleventy/node_modules/minimist/test/proto.js +64 -0
  1736. package/eleventy/node_modules/minimist/test/short.js +69 -0
  1737. package/eleventy/node_modules/minimist/test/stop_early.js +17 -0
  1738. package/eleventy/node_modules/minimist/test/unknown.js +104 -0
  1739. package/eleventy/node_modules/minimist/test/whitespace.js +10 -0
  1740. package/eleventy/node_modules/minipass/LICENSE +15 -0
  1741. package/eleventy/node_modules/minipass/README.md +825 -0
  1742. package/eleventy/node_modules/minipass/dist/commonjs/index.d.ts +549 -0
  1743. package/eleventy/node_modules/minipass/dist/commonjs/index.d.ts.map +1 -0
  1744. package/eleventy/node_modules/minipass/dist/commonjs/index.js +1028 -0
  1745. package/eleventy/node_modules/minipass/dist/commonjs/index.js.map +1 -0
  1746. package/eleventy/node_modules/minipass/dist/commonjs/package.json +3 -0
  1747. package/eleventy/node_modules/minipass/dist/esm/index.d.ts +549 -0
  1748. package/eleventy/node_modules/minipass/dist/esm/index.d.ts.map +1 -0
  1749. package/eleventy/node_modules/minipass/dist/esm/index.js +1018 -0
  1750. package/eleventy/node_modules/minipass/dist/esm/index.js.map +1 -0
  1751. package/eleventy/node_modules/minipass/dist/esm/package.json +3 -0
  1752. package/eleventy/node_modules/minipass/package.json +82 -0
  1753. package/eleventy/node_modules/mkdirp/LICENSE +21 -0
  1754. package/eleventy/node_modules/mkdirp/dist/cjs/package.json +91 -0
  1755. package/eleventy/node_modules/mkdirp/dist/cjs/src/bin.d.ts +3 -0
  1756. package/eleventy/node_modules/mkdirp/dist/cjs/src/bin.d.ts.map +1 -0
  1757. package/eleventy/node_modules/mkdirp/dist/cjs/src/bin.js +80 -0
  1758. package/eleventy/node_modules/mkdirp/dist/cjs/src/bin.js.map +1 -0
  1759. package/eleventy/node_modules/mkdirp/dist/cjs/src/find-made.d.ts +4 -0
  1760. package/eleventy/node_modules/mkdirp/dist/cjs/src/find-made.d.ts.map +1 -0
  1761. package/eleventy/node_modules/mkdirp/dist/cjs/src/find-made.js +35 -0
  1762. package/eleventy/node_modules/mkdirp/dist/cjs/src/find-made.js.map +1 -0
  1763. package/eleventy/node_modules/mkdirp/dist/cjs/src/index.d.ts +39 -0
  1764. package/eleventy/node_modules/mkdirp/dist/cjs/src/index.d.ts.map +1 -0
  1765. package/eleventy/node_modules/mkdirp/dist/cjs/src/index.js +53 -0
  1766. package/eleventy/node_modules/mkdirp/dist/cjs/src/index.js.map +1 -0
  1767. package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-manual.d.ts +6 -0
  1768. package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-manual.d.ts.map +1 -0
  1769. package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-manual.js +79 -0
  1770. package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-manual.js.map +1 -0
  1771. package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-native.d.ts +6 -0
  1772. package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-native.d.ts.map +1 -0
  1773. package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-native.js +50 -0
  1774. package/eleventy/node_modules/mkdirp/dist/cjs/src/mkdirp-native.js.map +1 -0
  1775. package/eleventy/node_modules/mkdirp/dist/cjs/src/opts-arg.d.ts +42 -0
  1776. package/eleventy/node_modules/mkdirp/dist/cjs/src/opts-arg.d.ts.map +1 -0
  1777. package/eleventy/node_modules/mkdirp/dist/cjs/src/opts-arg.js +38 -0
  1778. package/eleventy/node_modules/mkdirp/dist/cjs/src/opts-arg.js.map +1 -0
  1779. package/eleventy/node_modules/mkdirp/dist/cjs/src/path-arg.d.ts +2 -0
  1780. package/eleventy/node_modules/mkdirp/dist/cjs/src/path-arg.d.ts.map +1 -0
  1781. package/eleventy/node_modules/mkdirp/dist/cjs/src/path-arg.js +28 -0
  1782. package/eleventy/node_modules/mkdirp/dist/cjs/src/path-arg.js.map +1 -0
  1783. package/eleventy/node_modules/mkdirp/dist/cjs/src/use-native.d.ts +6 -0
  1784. package/eleventy/node_modules/mkdirp/dist/cjs/src/use-native.d.ts.map +1 -0
  1785. package/eleventy/node_modules/mkdirp/dist/cjs/src/use-native.js +17 -0
  1786. package/eleventy/node_modules/mkdirp/dist/cjs/src/use-native.js.map +1 -0
  1787. package/eleventy/node_modules/mkdirp/dist/mjs/find-made.d.ts +4 -0
  1788. package/eleventy/node_modules/mkdirp/dist/mjs/find-made.d.ts.map +1 -0
  1789. package/eleventy/node_modules/mkdirp/dist/mjs/find-made.js +30 -0
  1790. package/eleventy/node_modules/mkdirp/dist/mjs/find-made.js.map +1 -0
  1791. package/eleventy/node_modules/mkdirp/dist/mjs/index.d.ts +39 -0
  1792. package/eleventy/node_modules/mkdirp/dist/mjs/index.d.ts.map +1 -0
  1793. package/eleventy/node_modules/mkdirp/dist/mjs/index.js +43 -0
  1794. package/eleventy/node_modules/mkdirp/dist/mjs/index.js.map +1 -0
  1795. package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-manual.d.ts +6 -0
  1796. package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-manual.d.ts.map +1 -0
  1797. package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-manual.js +75 -0
  1798. package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-manual.js.map +1 -0
  1799. package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-native.d.ts +6 -0
  1800. package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-native.d.ts.map +1 -0
  1801. package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-native.js +46 -0
  1802. package/eleventy/node_modules/mkdirp/dist/mjs/mkdirp-native.js.map +1 -0
  1803. package/eleventy/node_modules/mkdirp/dist/mjs/opts-arg.d.ts +42 -0
  1804. package/eleventy/node_modules/mkdirp/dist/mjs/opts-arg.d.ts.map +1 -0
  1805. package/eleventy/node_modules/mkdirp/dist/mjs/opts-arg.js +34 -0
  1806. package/eleventy/node_modules/mkdirp/dist/mjs/opts-arg.js.map +1 -0
  1807. package/eleventy/node_modules/mkdirp/dist/mjs/package.json +3 -0
  1808. package/eleventy/node_modules/mkdirp/dist/mjs/path-arg.d.ts +2 -0
  1809. package/eleventy/node_modules/mkdirp/dist/mjs/path-arg.d.ts.map +1 -0
  1810. package/eleventy/node_modules/mkdirp/dist/mjs/path-arg.js +24 -0
  1811. package/eleventy/node_modules/mkdirp/dist/mjs/path-arg.js.map +1 -0
  1812. package/eleventy/node_modules/mkdirp/dist/mjs/use-native.d.ts +6 -0
  1813. package/eleventy/node_modules/mkdirp/dist/mjs/use-native.d.ts.map +1 -0
  1814. package/eleventy/node_modules/mkdirp/dist/mjs/use-native.js +14 -0
  1815. package/eleventy/node_modules/mkdirp/dist/mjs/use-native.js.map +1 -0
  1816. package/eleventy/node_modules/mkdirp/package.json +91 -0
  1817. package/eleventy/node_modules/mkdirp/readme.markdown +281 -0
  1818. package/eleventy/node_modules/moo/LICENSE +29 -0
  1819. package/eleventy/node_modules/moo/README.md +383 -0
  1820. package/eleventy/node_modules/moo/moo.js +642 -0
  1821. package/eleventy/node_modules/moo/package.json +29 -0
  1822. package/eleventy/node_modules/morphdom/CHANGELOG.md +243 -0
  1823. package/eleventy/node_modules/morphdom/LICENSE +21 -0
  1824. package/eleventy/node_modules/morphdom/README.md +260 -0
  1825. package/eleventy/node_modules/morphdom/dist/morphdom-esm.js +769 -0
  1826. package/eleventy/node_modules/morphdom/dist/morphdom-factory.js +705 -0
  1827. package/eleventy/node_modules/morphdom/dist/morphdom-umd.js +777 -0
  1828. package/eleventy/node_modules/morphdom/dist/morphdom-umd.min.js +1 -0
  1829. package/eleventy/node_modules/morphdom/dist/morphdom.js +771 -0
  1830. package/eleventy/node_modules/morphdom/docs/old-benchmark.md +204 -0
  1831. package/eleventy/node_modules/morphdom/docs/virtual-dom.md +38 -0
  1832. package/eleventy/node_modules/morphdom/factory.js +1 -0
  1833. package/eleventy/node_modules/morphdom/index.d.ts +19 -0
  1834. package/eleventy/node_modules/morphdom/package.json +63 -0
  1835. package/eleventy/node_modules/morphdom/src/index.js +6 -0
  1836. package/eleventy/node_modules/morphdom/src/morphAttrs.js +63 -0
  1837. package/eleventy/node_modules/morphdom/src/morphdom.js +482 -0
  1838. package/eleventy/node_modules/morphdom/src/specialElHandlers.js +110 -0
  1839. package/eleventy/node_modules/morphdom/src/util.js +113 -0
  1840. package/eleventy/node_modules/ms/index.js +162 -0
  1841. package/eleventy/node_modules/ms/license.md +21 -0
  1842. package/eleventy/node_modules/ms/package.json +38 -0
  1843. package/eleventy/node_modules/ms/readme.md +59 -0
  1844. package/eleventy/node_modules/node-retrieve-globals/.github/workflows/ci.yml +23 -0
  1845. package/eleventy/node_modules/node-retrieve-globals/LICENSE +21 -0
  1846. package/eleventy/node_modules/node-retrieve-globals/README.md +91 -0
  1847. package/eleventy/node_modules/node-retrieve-globals/package.json +30 -0
  1848. package/eleventy/node_modules/node-retrieve-globals/retrieveGlobals.js +374 -0
  1849. package/eleventy/node_modules/node-retrieve-globals/test/test.js +270 -0
  1850. package/eleventy/node_modules/node-retrieve-globals/util/getWorkingDirectory.js +18 -0
  1851. package/eleventy/node_modules/node-retrieve-globals/util/vmModules.js +23 -0
  1852. package/eleventy/node_modules/normalize-path/LICENSE +21 -0
  1853. package/eleventy/node_modules/normalize-path/README.md +127 -0
  1854. package/eleventy/node_modules/normalize-path/index.js +35 -0
  1855. package/eleventy/node_modules/normalize-path/package.json +77 -0
  1856. package/eleventy/node_modules/nunjucks/LICENSE +26 -0
  1857. package/eleventy/node_modules/nunjucks/README.md +58 -0
  1858. package/eleventy/node_modules/nunjucks/bin/precompile +58 -0
  1859. package/eleventy/node_modules/nunjucks/bin/precompile.cmd +5 -0
  1860. package/eleventy/node_modules/nunjucks/browser/nunjucks-slim.js +3709 -0
  1861. package/eleventy/node_modules/nunjucks/browser/nunjucks-slim.js.map +1 -0
  1862. package/eleventy/node_modules/nunjucks/browser/nunjucks-slim.min.js +3 -0
  1863. package/eleventy/node_modules/nunjucks/browser/nunjucks-slim.min.js.map +1 -0
  1864. package/eleventy/node_modules/nunjucks/browser/nunjucks.js +7021 -0
  1865. package/eleventy/node_modules/nunjucks/browser/nunjucks.js.map +1 -0
  1866. package/eleventy/node_modules/nunjucks/browser/nunjucks.min.js +3 -0
  1867. package/eleventy/node_modules/nunjucks/browser/nunjucks.min.js.map +1 -0
  1868. package/eleventy/node_modules/nunjucks/index.js +82 -0
  1869. package/eleventy/node_modules/nunjucks/node_modules/commander/CHANGELOG.md +385 -0
  1870. package/eleventy/node_modules/nunjucks/node_modules/commander/LICENSE +22 -0
  1871. package/eleventy/node_modules/nunjucks/node_modules/commander/Readme.md +737 -0
  1872. package/eleventy/node_modules/nunjucks/node_modules/commander/index.js +1756 -0
  1873. package/eleventy/node_modules/nunjucks/node_modules/commander/package.json +48 -0
  1874. package/eleventy/node_modules/nunjucks/node_modules/commander/typings/index.d.ts +386 -0
  1875. package/eleventy/node_modules/nunjucks/package.json +112 -0
  1876. package/eleventy/node_modules/nunjucks/src/compiler.js +1027 -0
  1877. package/eleventy/node_modules/nunjucks/src/environment.js +548 -0
  1878. package/eleventy/node_modules/nunjucks/src/express-app.js +23 -0
  1879. package/eleventy/node_modules/nunjucks/src/filters.js +546 -0
  1880. package/eleventy/node_modules/nunjucks/src/globals.js +65 -0
  1881. package/eleventy/node_modules/nunjucks/src/jinja-compat.js +293 -0
  1882. package/eleventy/node_modules/nunjucks/src/lexer.js +474 -0
  1883. package/eleventy/node_modules/nunjucks/src/lib.js +325 -0
  1884. package/eleventy/node_modules/nunjucks/src/loader.js +21 -0
  1885. package/eleventy/node_modules/nunjucks/src/loaders.js +5 -0
  1886. package/eleventy/node_modules/nunjucks/src/node-loaders.js +139 -0
  1887. package/eleventy/node_modules/nunjucks/src/nodes.js +350 -0
  1888. package/eleventy/node_modules/nunjucks/src/object.js +100 -0
  1889. package/eleventy/node_modules/nunjucks/src/parser.js +1028 -0
  1890. package/eleventy/node_modules/nunjucks/src/precompile-global.js +17 -0
  1891. package/eleventy/node_modules/nunjucks/src/precompile.js +108 -0
  1892. package/eleventy/node_modules/nunjucks/src/precompiled-loader.js +31 -0
  1893. package/eleventy/node_modules/nunjucks/src/runtime.js +333 -0
  1894. package/eleventy/node_modules/nunjucks/src/tests.js +265 -0
  1895. package/eleventy/node_modules/nunjucks/src/transformer.js +166 -0
  1896. package/eleventy/node_modules/nunjucks/src/web-loaders.js +94 -0
  1897. package/eleventy/node_modules/on-finished/HISTORY.md +98 -0
  1898. package/eleventy/node_modules/on-finished/LICENSE +23 -0
  1899. package/eleventy/node_modules/on-finished/README.md +162 -0
  1900. package/eleventy/node_modules/on-finished/index.js +234 -0
  1901. package/eleventy/node_modules/on-finished/package.json +39 -0
  1902. package/eleventy/node_modules/package-json-from-dist/LICENSE.md +63 -0
  1903. package/eleventy/node_modules/package-json-from-dist/README.md +110 -0
  1904. package/eleventy/node_modules/package-json-from-dist/dist/commonjs/index.d.ts +89 -0
  1905. package/eleventy/node_modules/package-json-from-dist/dist/commonjs/index.d.ts.map +1 -0
  1906. package/eleventy/node_modules/package-json-from-dist/dist/commonjs/index.js +134 -0
  1907. package/eleventy/node_modules/package-json-from-dist/dist/commonjs/index.js.map +1 -0
  1908. package/eleventy/node_modules/package-json-from-dist/dist/commonjs/package.json +3 -0
  1909. package/eleventy/node_modules/package-json-from-dist/dist/esm/index.d.ts +89 -0
  1910. package/eleventy/node_modules/package-json-from-dist/dist/esm/index.d.ts.map +1 -0
  1911. package/eleventy/node_modules/package-json-from-dist/dist/esm/index.js +129 -0
  1912. package/eleventy/node_modules/package-json-from-dist/dist/esm/index.js.map +1 -0
  1913. package/eleventy/node_modules/package-json-from-dist/dist/esm/package.json +3 -0
  1914. package/eleventy/node_modules/package-json-from-dist/package.json +68 -0
  1915. package/eleventy/node_modules/parse-srcset/.jscs.json +83 -0
  1916. package/eleventy/node_modules/parse-srcset/.jshintrc +15 -0
  1917. package/eleventy/node_modules/parse-srcset/LICENSE +22 -0
  1918. package/eleventy/node_modules/parse-srcset/README.md +19 -0
  1919. package/eleventy/node_modules/parse-srcset/package.json +25 -0
  1920. package/eleventy/node_modules/parse-srcset/src/parse-srcset.js +330 -0
  1921. package/eleventy/node_modules/parse-srcset/tests/he.js +329 -0
  1922. package/eleventy/node_modules/parse-srcset/tests/intern.js +74 -0
  1923. package/eleventy/node_modules/parse-srcset/tests/unit/ps.js +345 -0
  1924. package/eleventy/node_modules/parseurl/HISTORY.md +58 -0
  1925. package/eleventy/node_modules/parseurl/LICENSE +24 -0
  1926. package/eleventy/node_modules/parseurl/README.md +133 -0
  1927. package/eleventy/node_modules/parseurl/index.js +158 -0
  1928. package/eleventy/node_modules/parseurl/package.json +40 -0
  1929. package/eleventy/node_modules/path-key/index.d.ts +40 -0
  1930. package/eleventy/node_modules/path-key/index.js +16 -0
  1931. package/eleventy/node_modules/path-key/license +9 -0
  1932. package/eleventy/node_modules/path-key/package.json +39 -0
  1933. package/eleventy/node_modules/path-key/readme.md +61 -0
  1934. package/eleventy/node_modules/path-scurry/LICENSE.md +55 -0
  1935. package/eleventy/node_modules/path-scurry/README.md +636 -0
  1936. package/eleventy/node_modules/path-scurry/dist/commonjs/index.d.ts +1116 -0
  1937. package/eleventy/node_modules/path-scurry/dist/commonjs/index.d.ts.map +1 -0
  1938. package/eleventy/node_modules/path-scurry/dist/commonjs/index.js +2014 -0
  1939. package/eleventy/node_modules/path-scurry/dist/commonjs/index.js.map +1 -0
  1940. package/eleventy/node_modules/path-scurry/dist/commonjs/package.json +3 -0
  1941. package/eleventy/node_modules/path-scurry/dist/esm/index.d.ts +1116 -0
  1942. package/eleventy/node_modules/path-scurry/dist/esm/index.d.ts.map +1 -0
  1943. package/eleventy/node_modules/path-scurry/dist/esm/index.js +1979 -0
  1944. package/eleventy/node_modules/path-scurry/dist/esm/index.js.map +1 -0
  1945. package/eleventy/node_modules/path-scurry/dist/esm/package.json +3 -0
  1946. package/eleventy/node_modules/path-scurry/package.json +89 -0
  1947. package/eleventy/node_modules/picomatch/CHANGELOG.md +136 -0
  1948. package/eleventy/node_modules/picomatch/LICENSE +21 -0
  1949. package/eleventy/node_modules/picomatch/README.md +708 -0
  1950. package/eleventy/node_modules/picomatch/index.js +3 -0
  1951. package/eleventy/node_modules/picomatch/lib/constants.js +179 -0
  1952. package/eleventy/node_modules/picomatch/lib/parse.js +1091 -0
  1953. package/eleventy/node_modules/picomatch/lib/picomatch.js +342 -0
  1954. package/eleventy/node_modules/picomatch/lib/scan.js +391 -0
  1955. package/eleventy/node_modules/picomatch/lib/utils.js +64 -0
  1956. package/eleventy/node_modules/picomatch/package.json +81 -0
  1957. package/eleventy/node_modules/pify/index.js +68 -0
  1958. package/eleventy/node_modules/pify/license +21 -0
  1959. package/eleventy/node_modules/pify/package.json +48 -0
  1960. package/eleventy/node_modules/pify/readme.md +119 -0
  1961. package/eleventy/node_modules/please-upgrade-node/.eslintrc.js +12 -0
  1962. package/eleventy/node_modules/please-upgrade-node/.github/FUNDING.yml +1 -0
  1963. package/eleventy/node_modules/please-upgrade-node/LICENSE +21 -0
  1964. package/eleventy/node_modules/please-upgrade-node/README.md +72 -0
  1965. package/eleventy/node_modules/please-upgrade-node/index.d.ts +11 -0
  1966. package/eleventy/node_modules/please-upgrade-node/index.js +25 -0
  1967. package/eleventy/node_modules/please-upgrade-node/package.json +46 -0
  1968. package/eleventy/node_modules/posthtml/lib/api.js +145 -0
  1969. package/eleventy/node_modules/posthtml/lib/index.js +323 -0
  1970. package/eleventy/node_modules/posthtml/license +21 -0
  1971. package/eleventy/node_modules/posthtml/package.json +64 -0
  1972. package/eleventy/node_modules/posthtml/readme.md +412 -0
  1973. package/eleventy/node_modules/posthtml/types/posthtml.d.ts +108 -0
  1974. package/eleventy/node_modules/posthtml-match-helper/LICENSE +21 -0
  1975. package/eleventy/node_modules/posthtml-match-helper/README.md +84 -0
  1976. package/eleventy/node_modules/posthtml-match-helper/lib/index.d.ts +10 -0
  1977. package/eleventy/node_modules/posthtml-match-helper/lib/index.js +149 -0
  1978. package/eleventy/node_modules/posthtml-match-helper/package.json +41 -0
  1979. package/eleventy/node_modules/posthtml-parser/dist/chunk.2UQLUWPH.js +1 -0
  1980. package/eleventy/node_modules/posthtml-parser/dist/index.d.ts +27 -0
  1981. package/eleventy/node_modules/posthtml-parser/dist/index.js +1 -0
  1982. package/eleventy/node_modules/posthtml-parser/dist/location-tracker.d.ts +17 -0
  1983. package/eleventy/node_modules/posthtml-parser/dist/location-tracker.js +1 -0
  1984. package/eleventy/node_modules/posthtml-parser/license +22 -0
  1985. package/eleventy/node_modules/posthtml-parser/package.json +69 -0
  1986. package/eleventy/node_modules/posthtml-parser/readme.md +130 -0
  1987. package/eleventy/node_modules/posthtml-render/changelog.md +310 -0
  1988. package/eleventy/node_modules/posthtml-render/dist/index.d.ts +67 -0
  1989. package/eleventy/node_modules/posthtml-render/dist/index.js +1 -0
  1990. package/eleventy/node_modules/posthtml-render/license +22 -0
  1991. package/eleventy/node_modules/posthtml-render/package.json +55 -0
  1992. package/eleventy/node_modules/posthtml-render/readme.md +225 -0
  1993. package/eleventy/node_modules/promise/.jshintrc +5 -0
  1994. package/eleventy/node_modules/promise/LICENSE +19 -0
  1995. package/eleventy/node_modules/promise/Readme.md +231 -0
  1996. package/eleventy/node_modules/promise/build.js +69 -0
  1997. package/eleventy/node_modules/promise/core.js +5 -0
  1998. package/eleventy/node_modules/promise/domains/core.js +213 -0
  1999. package/eleventy/node_modules/promise/domains/done.js +13 -0
  2000. package/eleventy/node_modules/promise/domains/es6-extensions.js +107 -0
  2001. package/eleventy/node_modules/promise/domains/finally.js +16 -0
  2002. package/eleventy/node_modules/promise/domains/index.js +8 -0
  2003. package/eleventy/node_modules/promise/domains/node-extensions.js +130 -0
  2004. package/eleventy/node_modules/promise/domains/rejection-tracking.js +113 -0
  2005. package/eleventy/node_modules/promise/domains/synchronous.js +62 -0
  2006. package/eleventy/node_modules/promise/index.d.ts +256 -0
  2007. package/eleventy/node_modules/promise/index.js +3 -0
  2008. package/eleventy/node_modules/promise/lib/core.js +213 -0
  2009. package/eleventy/node_modules/promise/lib/done.js +13 -0
  2010. package/eleventy/node_modules/promise/lib/es6-extensions.js +107 -0
  2011. package/eleventy/node_modules/promise/lib/finally.js +16 -0
  2012. package/eleventy/node_modules/promise/lib/index.js +8 -0
  2013. package/eleventy/node_modules/promise/lib/node-extensions.js +130 -0
  2014. package/eleventy/node_modules/promise/lib/rejection-tracking.js +113 -0
  2015. package/eleventy/node_modules/promise/lib/synchronous.js +62 -0
  2016. package/eleventy/node_modules/promise/package.json +35 -0
  2017. package/eleventy/node_modules/promise/polyfill-done.js +12 -0
  2018. package/eleventy/node_modules/promise/polyfill.js +10 -0
  2019. package/eleventy/node_modules/promise/setimmediate/core.js +213 -0
  2020. package/eleventy/node_modules/promise/setimmediate/done.js +13 -0
  2021. package/eleventy/node_modules/promise/setimmediate/es6-extensions.js +107 -0
  2022. package/eleventy/node_modules/promise/setimmediate/finally.js +16 -0
  2023. package/eleventy/node_modules/promise/setimmediate/index.js +8 -0
  2024. package/eleventy/node_modules/promise/setimmediate/node-extensions.js +130 -0
  2025. package/eleventy/node_modules/promise/setimmediate/rejection-tracking.js +113 -0
  2026. package/eleventy/node_modules/promise/setimmediate/synchronous.js +62 -0
  2027. package/eleventy/node_modules/promise/src/core.js +213 -0
  2028. package/eleventy/node_modules/promise/src/done.js +13 -0
  2029. package/eleventy/node_modules/promise/src/es6-extensions.js +107 -0
  2030. package/eleventy/node_modules/promise/src/finally.js +16 -0
  2031. package/eleventy/node_modules/promise/src/index.js +8 -0
  2032. package/eleventy/node_modules/promise/src/node-extensions.js +130 -0
  2033. package/eleventy/node_modules/promise/src/rejection-tracking.js +113 -0
  2034. package/eleventy/node_modules/promise/src/synchronous.js +62 -0
  2035. package/eleventy/node_modules/prr/.jshintrc +61 -0
  2036. package/eleventy/node_modules/prr/.travis.yml +10 -0
  2037. package/eleventy/node_modules/prr/LICENSE.md +11 -0
  2038. package/eleventy/node_modules/prr/README.md +47 -0
  2039. package/eleventy/node_modules/prr/package.json +26 -0
  2040. package/eleventy/node_modules/prr/prr.js +63 -0
  2041. package/eleventy/node_modules/prr/test.js +169 -0
  2042. package/eleventy/node_modules/punycode.js/LICENSE-MIT.txt +20 -0
  2043. package/eleventy/node_modules/punycode.js/README.md +148 -0
  2044. package/eleventy/node_modules/punycode.js/package.json +58 -0
  2045. package/eleventy/node_modules/punycode.js/punycode.es6.js +444 -0
  2046. package/eleventy/node_modules/punycode.js/punycode.js +443 -0
  2047. package/eleventy/node_modules/queue-microtask/LICENSE +20 -0
  2048. package/eleventy/node_modules/queue-microtask/README.md +90 -0
  2049. package/eleventy/node_modules/queue-microtask/index.d.ts +2 -0
  2050. package/eleventy/node_modules/queue-microtask/index.js +9 -0
  2051. package/eleventy/node_modules/queue-microtask/package.json +55 -0
  2052. package/eleventy/node_modules/range-parser/HISTORY.md +56 -0
  2053. package/eleventy/node_modules/range-parser/LICENSE +23 -0
  2054. package/eleventy/node_modules/range-parser/README.md +84 -0
  2055. package/eleventy/node_modules/range-parser/index.js +162 -0
  2056. package/eleventy/node_modules/range-parser/package.json +44 -0
  2057. package/eleventy/node_modules/readdirp/LICENSE +21 -0
  2058. package/eleventy/node_modules/readdirp/README.md +122 -0
  2059. package/eleventy/node_modules/readdirp/index.d.ts +43 -0
  2060. package/eleventy/node_modules/readdirp/index.js +287 -0
  2061. package/eleventy/node_modules/readdirp/package.json +122 -0
  2062. package/eleventy/node_modules/reusify/.coveralls.yml +1 -0
  2063. package/eleventy/node_modules/reusify/.travis.yml +28 -0
  2064. package/eleventy/node_modules/reusify/LICENSE +22 -0
  2065. package/eleventy/node_modules/reusify/README.md +145 -0
  2066. package/eleventy/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
  2067. package/eleventy/node_modules/reusify/benchmarks/fib.js +13 -0
  2068. package/eleventy/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
  2069. package/eleventy/node_modules/reusify/package.json +45 -0
  2070. package/eleventy/node_modules/reusify/reusify.js +33 -0
  2071. package/eleventy/node_modules/reusify/test.js +66 -0
  2072. package/eleventy/node_modules/rimraf/LICENSE +15 -0
  2073. package/eleventy/node_modules/rimraf/README.md +220 -0
  2074. package/eleventy/node_modules/rimraf/dist/commonjs/default-tmp.d.ts +3 -0
  2075. package/eleventy/node_modules/rimraf/dist/commonjs/default-tmp.d.ts.map +1 -0
  2076. package/eleventy/node_modules/rimraf/dist/commonjs/default-tmp.js +61 -0
  2077. package/eleventy/node_modules/rimraf/dist/commonjs/default-tmp.js.map +1 -0
  2078. package/eleventy/node_modules/rimraf/dist/commonjs/fix-eperm.d.ts +3 -0
  2079. package/eleventy/node_modules/rimraf/dist/commonjs/fix-eperm.d.ts.map +1 -0
  2080. package/eleventy/node_modules/rimraf/dist/commonjs/fix-eperm.js +58 -0
  2081. package/eleventy/node_modules/rimraf/dist/commonjs/fix-eperm.js.map +1 -0
  2082. package/eleventy/node_modules/rimraf/dist/commonjs/fs.d.ts +17 -0
  2083. package/eleventy/node_modules/rimraf/dist/commonjs/fs.d.ts.map +1 -0
  2084. package/eleventy/node_modules/rimraf/dist/commonjs/fs.js +46 -0
  2085. package/eleventy/node_modules/rimraf/dist/commonjs/fs.js.map +1 -0
  2086. package/eleventy/node_modules/rimraf/dist/commonjs/ignore-enoent.d.ts +3 -0
  2087. package/eleventy/node_modules/rimraf/dist/commonjs/ignore-enoent.d.ts.map +1 -0
  2088. package/eleventy/node_modules/rimraf/dist/commonjs/ignore-enoent.js +21 -0
  2089. package/eleventy/node_modules/rimraf/dist/commonjs/ignore-enoent.js.map +1 -0
  2090. package/eleventy/node_modules/rimraf/dist/commonjs/index.d.ts +50 -0
  2091. package/eleventy/node_modules/rimraf/dist/commonjs/index.d.ts.map +1 -0
  2092. package/eleventy/node_modules/rimraf/dist/commonjs/index.js +78 -0
  2093. package/eleventy/node_modules/rimraf/dist/commonjs/index.js.map +1 -0
  2094. package/eleventy/node_modules/rimraf/dist/commonjs/opt-arg.d.ts +34 -0
  2095. package/eleventy/node_modules/rimraf/dist/commonjs/opt-arg.d.ts.map +1 -0
  2096. package/eleventy/node_modules/rimraf/dist/commonjs/opt-arg.js +53 -0
  2097. package/eleventy/node_modules/rimraf/dist/commonjs/opt-arg.js.map +1 -0
  2098. package/eleventy/node_modules/rimraf/dist/commonjs/package.json +3 -0
  2099. package/eleventy/node_modules/rimraf/dist/commonjs/path-arg.d.ts +4 -0
  2100. package/eleventy/node_modules/rimraf/dist/commonjs/path-arg.d.ts.map +1 -0
  2101. package/eleventy/node_modules/rimraf/dist/commonjs/path-arg.js +52 -0
  2102. package/eleventy/node_modules/rimraf/dist/commonjs/path-arg.js.map +1 -0
  2103. package/eleventy/node_modules/rimraf/dist/commonjs/platform.d.ts +3 -0
  2104. package/eleventy/node_modules/rimraf/dist/commonjs/platform.d.ts.map +1 -0
  2105. package/eleventy/node_modules/rimraf/dist/commonjs/platform.js +4 -0
  2106. package/eleventy/node_modules/rimraf/dist/commonjs/platform.js.map +1 -0
  2107. package/eleventy/node_modules/rimraf/dist/commonjs/readdir-or-error.d.ts +3 -0
  2108. package/eleventy/node_modules/rimraf/dist/commonjs/readdir-or-error.d.ts.map +1 -0
  2109. package/eleventy/node_modules/rimraf/dist/commonjs/readdir-or-error.js +19 -0
  2110. package/eleventy/node_modules/rimraf/dist/commonjs/readdir-or-error.js.map +1 -0
  2111. package/eleventy/node_modules/rimraf/dist/commonjs/retry-busy.d.ts +8 -0
  2112. package/eleventy/node_modules/rimraf/dist/commonjs/retry-busy.d.ts.map +1 -0
  2113. package/eleventy/node_modules/rimraf/dist/commonjs/retry-busy.js +68 -0
  2114. package/eleventy/node_modules/rimraf/dist/commonjs/retry-busy.js.map +1 -0
  2115. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-manual.d.ts +3 -0
  2116. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-manual.d.ts.map +1 -0
  2117. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-manual.js +12 -0
  2118. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-manual.js.map +1 -0
  2119. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-move-remove.d.ts +4 -0
  2120. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-move-remove.d.ts.map +1 -0
  2121. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-move-remove.js +192 -0
  2122. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-move-remove.js.map +1 -0
  2123. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-native.d.ts +4 -0
  2124. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-native.d.ts.map +1 -0
  2125. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-native.js +24 -0
  2126. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-native.js.map +1 -0
  2127. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-posix.d.ts +4 -0
  2128. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-posix.d.ts.map +1 -0
  2129. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-posix.js +123 -0
  2130. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-posix.js.map +1 -0
  2131. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-windows.d.ts +4 -0
  2132. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-windows.d.ts.map +1 -0
  2133. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-windows.js +182 -0
  2134. package/eleventy/node_modules/rimraf/dist/commonjs/rimraf-windows.js.map +1 -0
  2135. package/eleventy/node_modules/rimraf/dist/commonjs/use-native.d.ts +4 -0
  2136. package/eleventy/node_modules/rimraf/dist/commonjs/use-native.d.ts.map +1 -0
  2137. package/eleventy/node_modules/rimraf/dist/commonjs/use-native.js +22 -0
  2138. package/eleventy/node_modules/rimraf/dist/commonjs/use-native.js.map +1 -0
  2139. package/eleventy/node_modules/rimraf/dist/esm/bin.d.mts +8 -0
  2140. package/eleventy/node_modules/rimraf/dist/esm/bin.d.mts.map +1 -0
  2141. package/eleventy/node_modules/rimraf/dist/esm/bin.mjs +256 -0
  2142. package/eleventy/node_modules/rimraf/dist/esm/bin.mjs.map +1 -0
  2143. package/eleventy/node_modules/rimraf/dist/esm/default-tmp.d.ts +3 -0
  2144. package/eleventy/node_modules/rimraf/dist/esm/default-tmp.d.ts.map +1 -0
  2145. package/eleventy/node_modules/rimraf/dist/esm/default-tmp.js +55 -0
  2146. package/eleventy/node_modules/rimraf/dist/esm/default-tmp.js.map +1 -0
  2147. package/eleventy/node_modules/rimraf/dist/esm/fix-eperm.d.ts +3 -0
  2148. package/eleventy/node_modules/rimraf/dist/esm/fix-eperm.d.ts.map +1 -0
  2149. package/eleventy/node_modules/rimraf/dist/esm/fix-eperm.js +53 -0
  2150. package/eleventy/node_modules/rimraf/dist/esm/fix-eperm.js.map +1 -0
  2151. package/eleventy/node_modules/rimraf/dist/esm/fs.d.ts +17 -0
  2152. package/eleventy/node_modules/rimraf/dist/esm/fs.d.ts.map +1 -0
  2153. package/eleventy/node_modules/rimraf/dist/esm/fs.js +31 -0
  2154. package/eleventy/node_modules/rimraf/dist/esm/fs.js.map +1 -0
  2155. package/eleventy/node_modules/rimraf/dist/esm/ignore-enoent.d.ts +3 -0
  2156. package/eleventy/node_modules/rimraf/dist/esm/ignore-enoent.d.ts.map +1 -0
  2157. package/eleventy/node_modules/rimraf/dist/esm/ignore-enoent.js +16 -0
  2158. package/eleventy/node_modules/rimraf/dist/esm/ignore-enoent.js.map +1 -0
  2159. package/eleventy/node_modules/rimraf/dist/esm/index.d.ts +50 -0
  2160. package/eleventy/node_modules/rimraf/dist/esm/index.d.ts.map +1 -0
  2161. package/eleventy/node_modules/rimraf/dist/esm/index.js +70 -0
  2162. package/eleventy/node_modules/rimraf/dist/esm/index.js.map +1 -0
  2163. package/eleventy/node_modules/rimraf/dist/esm/opt-arg.d.ts +34 -0
  2164. package/eleventy/node_modules/rimraf/dist/esm/opt-arg.d.ts.map +1 -0
  2165. package/eleventy/node_modules/rimraf/dist/esm/opt-arg.js +46 -0
  2166. package/eleventy/node_modules/rimraf/dist/esm/opt-arg.js.map +1 -0
  2167. package/eleventy/node_modules/rimraf/dist/esm/package.json +3 -0
  2168. package/eleventy/node_modules/rimraf/dist/esm/path-arg.d.ts +4 -0
  2169. package/eleventy/node_modules/rimraf/dist/esm/path-arg.d.ts.map +1 -0
  2170. package/eleventy/node_modules/rimraf/dist/esm/path-arg.js +47 -0
  2171. package/eleventy/node_modules/rimraf/dist/esm/path-arg.js.map +1 -0
  2172. package/eleventy/node_modules/rimraf/dist/esm/platform.d.ts +3 -0
  2173. package/eleventy/node_modules/rimraf/dist/esm/platform.d.ts.map +1 -0
  2174. package/eleventy/node_modules/rimraf/dist/esm/platform.js +2 -0
  2175. package/eleventy/node_modules/rimraf/dist/esm/platform.js.map +1 -0
  2176. package/eleventy/node_modules/rimraf/dist/esm/readdir-or-error.d.ts +3 -0
  2177. package/eleventy/node_modules/rimraf/dist/esm/readdir-or-error.d.ts.map +1 -0
  2178. package/eleventy/node_modules/rimraf/dist/esm/readdir-or-error.js +14 -0
  2179. package/eleventy/node_modules/rimraf/dist/esm/readdir-or-error.js.map +1 -0
  2180. package/eleventy/node_modules/rimraf/dist/esm/retry-busy.d.ts +8 -0
  2181. package/eleventy/node_modules/rimraf/dist/esm/retry-busy.d.ts.map +1 -0
  2182. package/eleventy/node_modules/rimraf/dist/esm/retry-busy.js +63 -0
  2183. package/eleventy/node_modules/rimraf/dist/esm/retry-busy.js.map +1 -0
  2184. package/eleventy/node_modules/rimraf/dist/esm/rimraf-manual.d.ts +3 -0
  2185. package/eleventy/node_modules/rimraf/dist/esm/rimraf-manual.d.ts.map +1 -0
  2186. package/eleventy/node_modules/rimraf/dist/esm/rimraf-manual.js +6 -0
  2187. package/eleventy/node_modules/rimraf/dist/esm/rimraf-manual.js.map +1 -0
  2188. package/eleventy/node_modules/rimraf/dist/esm/rimraf-move-remove.d.ts +4 -0
  2189. package/eleventy/node_modules/rimraf/dist/esm/rimraf-move-remove.d.ts.map +1 -0
  2190. package/eleventy/node_modules/rimraf/dist/esm/rimraf-move-remove.js +187 -0
  2191. package/eleventy/node_modules/rimraf/dist/esm/rimraf-move-remove.js.map +1 -0
  2192. package/eleventy/node_modules/rimraf/dist/esm/rimraf-native.d.ts +4 -0
  2193. package/eleventy/node_modules/rimraf/dist/esm/rimraf-native.d.ts.map +1 -0
  2194. package/eleventy/node_modules/rimraf/dist/esm/rimraf-native.js +19 -0
  2195. package/eleventy/node_modules/rimraf/dist/esm/rimraf-native.js.map +1 -0
  2196. package/eleventy/node_modules/rimraf/dist/esm/rimraf-posix.d.ts +4 -0
  2197. package/eleventy/node_modules/rimraf/dist/esm/rimraf-posix.d.ts.map +1 -0
  2198. package/eleventy/node_modules/rimraf/dist/esm/rimraf-posix.js +118 -0
  2199. package/eleventy/node_modules/rimraf/dist/esm/rimraf-posix.js.map +1 -0
  2200. package/eleventy/node_modules/rimraf/dist/esm/rimraf-windows.d.ts +4 -0
  2201. package/eleventy/node_modules/rimraf/dist/esm/rimraf-windows.d.ts.map +1 -0
  2202. package/eleventy/node_modules/rimraf/dist/esm/rimraf-windows.js +177 -0
  2203. package/eleventy/node_modules/rimraf/dist/esm/rimraf-windows.js.map +1 -0
  2204. package/eleventy/node_modules/rimraf/dist/esm/use-native.d.ts +4 -0
  2205. package/eleventy/node_modules/rimraf/dist/esm/use-native.d.ts.map +1 -0
  2206. package/eleventy/node_modules/rimraf/dist/esm/use-native.js +16 -0
  2207. package/eleventy/node_modules/rimraf/dist/esm/use-native.js.map +1 -0
  2208. package/eleventy/node_modules/rimraf/package.json +89 -0
  2209. package/eleventy/node_modules/run-parallel/LICENSE +20 -0
  2210. package/eleventy/node_modules/run-parallel/README.md +85 -0
  2211. package/eleventy/node_modules/run-parallel/index.js +51 -0
  2212. package/eleventy/node_modules/run-parallel/package.json +58 -0
  2213. package/eleventy/node_modules/section-matter/LICENSE +21 -0
  2214. package/eleventy/node_modules/section-matter/README.md +236 -0
  2215. package/eleventy/node_modules/section-matter/index.js +136 -0
  2216. package/eleventy/node_modules/section-matter/package.json +55 -0
  2217. package/eleventy/node_modules/semver/LICENSE +15 -0
  2218. package/eleventy/node_modules/semver/README.md +654 -0
  2219. package/eleventy/node_modules/semver/bin/semver.js +188 -0
  2220. package/eleventy/node_modules/semver/classes/comparator.js +141 -0
  2221. package/eleventy/node_modules/semver/classes/index.js +5 -0
  2222. package/eleventy/node_modules/semver/classes/range.js +554 -0
  2223. package/eleventy/node_modules/semver/classes/semver.js +302 -0
  2224. package/eleventy/node_modules/semver/functions/clean.js +6 -0
  2225. package/eleventy/node_modules/semver/functions/cmp.js +52 -0
  2226. package/eleventy/node_modules/semver/functions/coerce.js +60 -0
  2227. package/eleventy/node_modules/semver/functions/compare-build.js +7 -0
  2228. package/eleventy/node_modules/semver/functions/compare-loose.js +3 -0
  2229. package/eleventy/node_modules/semver/functions/compare.js +5 -0
  2230. package/eleventy/node_modules/semver/functions/diff.js +65 -0
  2231. package/eleventy/node_modules/semver/functions/eq.js +3 -0
  2232. package/eleventy/node_modules/semver/functions/gt.js +3 -0
  2233. package/eleventy/node_modules/semver/functions/gte.js +3 -0
  2234. package/eleventy/node_modules/semver/functions/inc.js +19 -0
  2235. package/eleventy/node_modules/semver/functions/lt.js +3 -0
  2236. package/eleventy/node_modules/semver/functions/lte.js +3 -0
  2237. package/eleventy/node_modules/semver/functions/major.js +3 -0
  2238. package/eleventy/node_modules/semver/functions/minor.js +3 -0
  2239. package/eleventy/node_modules/semver/functions/neq.js +3 -0
  2240. package/eleventy/node_modules/semver/functions/parse.js +16 -0
  2241. package/eleventy/node_modules/semver/functions/patch.js +3 -0
  2242. package/eleventy/node_modules/semver/functions/prerelease.js +6 -0
  2243. package/eleventy/node_modules/semver/functions/rcompare.js +3 -0
  2244. package/eleventy/node_modules/semver/functions/rsort.js +3 -0
  2245. package/eleventy/node_modules/semver/functions/satisfies.js +10 -0
  2246. package/eleventy/node_modules/semver/functions/sort.js +3 -0
  2247. package/eleventy/node_modules/semver/functions/valid.js +6 -0
  2248. package/eleventy/node_modules/semver/index.js +89 -0
  2249. package/eleventy/node_modules/semver/internal/constants.js +35 -0
  2250. package/eleventy/node_modules/semver/internal/debug.js +9 -0
  2251. package/eleventy/node_modules/semver/internal/identifiers.js +23 -0
  2252. package/eleventy/node_modules/semver/internal/lrucache.js +40 -0
  2253. package/eleventy/node_modules/semver/internal/parse-options.js +15 -0
  2254. package/eleventy/node_modules/semver/internal/re.js +217 -0
  2255. package/eleventy/node_modules/semver/package.json +77 -0
  2256. package/eleventy/node_modules/semver/preload.js +2 -0
  2257. package/eleventy/node_modules/semver/range.bnf +16 -0
  2258. package/eleventy/node_modules/semver/ranges/gtr.js +4 -0
  2259. package/eleventy/node_modules/semver/ranges/intersects.js +7 -0
  2260. package/eleventy/node_modules/semver/ranges/ltr.js +4 -0
  2261. package/eleventy/node_modules/semver/ranges/max-satisfying.js +25 -0
  2262. package/eleventy/node_modules/semver/ranges/min-satisfying.js +24 -0
  2263. package/eleventy/node_modules/semver/ranges/min-version.js +61 -0
  2264. package/eleventy/node_modules/semver/ranges/outside.js +80 -0
  2265. package/eleventy/node_modules/semver/ranges/simplify.js +47 -0
  2266. package/eleventy/node_modules/semver/ranges/subset.js +247 -0
  2267. package/eleventy/node_modules/semver/ranges/to-comparators.js +8 -0
  2268. package/eleventy/node_modules/semver/ranges/valid.js +11 -0
  2269. package/eleventy/node_modules/semver-compare/.travis.yml +6 -0
  2270. package/eleventy/node_modules/semver-compare/LICENSE +18 -0
  2271. package/eleventy/node_modules/semver-compare/example/cmp.js +13 -0
  2272. package/eleventy/node_modules/semver-compare/example/lex.js +12 -0
  2273. package/eleventy/node_modules/semver-compare/index.js +13 -0
  2274. package/eleventy/node_modules/semver-compare/package.json +31 -0
  2275. package/eleventy/node_modules/semver-compare/readme.markdown +77 -0
  2276. package/eleventy/node_modules/semver-compare/test/cmp.js +29 -0
  2277. package/eleventy/node_modules/send/HISTORY.md +571 -0
  2278. package/eleventy/node_modules/send/LICENSE +23 -0
  2279. package/eleventy/node_modules/send/README.md +320 -0
  2280. package/eleventy/node_modules/send/SECURITY.md +24 -0
  2281. package/eleventy/node_modules/send/index.js +1014 -0
  2282. package/eleventy/node_modules/send/package.json +62 -0
  2283. package/eleventy/node_modules/setprototypeof/LICENSE +13 -0
  2284. package/eleventy/node_modules/setprototypeof/README.md +31 -0
  2285. package/eleventy/node_modules/setprototypeof/index.d.ts +2 -0
  2286. package/eleventy/node_modules/setprototypeof/index.js +17 -0
  2287. package/eleventy/node_modules/setprototypeof/package.json +38 -0
  2288. package/eleventy/node_modules/setprototypeof/test/index.js +24 -0
  2289. package/eleventy/node_modules/shebang-command/index.js +19 -0
  2290. package/eleventy/node_modules/shebang-command/license +9 -0
  2291. package/eleventy/node_modules/shebang-command/package.json +34 -0
  2292. package/eleventy/node_modules/shebang-command/readme.md +34 -0
  2293. package/eleventy/node_modules/shebang-regex/index.d.ts +22 -0
  2294. package/eleventy/node_modules/shebang-regex/index.js +2 -0
  2295. package/eleventy/node_modules/shebang-regex/license +9 -0
  2296. package/eleventy/node_modules/shebang-regex/package.json +35 -0
  2297. package/eleventy/node_modules/shebang-regex/readme.md +33 -0
  2298. package/eleventy/node_modules/signal-exit/LICENSE.txt +16 -0
  2299. package/eleventy/node_modules/signal-exit/README.md +74 -0
  2300. package/eleventy/node_modules/signal-exit/dist/cjs/browser.d.ts +12 -0
  2301. package/eleventy/node_modules/signal-exit/dist/cjs/browser.d.ts.map +1 -0
  2302. package/eleventy/node_modules/signal-exit/dist/cjs/browser.js +10 -0
  2303. package/eleventy/node_modules/signal-exit/dist/cjs/browser.js.map +1 -0
  2304. package/eleventy/node_modules/signal-exit/dist/cjs/index.d.ts +48 -0
  2305. package/eleventy/node_modules/signal-exit/dist/cjs/index.d.ts.map +1 -0
  2306. package/eleventy/node_modules/signal-exit/dist/cjs/index.js +279 -0
  2307. package/eleventy/node_modules/signal-exit/dist/cjs/index.js.map +1 -0
  2308. package/eleventy/node_modules/signal-exit/dist/cjs/package.json +3 -0
  2309. package/eleventy/node_modules/signal-exit/dist/cjs/signals.d.ts +29 -0
  2310. package/eleventy/node_modules/signal-exit/dist/cjs/signals.d.ts.map +1 -0
  2311. package/eleventy/node_modules/signal-exit/dist/cjs/signals.js +42 -0
  2312. package/eleventy/node_modules/signal-exit/dist/cjs/signals.js.map +1 -0
  2313. package/eleventy/node_modules/signal-exit/dist/mjs/browser.d.ts +12 -0
  2314. package/eleventy/node_modules/signal-exit/dist/mjs/browser.d.ts.map +1 -0
  2315. package/eleventy/node_modules/signal-exit/dist/mjs/browser.js +4 -0
  2316. package/eleventy/node_modules/signal-exit/dist/mjs/browser.js.map +1 -0
  2317. package/eleventy/node_modules/signal-exit/dist/mjs/index.d.ts +48 -0
  2318. package/eleventy/node_modules/signal-exit/dist/mjs/index.d.ts.map +1 -0
  2319. package/eleventy/node_modules/signal-exit/dist/mjs/index.js +275 -0
  2320. package/eleventy/node_modules/signal-exit/dist/mjs/index.js.map +1 -0
  2321. package/eleventy/node_modules/signal-exit/dist/mjs/package.json +3 -0
  2322. package/eleventy/node_modules/signal-exit/dist/mjs/signals.d.ts +29 -0
  2323. package/eleventy/node_modules/signal-exit/dist/mjs/signals.d.ts.map +1 -0
  2324. package/eleventy/node_modules/signal-exit/dist/mjs/signals.js +39 -0
  2325. package/eleventy/node_modules/signal-exit/dist/mjs/signals.js.map +1 -0
  2326. package/eleventy/node_modules/signal-exit/package.json +106 -0
  2327. package/eleventy/node_modules/slash/index.js +11 -0
  2328. package/eleventy/node_modules/slash/package.json +33 -0
  2329. package/eleventy/node_modules/slash/readme.md +44 -0
  2330. package/eleventy/node_modules/slugify/CHANGELOG.md +94 -0
  2331. package/eleventy/node_modules/slugify/LICENSE +21 -0
  2332. package/eleventy/node_modules/slugify/README.md +98 -0
  2333. package/eleventy/node_modules/slugify/package.json +42 -0
  2334. package/eleventy/node_modules/slugify/slugify.d.ts +24 -0
  2335. package/eleventy/node_modules/slugify/slugify.js +69 -0
  2336. package/eleventy/node_modules/sprintf-js/LICENSE +24 -0
  2337. package/eleventy/node_modules/sprintf-js/README.md +88 -0
  2338. package/eleventy/node_modules/sprintf-js/bower.json +14 -0
  2339. package/eleventy/node_modules/sprintf-js/demo/angular.html +20 -0
  2340. package/eleventy/node_modules/sprintf-js/dist/angular-sprintf.min.js +4 -0
  2341. package/eleventy/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +1 -0
  2342. package/eleventy/node_modules/sprintf-js/dist/angular-sprintf.min.map +1 -0
  2343. package/eleventy/node_modules/sprintf-js/dist/sprintf.min.js +4 -0
  2344. package/eleventy/node_modules/sprintf-js/dist/sprintf.min.js.map +1 -0
  2345. package/eleventy/node_modules/sprintf-js/dist/sprintf.min.map +1 -0
  2346. package/eleventy/node_modules/sprintf-js/gruntfile.js +36 -0
  2347. package/eleventy/node_modules/sprintf-js/package.json +22 -0
  2348. package/eleventy/node_modules/sprintf-js/src/angular-sprintf.js +18 -0
  2349. package/eleventy/node_modules/sprintf-js/src/sprintf.js +208 -0
  2350. package/eleventy/node_modules/sprintf-js/test/test.js +82 -0
  2351. package/eleventy/node_modules/ssri/LICENSE.md +16 -0
  2352. package/eleventy/node_modules/ssri/README.md +528 -0
  2353. package/eleventy/node_modules/ssri/lib/index.js +580 -0
  2354. package/eleventy/node_modules/ssri/package.json +66 -0
  2355. package/eleventy/node_modules/statuses/HISTORY.md +82 -0
  2356. package/eleventy/node_modules/statuses/LICENSE +23 -0
  2357. package/eleventy/node_modules/statuses/README.md +136 -0
  2358. package/eleventy/node_modules/statuses/codes.json +65 -0
  2359. package/eleventy/node_modules/statuses/index.js +146 -0
  2360. package/eleventy/node_modules/statuses/package.json +49 -0
  2361. package/eleventy/node_modules/string-width/index.d.ts +29 -0
  2362. package/eleventy/node_modules/string-width/index.js +54 -0
  2363. package/eleventy/node_modules/string-width/license +9 -0
  2364. package/eleventy/node_modules/string-width/package.json +59 -0
  2365. package/eleventy/node_modules/string-width/readme.md +67 -0
  2366. package/eleventy/node_modules/string-width-cjs/index.d.ts +29 -0
  2367. package/eleventy/node_modules/string-width-cjs/index.js +47 -0
  2368. package/eleventy/node_modules/string-width-cjs/license +9 -0
  2369. package/eleventy/node_modules/string-width-cjs/node_modules/ansi-regex/index.d.ts +37 -0
  2370. package/eleventy/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +10 -0
  2371. package/eleventy/node_modules/string-width-cjs/node_modules/ansi-regex/license +9 -0
  2372. package/eleventy/node_modules/string-width-cjs/node_modules/ansi-regex/package.json +55 -0
  2373. package/eleventy/node_modules/string-width-cjs/node_modules/ansi-regex/readme.md +78 -0
  2374. package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  2375. package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/README.md +73 -0
  2376. package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/index.js +6 -0
  2377. package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/text.js +6 -0
  2378. package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/index.d.ts +23 -0
  2379. package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/index.js +6 -0
  2380. package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/package.json +50 -0
  2381. package/eleventy/node_modules/string-width-cjs/node_modules/emoji-regex/text.js +6 -0
  2382. package/eleventy/node_modules/string-width-cjs/node_modules/strip-ansi/index.d.ts +17 -0
  2383. package/eleventy/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +4 -0
  2384. package/eleventy/node_modules/string-width-cjs/node_modules/strip-ansi/license +9 -0
  2385. package/eleventy/node_modules/string-width-cjs/node_modules/strip-ansi/package.json +54 -0
  2386. package/eleventy/node_modules/string-width-cjs/node_modules/strip-ansi/readme.md +46 -0
  2387. package/eleventy/node_modules/string-width-cjs/package.json +56 -0
  2388. package/eleventy/node_modules/string-width-cjs/readme.md +50 -0
  2389. package/eleventy/node_modules/strip-ansi/index.d.ts +15 -0
  2390. package/eleventy/node_modules/strip-ansi/index.js +14 -0
  2391. package/eleventy/node_modules/strip-ansi/license +9 -0
  2392. package/eleventy/node_modules/strip-ansi/package.json +57 -0
  2393. package/eleventy/node_modules/strip-ansi/readme.md +41 -0
  2394. package/eleventy/node_modules/strip-ansi-cjs/index.d.ts +17 -0
  2395. package/eleventy/node_modules/strip-ansi-cjs/index.js +4 -0
  2396. package/eleventy/node_modules/strip-ansi-cjs/license +9 -0
  2397. package/eleventy/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.d.ts +37 -0
  2398. package/eleventy/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
  2399. package/eleventy/node_modules/strip-ansi-cjs/node_modules/ansi-regex/license +9 -0
  2400. package/eleventy/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
  2401. package/eleventy/node_modules/strip-ansi-cjs/node_modules/ansi-regex/readme.md +78 -0
  2402. package/eleventy/node_modules/strip-ansi-cjs/package.json +54 -0
  2403. package/eleventy/node_modules/strip-ansi-cjs/readme.md +46 -0
  2404. package/eleventy/node_modules/strip-bom-string/LICENSE +21 -0
  2405. package/eleventy/node_modules/strip-bom-string/README.md +66 -0
  2406. package/eleventy/node_modules/strip-bom-string/index.js +15 -0
  2407. package/eleventy/node_modules/strip-bom-string/package.json +60 -0
  2408. package/eleventy/node_modules/to-regex-range/LICENSE +21 -0
  2409. package/eleventy/node_modules/to-regex-range/README.md +305 -0
  2410. package/eleventy/node_modules/to-regex-range/index.js +288 -0
  2411. package/eleventy/node_modules/to-regex-range/package.json +88 -0
  2412. package/eleventy/node_modules/toidentifier/HISTORY.md +9 -0
  2413. package/eleventy/node_modules/toidentifier/LICENSE +21 -0
  2414. package/eleventy/node_modules/toidentifier/README.md +61 -0
  2415. package/eleventy/node_modules/toidentifier/index.js +32 -0
  2416. package/eleventy/node_modules/toidentifier/package.json +38 -0
  2417. package/eleventy/node_modules/uc.micro/LICENSE.txt +20 -0
  2418. package/eleventy/node_modules/uc.micro/README.md +14 -0
  2419. package/eleventy/node_modules/uc.micro/categories/Cc/regex.mjs +1 -0
  2420. package/eleventy/node_modules/uc.micro/categories/Cf/regex.mjs +1 -0
  2421. package/eleventy/node_modules/uc.micro/categories/P/regex.mjs +1 -0
  2422. package/eleventy/node_modules/uc.micro/categories/S/regex.mjs +1 -0
  2423. package/eleventy/node_modules/uc.micro/categories/Z/regex.mjs +1 -0
  2424. package/eleventy/node_modules/uc.micro/index.mjs +8 -0
  2425. package/eleventy/node_modules/uc.micro/package.json +37 -0
  2426. package/eleventy/node_modules/uc.micro/properties/Any/regex.mjs +1 -0
  2427. package/eleventy/node_modules/unpipe/HISTORY.md +4 -0
  2428. package/eleventy/node_modules/unpipe/LICENSE +22 -0
  2429. package/eleventy/node_modules/unpipe/README.md +43 -0
  2430. package/eleventy/node_modules/unpipe/index.js +69 -0
  2431. package/eleventy/node_modules/unpipe/package.json +27 -0
  2432. package/eleventy/node_modules/urlpattern-polyfill/LICENSE +19 -0
  2433. package/eleventy/node_modules/urlpattern-polyfill/README.md +242 -0
  2434. package/eleventy/node_modules/urlpattern-polyfill/dist/index.d.ts +9 -0
  2435. package/eleventy/node_modules/urlpattern-polyfill/dist/types.d.ts +49 -0
  2436. package/eleventy/node_modules/urlpattern-polyfill/dist/urlpattern.cjs +1 -0
  2437. package/eleventy/node_modules/urlpattern-polyfill/dist/urlpattern.js +1 -0
  2438. package/eleventy/node_modules/urlpattern-polyfill/index.cjs +7 -0
  2439. package/eleventy/node_modules/urlpattern-polyfill/index.js +7 -0
  2440. package/eleventy/node_modules/urlpattern-polyfill/package.json +149 -0
  2441. package/eleventy/node_modules/which/CHANGELOG.md +166 -0
  2442. package/eleventy/node_modules/which/LICENSE +15 -0
  2443. package/eleventy/node_modules/which/README.md +54 -0
  2444. package/eleventy/node_modules/which/bin/node-which +52 -0
  2445. package/eleventy/node_modules/which/package.json +43 -0
  2446. package/eleventy/node_modules/which/which.js +125 -0
  2447. package/eleventy/node_modules/wrap-ansi/index.d.ts +41 -0
  2448. package/eleventy/node_modules/wrap-ansi/index.js +214 -0
  2449. package/eleventy/node_modules/wrap-ansi/license +9 -0
  2450. package/eleventy/node_modules/wrap-ansi/package.json +69 -0
  2451. package/eleventy/node_modules/wrap-ansi/readme.md +91 -0
  2452. package/eleventy/node_modules/wrap-ansi-cjs/index.js +216 -0
  2453. package/eleventy/node_modules/wrap-ansi-cjs/license +9 -0
  2454. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.d.ts +37 -0
  2455. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
  2456. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/license +9 -0
  2457. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
  2458. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/readme.md +78 -0
  2459. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.d.ts +345 -0
  2460. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
  2461. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
  2462. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
  2463. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/readme.md +152 -0
  2464. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  2465. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/README.md +73 -0
  2466. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/index.js +6 -0
  2467. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/text.js +6 -0
  2468. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.d.ts +23 -0
  2469. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.js +6 -0
  2470. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/package.json +50 -0
  2471. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/text.js +6 -0
  2472. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/string-width/index.d.ts +29 -0
  2473. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/string-width/index.js +47 -0
  2474. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/string-width/license +9 -0
  2475. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/string-width/package.json +56 -0
  2476. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/string-width/readme.md +50 -0
  2477. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.d.ts +17 -0
  2478. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +4 -0
  2479. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/license +9 -0
  2480. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json +54 -0
  2481. package/eleventy/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/readme.md +46 -0
  2482. package/eleventy/node_modules/wrap-ansi-cjs/package.json +62 -0
  2483. package/eleventy/node_modules/wrap-ansi-cjs/readme.md +91 -0
  2484. package/eleventy/node_modules/ws/LICENSE +20 -0
  2485. package/eleventy/node_modules/ws/README.md +548 -0
  2486. package/eleventy/node_modules/ws/browser.js +8 -0
  2487. package/eleventy/node_modules/ws/index.js +13 -0
  2488. package/eleventy/node_modules/ws/lib/buffer-util.js +131 -0
  2489. package/eleventy/node_modules/ws/lib/constants.js +18 -0
  2490. package/eleventy/node_modules/ws/lib/event-target.js +292 -0
  2491. package/eleventy/node_modules/ws/lib/extension.js +203 -0
  2492. package/eleventy/node_modules/ws/lib/limiter.js +55 -0
  2493. package/eleventy/node_modules/ws/lib/permessage-deflate.js +514 -0
  2494. package/eleventy/node_modules/ws/lib/receiver.js +706 -0
  2495. package/eleventy/node_modules/ws/lib/sender.js +602 -0
  2496. package/eleventy/node_modules/ws/lib/stream.js +159 -0
  2497. package/eleventy/node_modules/ws/lib/subprotocol.js +62 -0
  2498. package/eleventy/node_modules/ws/lib/validation.js +152 -0
  2499. package/eleventy/node_modules/ws/lib/websocket-server.js +540 -0
  2500. package/eleventy/node_modules/ws/lib/websocket.js +1388 -0
  2501. package/eleventy/node_modules/ws/package.json +69 -0
  2502. package/eleventy/node_modules/ws/wrapper.mjs +8 -0
  2503. package/package.json +1 -1
  2504. package/src/js/core/ConfigFactory.js +21 -2
  2505. package/src/js/core/__tests__/ConfigFactory.test.js +14 -1
  2506. package/src/less/Variables.less +2 -0
  2507. package/src/less/themes/contrast/Variables.less +3 -1
  2508. package/src/less/themes/dark/Variables.less +2 -0
  2509. 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":""}