Skip to content

Instantly share code, notes, and snippets.

@taneltm
Last active April 12, 2024 08:47
Show Gist options
  • Save taneltm/471ded942978ce4bdca86e7889c0e426 to your computer and use it in GitHub Desktop.
Save taneltm/471ded942978ce4bdca86e7889c0e426 to your computer and use it in GitHub Desktop.
Obsidian timeline CSS snippet

Obsidian timeline

This is a CSS snippet for Obsidian.md to create a timeline in your daily notes.

To include the timeline in your daily note, add the following to your daily note template:

<div data-timeline="{{date:DDD}}"></div>

Preview can be found here: https://codepen.io/taneltm/pen/eYyeyBe

timeline.css is the ready-to-use snippet, you can copy that to your Obsidian CSS snippets directory.
timeline-src.scss is the SCSS code you can use to build your own version.

You can also fork the CodePen pen and modify it to your liking, then from the CSS options choose "View compiled CSS" and use that in the obsidian snippets.

The bacground image was encoded using https://yoksel.github.io/url-encoder/

[data-timeline] {
position: relative;
display: block;
aspect-ratio: 18/1;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Ctitle%3ETimeline 2022%3C/title%3E%3Cg class='bars'%3E%3Crect fill='%23cfe2f3' x='0' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23a2c4c9' x='320' width='280' height='25'%3E%3C/rect%3E%3Crect fill='%2376a5af' x='610' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%2393c47d' x='930' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%236aa84f' x='1240' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%238fce00' x='1560' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%23ffd966' x='1870' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23f1c232' x='2190' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23ce7e00' x='2510' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%23e06666' x='2820' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23f4cccc' x='3140' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%23eeeeee' x='3450' width='310' height='25'%3E%3C/rect%3E%3C/g%3E%3Cg class='labels' style='font-size:50px;' text-anchor='start'%3E%3Ctext fill='%23CCE0E2' x='0' y='80'%3EJanuary%3C/text%3E%3Ctext fill='%23CCE0E2' x='320' y='80'%3EFebruary%3C/text%3E%3Ctext fill='%23CCE0E2' x='610' y='80'%3EMarch%3C/text%3E%3Ctext fill='%23CCE0E2' x='930' y='80'%3EApril%3C/text%3E%3Ctext fill='%23CCE0E2' x='1240' y='80'%3EMay%3C/text%3E%3Ctext fill='%23CCE0E2' x='1560' y='80'%3EJune%3C/text%3E%3Ctext fill='%23CCE0E2' x='1870' y='80'%3EJuly%3C/text%3E%3Ctext fill='%23CCE0E2' x='2190' y='80'%3EAugust%3C/text%3E%3Ctext fill='%23CCE0E2' x='2510' y='80'%3ESeptember%3C/text%3E%3Ctext fill='%23CCE0E2' x='2820' y='80'%3EOctober%3C/text%3E%3Ctext fill='%23CCE0E2' x='3140' y='80'%3ENovember%3C/text%3E%3Ctext fill='%23CCE0E2' x='3450' y='80'%3EDecember%3C/text%3E%3C/g%3E%3C/svg%3E");
}
@for $i from 1 through 365 {
[data-timeline="#{$i}"]::after {
content: '';
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(#{$i * 10.32},0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
}
[data-timeline] {
position: relative;
display: block;
aspect-ratio: 18/1;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Ctitle%3ETimeline 2022%3C/title%3E%3Cg class='bars'%3E%3Crect fill='%23cfe2f3' x='0' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23a2c4c9' x='320' width='280' height='25'%3E%3C/rect%3E%3Crect fill='%2376a5af' x='610' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%2393c47d' x='930' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%236aa84f' x='1240' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%238fce00' x='1560' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%23ffd966' x='1870' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23f1c232' x='2190' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23ce7e00' x='2510' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%23e06666' x='2820' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23f4cccc' x='3140' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%23eeeeee' x='3450' width='310' height='25'%3E%3C/rect%3E%3C/g%3E%3Cg class='labels' style='font-size:50px;' text-anchor='start'%3E%3Ctext fill='%23CCE0E2' x='0' y='80'%3EJanuary%3C/text%3E%3Ctext fill='%23CCE0E2' x='320' y='80'%3EFebruary%3C/text%3E%3Ctext fill='%23CCE0E2' x='610' y='80'%3EMarch%3C/text%3E%3Ctext fill='%23CCE0E2' x='930' y='80'%3EApril%3C/text%3E%3Ctext fill='%23CCE0E2' x='1240' y='80'%3EMay%3C/text%3E%3Ctext fill='%23CCE0E2' x='1560' y='80'%3EJune%3C/text%3E%3Ctext fill='%23CCE0E2' x='1870' y='80'%3EJuly%3C/text%3E%3Ctext fill='%23CCE0E2' x='2190' y='80'%3EAugust%3C/text%3E%3Ctext fill='%23CCE0E2' x='2510' y='80'%3ESeptember%3C/text%3E%3Ctext fill='%23CCE0E2' x='2820' y='80'%3EOctober%3C/text%3E%3Ctext fill='%23CCE0E2' x='3140' y='80'%3ENovember%3C/text%3E%3Ctext fill='%23CCE0E2' x='3450' y='80'%3EDecember%3C/text%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="1"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(10.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="2"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(20.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="3"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(30.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="4"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(41.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="5"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(51.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="6"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(61.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="7"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(72.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="8"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(82.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="9"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(92.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="10"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(103.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="11"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(113.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="12"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(123.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="13"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(134.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="14"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(144.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="15"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(154.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="16"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(165.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="17"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(175.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="18"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(185.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="19"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(196.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="20"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(206.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="21"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(216.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="22"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(227.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="23"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(237.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="24"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(247.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="25"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(258,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="26"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(268.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="27"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(278.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="28"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(288.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="29"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(299.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="30"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(309.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="31"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(319.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="32"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(330.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="33"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(340.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="34"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(350.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="35"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(361.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="36"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(371.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="37"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(381.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="38"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(392.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="39"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(402.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="40"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(412.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="41"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(423.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="42"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(433.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="43"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(443.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="44"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(454.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="45"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(464.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="46"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(474.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="47"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(485.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="48"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(495.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="49"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(505.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="50"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(516,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="51"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(526.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="52"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(536.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="53"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(546.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="54"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(557.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="55"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(567.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="56"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(577.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="57"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(588.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="58"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(598.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="59"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(608.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="60"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(619.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="61"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(629.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="62"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(639.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="63"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(650.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="64"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(660.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="65"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(670.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="66"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(681.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="67"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(691.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="68"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(701.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="69"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(712.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="70"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(722.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="71"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(732.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="72"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(743.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="73"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(753.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="74"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(763.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="75"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(774,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="76"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(784.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="77"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(794.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="78"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(804.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="79"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(815.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="80"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(825.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="81"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(835.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="82"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(846.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="83"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(856.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="84"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(866.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="85"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(877.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="86"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(887.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="87"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(897.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="88"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(908.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="89"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(918.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="90"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(928.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="91"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(939.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="92"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(949.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="93"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(959.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="94"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(970.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="95"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(980.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="96"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(990.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="97"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1001.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="98"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1011.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="99"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1021.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="100"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1032,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="101"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1042.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="102"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1052.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="103"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1062.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="104"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1073.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="105"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1083.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="106"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1093.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="107"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1104.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="108"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1114.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="109"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1124.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="110"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1135.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="111"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1145.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="112"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1155.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="113"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1166.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="114"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1176.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="115"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1186.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="116"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1197.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="117"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1207.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="118"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1217.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="119"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1228.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="120"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1238.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="121"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1248.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="122"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1259.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="123"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1269.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="124"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1279.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="125"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1290,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="126"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1300.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="127"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1310.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="128"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1320.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="129"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1331.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="130"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1341.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="131"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1351.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="132"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1362.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="133"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1372.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="134"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1382.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="135"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1393.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="136"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1403.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="137"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1413.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="138"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1424.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="139"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1434.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="140"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1444.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="141"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1455.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="142"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1465.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="143"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1475.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="144"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1486.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="145"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1496.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="146"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1506.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="147"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1517.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="148"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1527.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="149"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1537.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="150"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1548,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="151"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1558.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="152"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1568.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="153"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1578.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="154"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1589.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="155"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1599.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="156"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1609.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="157"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1620.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="158"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1630.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="159"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1640.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="160"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1651.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="161"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1661.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="162"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1671.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="163"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1682.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="164"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1692.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="165"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1702.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="166"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1713.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="167"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1723.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="168"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1733.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="169"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1744.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="170"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1754.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="171"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1764.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="172"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1775.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="173"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1785.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="174"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1795.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="175"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1806,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="176"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1816.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="177"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1826.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="178"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1836.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="179"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1847.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="180"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1857.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="181"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1867.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="182"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1878.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="183"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1888.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="184"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1898.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="185"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1909.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="186"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1919.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="187"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1929.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="188"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1940.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="189"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1950.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="190"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1960.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="191"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1971.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="192"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1981.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="193"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(1991.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="194"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2002.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="195"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2012.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="196"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2022.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="197"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2033.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="198"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2043.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="199"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2053.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="200"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2064,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="201"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2074.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="202"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2084.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="203"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2094.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="204"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2105.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="205"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2115.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="206"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2125.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="207"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2136.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="208"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2146.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="209"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2156.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="210"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2167.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="211"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2177.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="212"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2187.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="213"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2198.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="214"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2208.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="215"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2218.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="216"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2229.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="217"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2239.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="218"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2249.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="219"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2260.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="220"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2270.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="221"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2280.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="222"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2291.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="223"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2301.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="224"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2311.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="225"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2322,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="226"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2332.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="227"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2342.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="228"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2352.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="229"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2363.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="230"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2373.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="231"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2383.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="232"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2394.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="233"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2404.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="234"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2414.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="235"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2425.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="236"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2435.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="237"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2445.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="238"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2456.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="239"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2466.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="240"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2476.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="241"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2487.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="242"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2497.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="243"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2507.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="244"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2518.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="245"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2528.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="246"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2538.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="247"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2549.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="248"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2559.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="249"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2569.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="250"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2580,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="251"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2590.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="252"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2600.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="253"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2610.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="254"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2621.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="255"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2631.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="256"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2641.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="257"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2652.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="258"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2662.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="259"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2672.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="260"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2683.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="261"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2693.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="262"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2703.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="263"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2714.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="264"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2724.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="265"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2734.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="266"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2745.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="267"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2755.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="268"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2765.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="269"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2776.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="270"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2786.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="271"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2796.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="272"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2807.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="273"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2817.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="274"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2827.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="275"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2838,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="276"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2848.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="277"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2858.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="278"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2868.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="279"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2879.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="280"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2889.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="281"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2899.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="282"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2910.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="283"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2920.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="284"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2930.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="285"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2941.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="286"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2951.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="287"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2961.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="288"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2972.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="289"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2982.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="290"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(2992.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="291"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3003.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="292"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3013.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="293"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3023.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="294"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3034.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="295"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3044.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="296"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3054.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="297"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3065.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="298"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3075.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="299"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3085.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="300"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3096,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="301"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3106.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="302"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3116.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="303"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3126.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="304"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3137.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="305"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3147.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="306"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3157.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="307"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3168.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="308"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3178.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="309"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3188.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="310"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3199.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="311"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3209.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="312"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3219.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="313"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3230.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="314"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3240.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="315"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3250.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="316"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3261.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="317"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3271.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="318"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3281.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="319"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3292.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="320"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3302.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="321"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3312.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="322"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3323.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="323"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3333.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="324"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3343.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="325"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3354,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="326"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3364.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="327"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3374.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="328"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3384.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="329"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3395.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="330"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3405.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="331"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3415.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="332"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3426.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="333"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3436.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="334"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3446.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="335"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3457.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="336"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3467.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="337"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3477.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="338"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3488.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="339"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3498.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="340"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3508.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="341"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3519.12,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="342"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3529.44,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="343"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3539.76,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="344"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3550.08,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="345"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3560.4,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="346"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3570.72,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="347"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3581.04,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="348"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3591.36,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="349"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3601.68,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="350"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3612,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="351"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3622.32,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="352"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3632.64,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="353"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3642.96,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="354"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3653.28,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="355"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3663.6,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="356"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3673.92,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="357"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3684.24,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="358"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3694.56,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="359"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3704.88,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="360"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3715.2,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="361"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3725.52,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="362"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3735.84,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="363"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3746.16,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="364"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3756.48,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
[data-timeline="365"]::after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Cg transform='translate(3766.8,0)'%3E%3Crect x='-10' width='10' height='25' fill='red' /%3E%3C/g%3E%3C/svg%3E");
}
@133501
Copy link

133501 commented Apr 7, 2022

My version, where the day marker is a white circle in scss format is:

[data-timeline] {
  position: relative;
  display: block;
  aspect-ratio: 18/1;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Ctitle%3ETimeline 2022%3C/title%3E%3Cg class='bars'%3E%3Crect fill='%23cfe2f3' x='0' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23a2c4c9' x='320' width='280' height='25'%3E%3C/rect%3E%3Crect fill='%2376a5af' x='610' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%2393c47d' x='930' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%236aa84f' x='1240' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%238fce00' x='1560' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%23ffd966' x='1870' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23f1c232' x='2190' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23ce7e00' x='2510' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%23e06666' x='2820' width='310' height='25'%3E%3C/rect%3E%3Crect fill='%23f4cccc' x='3140' width='300' height='25'%3E%3C/rect%3E%3Crect fill='%23eeeeee' x='3450' width='310' height='25'%3E%3C/rect%3E%3C/g%3E%3Cg class='labels' style='font-size:50px;' text-anchor='start'%3E%3Ctext fill='%23CCE0E2' x='0' y='80'%3EJanuary%3C/text%3E%3Ctext fill='%23CCE0E2' x='320' y='80'%3EFebruary%3C/text%3E%3Ctext fill='%23CCE0E2' x='610' y='80'%3EMarch%3C/text%3E%3Ctext fill='%23CCE0E2' x='930' y='80'%3EApril%3C/text%3E%3Ctext fill='%23CCE0E2' x='1240' y='80'%3EMay%3C/text%3E%3Ctext fill='%23CCE0E2' x='1560' y='80'%3EJune%3C/text%3E%3Ctext fill='%23CCE0E2' x='1870' y='80'%3EJuly%3C/text%3E%3Ctext fill='%23CCE0E2' x='2190' y='80'%3EAugust%3C/text%3E%3Ctext fill='%23CCE0E2' x='2510' y='80'%3ESeptember%3C/text%3E%3Ctext fill='%23CCE0E2' x='2820' y='80'%3EOctober%3C/text%3E%3Ctext fill='%23CCE0E2' x='3140' y='80'%3ENovember%3C/text%3E%3Ctext fill='%23CCE0E2' x='3450' y='80'%3EDecember%3C/text%3E%3C/g%3E%3C/svg%3E");
}

@for $i from 1 through 365 {
  [data-timeline="#{$i}"]::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-repeat: no-repeat;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -100 3760 200'%3E%3Ccircle cx='#{$i * 10.32}' cy='14' r='25' stroke='black' fill='white'/%3E%3C/svg%3E");
  }
}

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment