body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */
  font-family: "Roboto", sans-serif;
  overflow: hidden;
  background-color: transparent;
  width: 100%;
}

#spinner {
  width: 100%;
  height: 100%;
  /*height: 56.25vw;*/
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.2);
}
#spinner .sk-cube-grid {
  width: 100px;
  height: 100px;
  margin: 100px auto;
}
#spinner .sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #008dc1;
  opacity: 0.3;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  border-radius: -25%;
}
#spinner .sk-cube-grid .sk-cube1, #spinner .sk-cube-grid .sk-cube2, #spinner .sk-cube-grid .sk-cube3,
#spinner .sk-cube-grid .sk-cube4, #spinner .sk-cube-grid .sk-cube6,
#spinner .sk-cube-grid .sk-cube7, #spinner .sk-cube-grid .sk-cube8, #spinner .sk-cube-grid .sk-cube9 {
  background-color: #fff;
  opacity: 0.8;
  border-radius: 50%;
}
#spinner .sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
#spinner .sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
#spinner .sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
#spinner .sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
#spinner .sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
#spinner .sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
#spinner .sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
#spinner .sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
#spinner .sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

main.main #spinner {
  display: none;
}

main.main.waiting #spinner, main.main.not-ready #spinner {
  display: flex;
}

main.main.waiting .hide-if-waiting {
  display: none !important;
}

main.main.small-screen .hide-if-small {
  display: none !important;
}

a {
  color: #008dc1;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  cursor: pointer;
}
a.current {
  font-weight: bold;
}
a.current:hover {
  text-decoration: none;
}

.info-panel {
  /*    background-color: #eeeeee; */
  height: 55px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  grid-auto-rows: 1fr;
}
.info-panel .item {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  flex: 1;
}
.info-panel .webcast-info {
  min-width: 0;
}
.info-panel .webcast-sidebar {
  flex: 0 1 140px;
}
.info-panel .title {
  margin: 0;
  padding: 0;
  padding-bottom: 4px;
  font-weight: bold;
  font-size: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.info-panel .description {
  margin: 0;
  padding: 0;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.info-panel .webcast-sidebar {
  text-align: right;
}
.info-panel .event-date {
  margin: 0;
  padding: 0;
  font-size: 13px;
  display: block;
}
.info-panel .case-navigator {
  display: flex;
  flex-direction: row;
}
.info-panel .previous-case {
  font-size: 10px;
  flex: 0;
  display: none;
}
.info-panel .current-case {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 13px;
  display: block;
  flex: 1;
}
.info-panel .next-case {
  font-size: 10px;
  flex: 0;
  display: none;
}
.info-panel div.item .box {
  padding: 4px;
  margin: 4px;
  box-sizing: border-box;
  height: 47px;
}

.small-screen .info-panel .webcast-stats {
  display: none;
}

/*
.info-panel .general-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px;
    width: 80%;
}

.info-panel .general-info .item {
    margin: 0 .5rem .5rem 0;
    text-decoration: none;
}
*/
div {
  outline: none;
}

/* iPhones hide the scrollbar in portrait mode when the page is taller than the viewport */
#iphoneToolbarHack {
  position: absolute;
  top: 100%;
  width: 100px;
  height: 100px;
  border: 1px solid red;
  visibility: hidden;
}

main {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 100%;
  overflow: hidden;
}
main .boxes {
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  order: 0;
}
main .controls {
  order: 100;
  display: flex;
  height: 35px;
}
main .controls .control {
  margin: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .controls .button img {
  max-width: 100%;
  max-height: 100%;
}
main .controls .button.control {
  width: 35px;
  border-radius: 0.2rem;
  transition: all 0.25s;
  cursor: pointer;
  color: #999;
}
main .controls .button.control:hover {
  color: #000;
  color: #008dc1;
}

div.box {
  box-sizing: border-box;
  flex: 0 0 20%;
  order: 1;
}

div.box.final {
  order: 1000;
  flex-grow: 1;
  display: flex;
}

div.box .container {
  margin: 0;
}

div.box.final .container {
  flex-grow: 1;
}

div.video-clone-box {
  cursor: pointer;
}

div.video-clone-box canvas {
  height: 100%;
  transition: filter 0.25s;
}

div.video-clone-box:hover canvas {
  transition: filter 0.25s;
}

div.box.active-video .video-clone-box {
  background-color: black;
}

div.box .active-symbol {
  display: none;
}

.paused canvas {
  filter: blur(2px);
}

div.box.selected-video .active-symbol {
  z-index: 100;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  align-items: flex-start;
}

div.box.selected-video .active-symbol .fa {
  color: #fff;
  text-shadow: 0 0 10px #000000;
  font-size: 120%;
  padding-top: 7px;
  padding-right: 7px;
}

div.box.active-video canvas {
  /*    opacity: 0.7; */
}

div.box.primary {
  flex: 0 0 100%;
  order: 0;
  z-index: 1000;
}

div.extras {
  text-align: right;
}

div.extras .button {
  float: right;
  width: 2.5rem;
  height: 2rem;
  background-color: #555;
  border-radius: 0.2rem;
  transition: all 0.25s;
  cursor: pointer;
  color: #999;
  text-align: center;
  margin-left: 0.2rem;
}

div.extras .button i {
  line-height: 2rem;
  font-size: 1.5rem;
}

div.extras .button:hover {
  color: #bbb;
  background-color: #777;
}

div.chapters {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
div.chapters .tbody .chapter-people {
  font-size: 12px;
}

div.chapters div.tbody {
  flex-grow: 1;
  overflow: auto;
  box-sizing: border-box;
}

table.chapters {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

table.chapters th, table.chapters td {
  padding: 0.5rem 0.2rem;
  border-bottom: 1px solid #eeeeee;
  text-align: left;
}

table.chapters th:first-child, table.chapters td:first-child {
  width: 7.5rem;
  text-align: center;
  font-size: 0.9rem;
  white-space: nowrap;
  color: #666666;
}

table.chapters th:last-child, table.chapters td:last-child {
  width: 5rem;
  text-align: center;
}

table.chapters th:last-child, table.chapters td.chapter-link {
  width: 3rem;
  text-align: center;
}

table.chapters tbody tr:hover td {
  background-color: #eeeeee;
}

div.controls .growing.control {
  flex: 1;
}

.a169 {
  padding-top: 56.25%;
  overflow: hidden;
  position: relative;
}

.a169 > * {
  width: 100%;
  top: 0;
  position: absolute;
}

.video-box {
  display: flex;
  background-color: black;
}

.video-box video {
  background-color: black;
  width: 100%;
  transition: filter 0.25s;
}

.playButton i.fa-pause {
  display: none;
}

.playing .playButton i.fa-pause {
  display: inline-block;
}

.playing .playButton i.fa-play {
  display: none;
}

.fullscreenButton i.fa-compress {
  display: none;
}

.fullscreen .fullscreenButton i.fa-compress {
  display: inline-block;
}

.fullscreen .fullscreenButton i.fa-expand {
  display: none;
}

.scrubBar {
  position: relative;
  cursor: pointer;
}

.scrubBar .line {
  background-color: #999;
  border-radius: 1px;
  height: 4px;
  width: 100%;
  transition: background-color 0.25s, height 0.25s;
  box-sizing: border-box;
}

.scrubBar:hover .line {
  background-color: #000;
  height: 6px;
}

.scrubBar .scrubber, .scrubBar .shadowScrubber {
  background-color: #999;
  height: 16px;
  width: 6px;
  position: absolute;
  border-radius: 1px;
  left: 0;
}

.scrubBar .shadowScrubber {
  opacity: 0;
  transition: opacity 0.25s;
}

.scrubbing .scrubBar .shadowScrubber {
  display: block;
  opacity: 0.5;
}

.scrubBar:hover .scrubber, .scubBar:hover .shadowScrubber {
  background-color: #bbb;
  background-color: #008dc1;
}

.logoButton {
  flex: 0 0 140px;
}

.small-screen .logoButton {
  flex: 0 0 30px;
}

.volumeBar {
  z-index: 1000;
}

.dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  display: none;
}

.dialog > *:not(.dialog-header) {
  width: 100%;
  height: calc(100% - 38.5px);
}

.dialog .dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  font-size: 18px;
  height: 38.5px;
  box-sizing: border-box;
  border-bottom: 1px solid #cccccc;
}

.dialog .dialog-header .dialog-title {
  margin: 0;
}

.dialog .dialog-header .dialog-spacer {
  flex: 1;
}

.dialog .dialog-header .dialog-close-btn {
  color: #999;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dialog .dialog-header .dialog-close-btn:hover {
  color: #000;
}

.dialog iframe {
  border: 0;
  background-color: #ffffff;
}

#debug {
  opacity: 0.8;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 20vh;
  background-color: #fff;
  z-index: 10000;
  font-size: 10px;
  overflow-y: scroll;
}

.ui-loader h1 {
  visibility: hidden;
}

.videoTime {
  order: 600;
  font-size: 94%;
}

.videoTime .split {
  padding: 0 3px;
  font-size: 80%;
}

.fullscreen .ui-page {
  background-color: #fff;
}

.logoButton {
  cursor: pointer;
}

.display-none {
  display: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

.share-wrapper {
  padding: 20px 40px;
  box-sizing: border-box;
  overflow-y: auto;
}

.share-wrapper h2:first-child {
  margin-top: 0;
}

.share-wrapper h2 {
  margin-top: 2em;
}

.share-wrapper p.url {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  padding: 10px;
  border-bottom: 1px solid gray;
  cursor: text;
  user-select: text;
  display: inline-block;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
}

.share-wrapper div.other {
  justify-content: space-between;
  flex-wrap: wrap;
}

.share-wrapper div.other > a {
  padding-left: 10px;
  margin: 0 5rem 0.25rem 0;
  font-size: 42px;
  color: #999;
  transition: color 0.25s;
}

.share-wrapper div.other > a:hover {
  color: black;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22data:;charset=utf-8,$cc-blue:%2520%2523008dc1;%250A%250Abody,%2520html%2520%257B%250A%2520%2520%2520%2520margin:%25200;%250A%2520%2520%2520%2520padding:%25200;%250A%2520%2520%2520%2520height:%2520100%2525;%250A%2520%2520%2520%2520-webkit-user-select:%2520none;%2520/*%2520Chrome%2520all%2520/%2520Safari%2520all%2520*/%250A%2520%2520%2520%2520-moz-user-select:%2520none;%2520/*%2520Firefox%2520all%2520*/%250A%2520%2520%2520%2520-ms-user-select:%2520none;%2520/*%2520IE%252010+%2520*/%250A%2520%2520%2520%2520user-select:%2520none;%2520/*%2520Likely%2520future%2520*/%250A%2520%2520%2520%2520font-family:%2520%2522Roboto%2522,%2520sans-serif;%250A%2520%2520%2520%2520overflow:%2520hidden;%250A%2520%2520%2520%2520background-color:%2520transparent;%250A%2520%2520%2520%2520width:%2520100%2525;%250A%257D%250A%250A%2523spinner%2520%257B%250A%2520%2520%2520%2520width:%2520100%2525;%250A%2520%2520%2520%2520height:%2520100%2525;%250A%2520%2520%2520%2520/*height:%252056.25vw;*/%250A%2520%2520%2520%2520position:%2520absolute;%250A%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520align-items:%2520center;%250A%2520%2520%2520%2520justify-content:%2520center;%250A%2520%2520%2520%2520z-index:%252010000;%250A%2520%2520%2520%2520background-color:%2520rgba(0,0,0,0.2);%250A%250A%2520%2520%2520%2520.sk-cube-grid%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520width:%2520100px;%250A%2520%2520%2520%2520%2520%2520%2520%2520height:%2520100px;%250A%2520%2520%2520%2520%2520%2520%2520%2520margin:%2520100px%2520auto;%250A%2520%2520%2520%2520%257D%250A%250A%2520%2520%2520%2520.sk-cube-grid%2520.sk-cube%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520width:%252033%2525;%250A%2520%2520%2520%2520%2520%2520%2520%2520height:%252033%2525;%250A%2520%2520%2520%2520%2520%2520%2520%2520background-color:%2520$cc-blue;%250A%2520%2520%2520%2520%2520%2520%2520%2520opacity:%25200.3;%250A%2520%2520%2520%2520%2520%2520%2520%2520float:%2520left;%250A%2520%2520%2520%2520%2520%2520%2520%2520-webkit-animation:%2520sk-cubeGridScaleDelay%25201.3s%2520infinite%2520ease-in-out;%250A%2520%2520%2520%2520%2520%2520%2520%2520animation:%2520sk-cubeGridScaleDelay%25201.3s%2520infinite%2520ease-in-out;%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520border-radius:%2520-25%2525;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520.sk-cube-grid%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520.sk-cube1,%2520.sk-cube2,%2520.sk-cube3,%250A%2520%2520%2520%2520%2520%2520%2520%2520.sk-cube4,%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520,%2520.sk-cube6,%250A%2520%2520%2520%2520%2520%2520%2520%2520.sk-cube7,%2520.sk-cube8,%2520.sk-cube9%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520background-color:%2520%2523fff;%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520opacity:%25200.8;%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520border-radius:%252050%2525;%250A%2520%2520%2520%2520%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520.sk-cube-grid%2520.sk-cube1%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520-webkit-animation-delay:%25200.2s;%250A%2520%2520%2520%2520%2520%2520%2520%2520animation-delay:%25200.2s;%2520%257D%250A%2520%2520%2520%2520.sk-cube-grid%2520.sk-cube2%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520-webkit-animation-delay:%25200.3s;%250A%2520%2520%2520%2520%2520%2520%2520%2520animation-delay:%25200.3s;%2520%257D%250A%2520%2520%2520%2520.sk-cube-grid%2520.sk-cube3%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520-webkit-animation-delay:%25200.4s;%250A%2520%2520%2520%2520%2520%2520%2520%2520animation-delay:%25200.4s;%2520%257D%250A%2520%2520%2520%2520.sk-cube-grid%2520.sk-cube4%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520-webkit-animation-delay:%25200.1s;%250A%2520%2520%2520%2520%2520%2520%2520%2520animation-delay:%25200.1s;%2520%257D%250A%2520%2520%2520%2520.sk-cube-grid%2520.sk-cube5%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520-webkit-animation-delay:%25200.2s;%250A%2520%2520%2520%2520%2520%2520%2520%2520animation-delay:%25200.2s;%2520%257D%250A%2520%2520%2520%2520.sk-cube-grid%2520.sk-cube6%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520-webkit-animation-delay:%25200.3s;%250A%2520%2520%2520%2520%2520%2520%2520%2520animation-delay:%25200.3s;%2520%257D%250A%2520%2520%2520%2520.sk-cube-grid%2520.sk-cube7%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520-webkit-animation-delay:%25200s;%250A%2520%2520%2520%2520%2520%2520%2520%2520animation-delay:%25200s;%2520%257D%250A%2520%2520%2520%2520.sk-cube-grid%2520.sk-cube8%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520-webkit-animation-delay:%25200.1s;%250A%2520%2520%2520%2520%2520%2520%2520%2520animation-delay:%25200.1s;%2520%257D%250A%2520%2520%2520%2520.sk-cube-grid%2520.sk-cube9%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520-webkit-animation-delay:%25200.2s;%250A%2520%2520%2520%2520%2520%2520%2520%2520animation-delay:%25200.2s;%2520%257D%250A%250A%2520%2520%2520%2520@-webkit-keyframes%2520sk-cubeGridScaleDelay%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%25200%2525,%252070%2525,%2520100%2525%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520-webkit-transform:%2520scale3D(1,%25201,%25201);%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520transform:%2520scale3D(1,%25201,%25201);%250A%2520%2520%2520%2520%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520%2520%2520%2520%252035%2525%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520-webkit-transform:%2520scale3D(0,%25200,%25201);%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520transform:%2520scale3D(0,%25200,%25201);%2520%250A%2520%2520%2520%2520%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520%257D%250A%250A%2520%2520%2520%2520@keyframes%2520sk-cubeGridScaleDelay%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%25200%2525,%252070%2525,%2520100%2525%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520-webkit-transform:%2520scale3D(1,%25201,%25201);%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520transform:%2520scale3D(1,%25201,%25201);%250A%2520%2520%2520%2520%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520%2520%2520%2520%252035%2525%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520-webkit-transform:%2520scale3D(0,%25200,%25201);%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520transform:%2520scale3D(0,%25200,%25201);%250A%2520%2520%2520%2520%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520%257D%250A%257D%250A%250Amain.main%2520%2523spinner%2520%257B%250A%2520%2520%2520%2520display:%2520none;%250A%257D%250Amain.main.waiting%2520%2523spinner,%2520main.main.not-ready%2520%2523spinner%2520%257B%250A%2520%2520%2520%2520display:%2520flex;%250A%257D%250Amain.main.waiting%2520.hide-if-waiting%2520%257B%250A%2520%2520%2520%2520display:%2520none%2520!important;%250A%257D%250Amain.main.small-screen%2520.hide-if-small%2520%257B%250A%2520%2520%2520%2520display:%2520none%2520!important;%250A%257D%250A%250Aa%2520%257B%250A%2520%2520%2520%2520color:%2520$cc-blue;%250A%2520%2520%2520%2520text-decoration:%2520none;%250A%250A%2520%2520%2520%2520&:hover%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520text-decoration:%2520underline;%250A%2520%2520%2520%2520%2520%2520%2520%2520cursor:%2520pointer;%250A%2520%2520%2520%2520%257D%250A%250A%2520%2520%2520%2520&.current%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520font-weight:%2520bold;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520&.current:hover%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520text-decoration:%2520none;%250A%2520%2520%2520%2520%257D%250A%257D%250A%250A.info-panel%2520%257B%250A/*%2520%2520%2520%2520background-color:%2520%2523eeeeee;%2520*/%250A%2520%2520%2520%2520height:%252055px;%250A%2520%2520%2520%2520margin:%25200;%250A%2520%2520%2520%2520padding:%25200;%250A%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520justify-content:%2520space-between;%250A%2520%2520%2520%2520grid-auto-rows:%25201fr;%250A%250A%2520%2520%2520%2520.item%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520margin:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520padding:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520box-sizing:%2520border-box;%250A%2520%2520%2520%2520%2520%2520%2520%2520flex:%25201;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520%250A%2520%2520%2520%2520.webcast-info%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520min-width:%25200;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520.webcast-sidebar%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520flex:%25200%25201%2520140px;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520.title%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520margin:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520padding:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520padding-bottom:%25204px;%250A%2520%2520%2520%2520%2520%2520%2520%2520font-weight:%2520bold;%250A%2520%2520%2520%2520%2520%2520%2520%2520font-size:%252015px;%250A%2520%2520%2520%2520%2520%2520%2520%2520white-space:%2520nowrap;%250A%2520%2520%2520%2520%2520%2520%2520%2520text-overflow:%2520ellipsis;%250A%2520%2520%2520%2520%2520%2520%2520%2520overflow:%2520hidden;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520.description%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520margin:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520padding:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520font-size:%252013px;%250A%2520%2520%2520%2520%2520%2520%2520%2520white-space:%2520nowrap;%250A%2520%2520%2520%2520%2520%2520%2520%2520text-overflow:%2520ellipsis;%250A%2520%2520%2520%2520%2520%2520%2520%2520overflow:%2520hidden;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520.webcast-sidebar%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520text-align:%2520right;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520.event-date%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520margin:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520padding:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520font-size:%252013px;%250A%2520%2520%2520%2520%2520%2520%2520%2520display:%2520block;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520.case-navigator%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520%2520%2520%2520%2520flex-direction:%2520row;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520.previous-case%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520font-size:%252010px;%250A%2520%2520%2520%2520%2520%2520%2520%2520flex:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520display:%2520none;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520.current-case%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520margin:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520padding:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520font-weight:%2520bold;%250A%2520%2520%2520%2520%2520%2520%2520%2520font-size:%252013px;%250A%2520%2520%2520%2520%2520%2520%2520%2520display:%2520block;%250A%2520%2520%2520%2520%2520%2520%2520%2520flex:%25201;%250A%2520%2520%2520%2520%257D%250A%2520%2520%2520%2520.next-case%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520font-size:%252010px;%250A%2520%2520%2520%2520%2520%2520%2520%2520flex:%25200;%250A%2520%2520%2520%2520%2520%2520%2520%2520display:%2520none;%250A%2520%2520%2520%2520%257D%250A%250A%2520%2520%2520%2520div.item%2520.box%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520padding:%25204px;%250A%2520%2520%2520%2520%2520%2520%2520%2520margin:%25204px;%250A%2520%2520%2520%2520%2520%2520%2520%2520box-sizing:%2520border-box;%250A%2520%2520%2520%2520%2520%2520%2520%2520height:%252047px;%250A%2520%2520%2520%2520%257D%250A%257D%250A.small-screen%2520.info-panel%2520.webcast-stats%2520%257B%250A%2520%2520%2520%2520display:%2520none;%250A%257D%250A%250A/*%250A.info-panel%2520.general-info%2520%257B%250A%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520justify-content:%2520space-between;%250A%2520%2520%2520%2520align-items:%2520center;%250A%2520%2520%2520%2520flex-wrap:%2520wrap;%250A%2520%2520%2520%2520padding:%25208px;%250A%2520%2520%2520%2520width:%252080%2525;%250A%257D%250A%250A.info-panel%2520.general-info%2520.item%2520%257B%250A%2520%2520%2520%2520margin:%25200%2520.5rem%2520.5rem%25200;%250A%2520%2520%2520%2520text-decoration:%2520none;%250A%257D%250A*/%250Adiv%2520%257B%250A%2520%2520%2520%2520outline:%2520none;%250A%257D%250A%250A/*%2520iPhones%2520hide%2520the%2520scrollbar%2520in%2520portrait%2520mode%2520when%2520the%2520page%2520is%2520taller%2520than%2520the%2520viewport%2520*/%250A%2523iphoneToolbarHack%2520%257B%250A%2520%2520%2520%2520position:%2520absolute;%250A%2520%2520%2520%2520top:%2520100%2525;%250A%2520%2520%2520%2520width:%2520100px;%250A%2520%2520%2520%2520height:%2520100px;%250A%2520%2520%2520%2520border:%25201px%2520solid%2520red;%250A%2520%2520%2520%2520visibility:%2520hidden;%250A%250A%257D%250A%250Ahtml.fullscreen,%2520body:fullscreen%2520%257B%250A%257D%250A%250Amain%2520%257B%250A%2520%2520%2520%2520margin:%25200%2520auto;%250A%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520flex-direction:%2520column;%250A%2520%2520%2520%2520position:%2520fixed;%250A%2520%2520%2520%2520width:%2520100%2525;%250A%2520%2520%2520%2520overflow:%2520hidden;%250A%250A%2520%2520%2520%2520.boxes%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520%2520%2520%2520%2520box-sizing:%2520border-box;%250A%2520%2520%2520%2520%2520%2520%2520%2520flex-wrap:%2520wrap;%250A%2520%2520%2520%2520%2520%2520%2520%2520order:%25200;%250A%2520%2520%2520%2520%257D%250A%250A%2520%2520%2520%2520.controls%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520order:%2520100;%250A%2520%2520%2520%2520%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520%2520%2520%2520%2520height:%252035px;%250A%250A%2520%2520%2520%2520%2520%2520%2520%2520.control%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520margin:%25202px;%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520justify-content:%2520center;%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520align-items:%2520center;%250A%2520%2520%2520%2520%2520%2520%2520%2520%257D%250A%250A%2520%2520%2520%2520%2520%2520%2520%2520.button%2520img%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520max-width:%2520100%2525;%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520max-height:%2520100%2525;%250A%2520%2520%2520%2520%2520%2520%2520%2520%257D%250A%250A%2520%2520%2520%2520%2520%2520%2520%2520.button.control%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520width:%252035px;%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520border-radius:%25200.2rem;%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520transition:%2520all%25200.25s;%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520cursor:%2520pointer;%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520color:%2520%2523999;%250A%2520%2520%2520%2520%2520%2520%2520%2520%257D%250A%250A%2520%2520%2520%2520%2520%2520%2520%2520.button.control:hover%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520color:%2520%2523000;%250A%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520%2520color:%2520$cc-blue;%250A%2520%2520%2520%2520%2520%2520%2520%2520%257D%250A%250A%2520%2520%2520%2520%257D%250A%257D%250Adiv.box%2520%257B%250A%2520%2520%2520%2520box-sizing:%2520border-box;%250A%2520%2520%2520%2520flex:%25200%25200%252020%2525;%250A%2520%2520%2520%2520order:%25201;%250A%257D%250A%250Adiv.box.final%2520%257B%250A%2520%2520%2520%2520order:%25201000;%250A%2520%2520%2520%2520flex-grow:%25201;%250A%2520%2520%2520%2520display:%2520flex;%250A%257D%250A%250Adiv.box%2520.container%2520%257B%250A%2520%2520%2520%2520margin:%25200;%250A%257D%250A%250Adiv.box.final%2520.container%2520%257B%250A%2520%2520%2520%2520flex-grow:%25201;%250A%257D%250A%250Adiv.video-clone-box%2520%257B%250A%2520%2520%2520%2520cursor:%2520pointer;%250A%257D%250A%250Adiv.video-clone-box%2520canvas%2520%257B%250A%2520%2520%2520%2520height:%2520100%2525;%250A%2520%2520%2520%2520transition:%2520filter%25200.25s;%250A%257D%250A%250Adiv.video-clone-box:hover%2520canvas%2520%257B%250A%2520%2520%2520%2520transition:%2520filter%25200.25s;%250A%257D%250A%250Adiv.box.active-video%2520.video-clone-box%2520%257B%250A%2520%2520%2520%2520background-color:%2520black;%250A%257D%250A%250Adiv.box%2520.active-symbol%2520%257B%250A%2520%2520%2520%2520display:%2520none;%250A%257D%250A%250A.paused%2520canvas%2520%257B%250A%2520%2520%2520%2520filter:%2520blur(2px);%250A%257D%250A%250Adiv.box.selected-video%2520.active-symbol%2520%257B%250A%2520%2520%2520%2520z-index:%2520100;%250A%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520height:%2520100%2525;%250A%2520%2520%2520%2520justify-content:%2520flex-end;%250A%2520%2520%2520%2520align-items:%2520flex-start;%250A%257D%250A%250Adiv.box.selected-video%2520.active-symbol%2520.fa%2520%257B%250A%2520%2520%2520%2520color:%2520%2523fff;%250A%2520%2520%2520%2520text-shadow:%25200%25200%252010px%2520%2523000000;%250A%2520%2520%2520%2520font-size:%2520120%2525;%250A%2520%2520%2520%2520padding-top:%25207px;%250A%2520%2520%2520%2520padding-right:%25207px;%250A%257D%250A%250Adiv.box.active-video%2520canvas%2520%257B%250A%2520%2520%2520%2520/*%2520%2520%2520%2520opacity:%25200.7;%2520*/%250A%257D%250A%250Adiv.box.primary%2520%257B%250A%2520%2520%2520%2520flex:%25200%25200%2520100%2525;%250A%2520%2520%2520%2520order:%25200;%250A%2520%2520%2520%2520z-index:%25201000;%250A%257D%250A%250Adiv.extras%2520%257B%250A%2520%2520%2520%2520text-align:%2520right;%250A%257D%250A%250Adiv.extras%2520.button%2520%257B%250A%2520%2520%2520%2520float:%2520right;%250A%2520%2520%2520%2520width:%25202.5rem;%250A%2520%2520%2520%2520height:%25202rem;%250A%2520%2520%2520%2520background-color:%2520%2523555;%250A%2520%2520%2520%2520border-radius:%25200.2rem;%250A%2520%2520%2520%2520transition:%2520all%25200.25s;%250A%2520%2520%2520%2520cursor:%2520pointer;%250A%2520%2520%2520%2520color:%2520%2523999;%250A%2520%2520%2520%2520text-align:%2520center;%250A%2520%2520%2520%2520margin-left:%25200.2rem;%250A%257D%250A%250Adiv.extras%2520.button%2520i%2520%257B%250A%2520%2520%2520%2520line-height:%25202rem;%250A%2520%2520%2520%2520font-size:%25201.5rem;%250A%257D%250A%250Adiv.extras%2520.button:hover%2520%257B%250A%2520%2520%2520%2520color:%2520%2523bbb;%250A%2520%2520%2520%2520background-color:%2520%2523777;%250A%257D%250A%250Adiv.chapters%2520%257B%250A%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520flex-direction:%2520column;%250A%2520%2520%2520%2520height:%2520100%2525;%250A%2520%2520%2520%2520box-sizing:%2520border-box;%250A%250A%2520%2520%2520%2520.tbody%2520.chapter-people%2520%257B%250A%2520%2520%2520%2520%2520%2520%2520%2520font-size:%252012px;%250A%2520%2520%2520%2520%257D%250A%250A%257D%250A%250Adiv.chapters%2520div.tbody%2520%257B%250A%2520%2520%2520%2520flex-grow:%25201;%250A%2520%2520%2520%2520overflow:%2520auto;%250A%2520%2520%2520%2520box-sizing:%2520border-box;%250A%257D%250A%250Atable.chapters%2520%257B%250A%2520%2520%2520%2520border-collapse:%2520collapse;%250A%2520%2520%2520%2520table-layout:%2520fixed;%250A%2520%2520%2520%2520width:%2520100%2525;%250A%257D%250A%250Atable.chapters%2520th,%2520table.chapters%2520td%2520%257B%250A%2520%2520%2520%2520padding:%25200.5rem%25200.2rem;%250A%2520%2520%2520%2520border-bottom:%25201px%2520solid%2520%2523eeeeee;%250A%2520%2520%2520%2520text-align:%2520left;%250A%257D%250A%250Atable.chapters%2520th:first-child,%2520table.chapters%2520td:first-child%2520%257B%250A%2520%2520%2520%2520width:%25207.5rem;%250A%2520%2520%2520%2520text-align:%2520center;%250A%2520%2520%2520%2520font-size:%25200.9rem;%250A%2520%2520%2520%2520white-space:%2520nowrap;%250A%2520%2520%2520%2520color:%2520%2523666666;%250A%257D%250A%250Atable.chapters%2520th:last-child,%2520table.chapters%2520td:last-child%2520%257B%250A%2520%2520%2520%2520width:%25205rem;%250A%2520%2520%2520%2520text-align:%2520center;%250A%257D%250A%250Atable.chapters%2520th:last-child,%2520table.chapters%2520td.chapter-link%2520%257B%250A%2520%2520%2520%2520width:%25203rem;%250A%2520%2520%2520%2520text-align:%2520center;%250A%257D%250A%250Atable.chapters%2520tbody%2520tr:hover%2520td%2520%257B%250A%2520%2520%2520%2520background-color:%2520%2523eeeeee;%250A%257D%250A%250Adiv.controls%2520.growing.control%2520%257B%250A%2520%2520%2520%2520flex:%25201;%250A%257D%250A%250A.a169%2520%257B%250A%2520%2520%2520%2520padding-top:%252056.25%2525;%250A%2520%2520%2520%2520overflow:%2520hidden;%250A%2520%2520%2520%2520position:%2520relative;%250A%257D%250A%250A.a169%2520%253E%2520*%2520%257B%250A%2520%2520%2520%2520width:%2520100%2525;%250A%2520%2520%2520%2520top:%25200;%250A%2520%2520%2520%2520position:%2520absolute;%250A%257D%250A%250A.video-box%2520%257B%250A%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520background-color:%2520black;%250A%257D%250A%250A.video-box%2520video%2520%257B%250A%2520%2520%2520%2520background-color:%2520black;%250A%2520%2520%2520%2520width:%2520100%2525;%250A%2520%2520%2520%2520transition:%2520filter%25200.25s;%250A%257D%250A%250A.playButton%2520i.fa-pause%2520%257B%250A%2520%2520%2520%2520display:%2520none;%250A%257D%250A%250A.playing%2520.playButton%2520i.fa-pause%2520%257B%250A%2520%2520%2520%2520display:%2520inline-block;%250A%257D%250A%250A.playing%2520.playButton%2520i.fa-play%2520%257B%250A%2520%2520%2520%2520display:%2520none;%250A%257D%250A%250A.fullscreenButton%2520i.fa-compress%2520%257B%250A%2520%2520%2520%2520display:%2520none;%250A%257D%250A%250A.fullscreen%2520.fullscreenButton%2520i.fa-compress%2520%257B%250A%2520%2520%2520%2520display:%2520inline-block;%250A%257D%250A%250A.fullscreen%2520.fullscreenButton%2520i.fa-expand%2520%257B%250A%2520%2520%2520%2520display:%2520none;%250A%257D%250A%250A.scrubBar%2520%257B%250A%2520%2520%2520%2520position:%2520relative;%250A%2520%2520%2520%2520cursor:%2520pointer;%250A%257D%250A%250A.scrubBar%2520.line%2520%257B%250A%2520%2520%2520%2520background-color:%2520%2523999;%250A%2520%2520%2520%2520border-radius:%25201px;%250A%2520%2520%2520%2520height:%25204px;%250A%2520%2520%2520%2520width:%2520100%2525;%250A%2520%2520%2520%2520transition:%2520background-color%25200.25s,%2520height%25200.25s;%250A%2520%2520%2520%2520box-sizing:%2520border-box;%250A%257D%250A%250A.scrubBar:hover%2520.line%2520%257B%250A%2520%2520%2520%2520background-color:%2520%2523000;%250A%2520%2520%2520%2520height:%25206px;%250A%257D%250A%250A.scrubBar%2520.scrubber,%2520.scrubBar%2520.shadowScrubber%2520%257B%250A%2520%2520%2520%2520background-color:%2520%2523999;%250A%2520%2520%2520%2520height:%252016px;%250A%2520%2520%2520%2520width:%25206px;%250A%2520%2520%2520%2520position:%2520absolute;%250A%2520%2520%2520%2520border-radius:%25201px;%250A%2520%2520%2520%2520left:%25200;%250A%257D%250A%250A.scrubBar%2520.shadowScrubber%2520%257B%250A%2520%2520%2520%2520opacity:%25200;%250A%2520%2520%2520%2520transition:%2520opacity%25200.25s;%250A%257D%250A%250A.scrubbing%2520.scrubBar%2520.shadowScrubber%2520%257B%250A%2520%2520%2520%2520display:%2520block;%250A%2520%2520%2520%2520opacity:%25200.5;%250A%257D%250A%250A.scrubBar:hover%2520.scrubber,%2520.scubBar:hover%2520.shadowScrubber%2520%257B%250A%2520%2520%2520%2520background-color:%2520%2523bbb;%250A%2520%2520%2520%2520background-color:%2520$cc-blue;%250A%257D%250A%250A.logoButton%2520%257B%250A%2520%2520%2520%2520flex:%25200%25200%2520140px;%250A%257D%250A%250A.small-screen%2520.logoButton%2520%257B%250A%2520%2520%2520%2520flex:%25200%25200%252030px;%250A%257D%250A%250A.volumeBar%2520%257B%250A%2520%2520%2520%2520z-index:%25201000;%250A%257D%250A%250A.dialog%2520%257B%250A%2520%2520%2520%2520position:%2520absolute;%250A%2520%2520%2520%2520top:%25200;%250A%2520%2520%2520%2520left:%25200;%250A%2520%2520%2520%2520right:%25200;%250A%2520%2520%2520%2520bottom:%25200;%250A%2520%2520%2520%2520background-color:%2520white;%250A%2520%2520%2520%2520display:%2520none;%250A%257D%250A%250A.dialog%2520%253E%2520*:not(.dialog-header)%2520%257B%250A%2520%2520%2520%2520width:%2520100%2525;%250A%2520%2520%2520%2520height:%2520calc(100%2525%2520-%252038.5px);%250A%257D%250A%250A.dialog%2520.dialog-header%2520%257B%250A%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520justify-content:%2520space-between;%250A%2520%2520%2520%2520align-items:%2520center;%250A%2520%2520%2520%2520padding:%25208px%252016px;%250A%2520%2520%2520%2520font-size:%252018px;%250A%2520%2520%2520%2520height:%252038.5px;%250A%2520%2520%2520%2520box-sizing:%2520border-box;%250A%2520%2520%2520%2520border-bottom:%25201px%2520solid%2520%2523cccccc;%250A%257D%250A%250A.dialog%2520.dialog-header%2520.dialog-title%2520%257B%250A%2520%2520%2520%2520margin:%25200;%250A%257D%250A%250A.dialog%2520.dialog-header%2520.dialog-spacer%2520%257B%250A%2520%2520%2520%2520flex:%25201;%250A%257D%250A%250A.dialog%2520.dialog-header%2520.dialog-close-btn%2520%257B%250A%2520%2520%2520%2520color:%2520%2523999;%250A%2520%2520%2520%2520cursor:%2520pointer;%250A%2520%2520%2520%2520display:%2520flex;%250A%2520%2520%2520%2520justify-content:%2520center;%250A%2520%2520%2520%2520align-items:%2520center;%250A%257D%250A%250A.dialog%2520.dialog-header%2520.dialog-close-btn:hover%2520%257B%250A%2520%2520%2520%2520color:%2520%2523000;%250A%257D%250A%250A.dialog%2520iframe%2520%257B%250A%2520%2520%2520%2520border:%25200;%250A%2520%2520%2520%2520background-color:%2520%2523ffffff;%250A%257D%250A%250A%2523debug%2520%257B%250A%2520%2520%2520%2520opacity:%25200.8;%250A%2520%2520%2520%2520position:%2520fixed;%250A%2520%2520%2520%2520top:%25200;%250A%2520%2520%2520%2520left:%25200;%250A%2520%2520%2520%2520right:%25200;%250A%2520%2520%2520%2520height:%252020vh;%250A%2520%2520%2520%2520background-color:%2520%2523fff;%250A%2520%2520%2520%2520z-index:%252010000;%250A%2520%2520%2520%2520font-size:%252010px;%250A%2520%2520%2520%2520overflow-y:%2520scroll;%250A%257D%250A%250A.ui-loader%2520h1%2520%257B%250A%2520%2520%2520%2520visibility:%2520hidden;%250A%257D%250A%250A.videoTime%2520%257B%250A%2520%2520%2520%2520order:%2520600;%250A%2520%2520%2520%2520font-size:%252094%2525;%250A%257D%250A%250A.videoTime%2520.split%2520%257B%250A%2520%2520%2520%2520padding:%25200%25203px;%250A%2520%2520%2520%2520font-size:%252080%2525;%250A%257D%250A%250A.videoTime%2520.duration%2520%257B%250A%257D%250A%250A.fullscreen%2520.ui-page%2520%257B%250A%2520%2520%2520%2520background-color:%2520%2523fff;%250A%257D%250A%250A.logoButton%2520%257B%250A%2520%2520%2520%2520cursor:%2520pointer;%250A%257D%250A%250A.display-none%2520%257B%250A%2520%2520%2520%2520display:%2520none%2520!important;%250A%257D%250A%250A.cursor-pointer%2520%257B%250A%2520%2520%2520%2520cursor:%2520pointer;%250A%257D%250A%250A.share-wrapper%2520%257B%250A%2520%2520%2520%2520padding:%252020px%252040px;%250A%2520%2520%2520%2520box-sizing:%2520border-box;%250A%2520%2520%2520%2520overflow-y:%2520auto;%250A%257D%250A%250A.share-wrapper%2520h2:first-child%2520%257B%250A%2520%2520%2520%2520margin-top:%25200;%250A%257D%250A%250A.share-wrapper%2520h2%2520%257B%250A%2520%2520%2520%2520margin-top:%25202em;%250A%257D%250A%250A.share-wrapper%2520p.url%2520%257B%250A%2520%2520%2520%2520font-size:%252014px;%250A%2520%2520%2520%2520font-weight:%2520bold;%250A%2520%2520%2520%2520margin:%25200;%250A%2520%2520%2520%2520padding:%252010px;%250A%2520%2520%2520%2520border-bottom:%25201px%2520solid%2520gray;%250A%2520%2520%2520%2520cursor:%2520text;%250A%2520%2520%2520%2520user-select:%2520text;%250A%2520%2520%2520%2520display:%2520inline-block;%250A%2520%2520%2520%2520text-overflow:%2520ellipsis;%250A%2520%2520%2520%2520max-width:%2520100%2525;%250A%2520%2520%2520%2520overflow:%2520hidden;%250A%257D%250A%250A.share-wrapper%2520div.other%2520%257B%250A%2520%2520%2520%2520justify-content:%2520space-between;%250A%2520%2520%2520%2520flex-wrap:%2520wrap;%250A%257D%250A%250A.share-wrapper%2520div.other%2520%253E%2520a%2520%257B%250A%2520%2520%2520%2520padding-left:%252010px;%250A%2520%2520%2520%2520margin:%25200%25205rem%2520.25rem%25200;%250A%2520%2520%2520%2520font-size:%252042px;%250A%2520%2520%2520%2520color:%2520%2523999;%250A%2520%2520%2520%2520transition:%2520color%2520.25s;%250A%257D%250A%250A.share-wrapper%2520div.other%2520%253E%2520a:hover%2520%257B%250A%2520%2520%2520%2520color:%2520black;%250A%257D%250A%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;EACA;EACA;EACA;AAA2B;EAC3B;AAAwB;EACxB;AAAuB;EACvB;AAAmB;EACnB;EACA;EACA;EACA;;;AAGJ;EACI;EACA;AACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA,kBApCE;EAqCF;EACA;EACA;EACA;EACA;;AAGA;AAAA;AAAA;EAGI;EACA;EACA;;AAGR;EACI;EACA;;AACJ;EACI;EACA;;AACJ;EACI;EACA;;AACJ;EACI;EACA;;AACJ;EACI;EACA;;AACJ;EACI;EACA;;AACJ;EACI;EACA;;AACJ;EACI;EACA;;AACJ;EACI;EACA;;AAEJ;EACI;IACI;IACA;;EAEJ;IACI;IACA;;;AAIR;EACI;IACI;IACA;;EAEJ;IACI;IACA;;;;AAKZ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAEJ;EACI;;;AAGJ;EACI,OArHM;EAsHN;;AAEA;EACI;EACA;;AAGJ;EACI;;AAEJ;EACI;;;AAIR;AACA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAEJ;EACI;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;;AAEJ;EACI;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;;AAGR;EACI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAeA;EACI;;;AAGJ;AACA;EACI;EACA;EACA;EACA;EACA;EACA;;;AAOJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA,OAnSF;;;AAwSV;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;AACI;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;;;AAKR;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA,kBAzhBM;;;AA4hBV;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAMJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI%22,%22sourcesContent%22:%5B%22$cc-blue:%20%23008dc1;%5Cn%5Cnbody,%20html%20%7B%5Cn%20%20%20%20margin:%200;%5Cn%20%20%20%20padding:%200;%5Cn%20%20%20%20height:%20100%25;%5Cn%20%20%20%20-webkit-user-select:%20none;%20/*%20Chrome%20all%20/%20Safari%20all%20*/%5Cn%20%20%20%20-moz-user-select:%20none;%20/*%20Firefox%20all%20*/%5Cn%20%20%20%20-ms-user-select:%20none;%20/*%20IE%2010+%20*/%5Cn%20%20%20%20user-select:%20none;%20/*%20Likely%20future%20*/%5Cn%20%20%20%20font-family:%20%5C%22Roboto%5C%22,%20sans-serif;%5Cn%20%20%20%20overflow:%20hidden;%5Cn%20%20%20%20background-color:%20transparent;%5Cn%20%20%20%20width:%20100%25;%5Cn%7D%5Cn%5Cn%23spinner%20%7B%5Cn%20%20%20%20width:%20100%25;%5Cn%20%20%20%20height:%20100%25;%5Cn%20%20%20%20/*height:%2056.25vw;*/%5Cn%20%20%20%20position:%20absolute;%5Cn%20%20%20%20display:%20flex;%5Cn%20%20%20%20align-items:%20center;%5Cn%20%20%20%20justify-content:%20center;%5Cn%20%20%20%20z-index:%2010000;%5Cn%20%20%20%20background-color:%20rgba(0,0,0,0.2);%5Cn%5Cn%20%20%20%20.sk-cube-grid%20%7B%5Cn%20%20%20%20%20%20%20%20width:%20100px;%5Cn%20%20%20%20%20%20%20%20height:%20100px;%5Cn%20%20%20%20%20%20%20%20margin:%20100px%20auto;%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20.sk-cube-grid%20.sk-cube%20%7B%5Cn%20%20%20%20%20%20%20%20width:%2033%25;%5Cn%20%20%20%20%20%20%20%20height:%2033%25;%5Cn%20%20%20%20%20%20%20%20background-color:%20$cc-blue;%5Cn%20%20%20%20%20%20%20%20opacity:%200.3;%5Cn%20%20%20%20%20%20%20%20float:%20left;%5Cn%20%20%20%20%20%20%20%20-webkit-animation:%20sk-cubeGridScaleDelay%201.3s%20infinite%20ease-in-out;%5Cn%20%20%20%20%20%20%20%20animation:%20sk-cubeGridScaleDelay%201.3s%20infinite%20ease-in-out;%20%5Cn%20%20%20%20%20%20%20%20border-radius:%20-25%25;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20.sk-cube-grid%20%7B%5Cn%20%20%20%20%20%20%20%20.sk-cube1,%20.sk-cube2,%20.sk-cube3,%5Cn%20%20%20%20%20%20%20%20.sk-cube4,%20%20%20%20%20%20%20%20%20%20,%20.sk-cube6,%5Cn%20%20%20%20%20%20%20%20.sk-cube7,%20.sk-cube8,%20.sk-cube9%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20%20%20background-color:%20%23fff;%5Cn%20%20%20%20%20%20%20%20%20%20%20%20opacity:%200.8;%5Cn%20%20%20%20%20%20%20%20%20%20%20%20border-radius:%2050%25;%5Cn%20%20%20%20%20%20%20%20%7D%5Cn%20%20%20%20%7D%5Cn%20%20%20%20.sk-cube-grid%20.sk-cube1%20%7B%5Cn%20%20%20%20%20%20%20%20-webkit-animation-delay:%200.2s;%5Cn%20%20%20%20%20%20%20%20animation-delay:%200.2s;%20%7D%5Cn%20%20%20%20.sk-cube-grid%20.sk-cube2%20%7B%5Cn%20%20%20%20%20%20%20%20-webkit-animation-delay:%200.3s;%5Cn%20%20%20%20%20%20%20%20animation-delay:%200.3s;%20%7D%5Cn%20%20%20%20.sk-cube-grid%20.sk-cube3%20%7B%5Cn%20%20%20%20%20%20%20%20-webkit-animation-delay:%200.4s;%5Cn%20%20%20%20%20%20%20%20animation-delay:%200.4s;%20%7D%5Cn%20%20%20%20.sk-cube-grid%20.sk-cube4%20%7B%5Cn%20%20%20%20%20%20%20%20-webkit-animation-delay:%200.1s;%5Cn%20%20%20%20%20%20%20%20animation-delay:%200.1s;%20%7D%5Cn%20%20%20%20.sk-cube-grid%20.sk-cube5%20%7B%5Cn%20%20%20%20%20%20%20%20-webkit-animation-delay:%200.2s;%5Cn%20%20%20%20%20%20%20%20animation-delay:%200.2s;%20%7D%5Cn%20%20%20%20.sk-cube-grid%20.sk-cube6%20%7B%5Cn%20%20%20%20%20%20%20%20-webkit-animation-delay:%200.3s;%5Cn%20%20%20%20%20%20%20%20animation-delay:%200.3s;%20%7D%5Cn%20%20%20%20.sk-cube-grid%20.sk-cube7%20%7B%5Cn%20%20%20%20%20%20%20%20-webkit-animation-delay:%200s;%5Cn%20%20%20%20%20%20%20%20animation-delay:%200s;%20%7D%5Cn%20%20%20%20.sk-cube-grid%20.sk-cube8%20%7B%5Cn%20%20%20%20%20%20%20%20-webkit-animation-delay:%200.1s;%5Cn%20%20%20%20%20%20%20%20animation-delay:%200.1s;%20%7D%5Cn%20%20%20%20.sk-cube-grid%20.sk-cube9%20%7B%5Cn%20%20%20%20%20%20%20%20-webkit-animation-delay:%200.2s;%5Cn%20%20%20%20%20%20%20%20animation-delay:%200.2s;%20%7D%5Cn%5Cn%20%20%20%20@-webkit-keyframes%20sk-cubeGridScaleDelay%20%7B%5Cn%20%20%20%20%20%20%20%200%25,%2070%25,%20100%25%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20%20%20-webkit-transform:%20scale3D(1,%201,%201);%5Cn%20%20%20%20%20%20%20%20%20%20%20%20transform:%20scale3D(1,%201,%201);%5Cn%20%20%20%20%20%20%20%20%7D%5Cn%20%20%20%20%20%20%20%2035%25%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20%20%20-webkit-transform:%20scale3D(0,%200,%201);%5Cn%20%20%20%20%20%20%20%20%20%20%20%20transform:%20scale3D(0,%200,%201);%20%5Cn%20%20%20%20%20%20%20%20%7D%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20@keyframes%20sk-cubeGridScaleDelay%20%7B%5Cn%20%20%20%20%20%20%20%200%25,%2070%25,%20100%25%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20%20%20-webkit-transform:%20scale3D(1,%201,%201);%5Cn%20%20%20%20%20%20%20%20%20%20%20%20transform:%20scale3D(1,%201,%201);%5Cn%20%20%20%20%20%20%20%20%7D%5Cn%20%20%20%20%20%20%20%2035%25%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20%20%20-webkit-transform:%20scale3D(0,%200,%201);%5Cn%20%20%20%20%20%20%20%20%20%20%20%20transform:%20scale3D(0,%200,%201);%5Cn%20%20%20%20%20%20%20%20%7D%5Cn%20%20%20%20%7D%5Cn%7D%5Cn%5Cnmain.main%20%23spinner%20%7B%5Cn%20%20%20%20display:%20none;%5Cn%7D%5Cnmain.main.waiting%20%23spinner,%20main.main.not-ready%20%23spinner%20%7B%5Cn%20%20%20%20display:%20flex;%5Cn%7D%5Cnmain.main.waiting%20.hide-if-waiting%20%7B%5Cn%20%20%20%20display:%20none%20!important;%5Cn%7D%5Cnmain.main.small-screen%20.hide-if-small%20%7B%5Cn%20%20%20%20display:%20none%20!important;%5Cn%7D%5Cn%5Cna%20%7B%5Cn%20%20%20%20color:%20$cc-blue;%5Cn%20%20%20%20text-decoration:%20none;%5Cn%5Cn%20%20%20%20&:hover%20%7B%5Cn%20%20%20%20%20%20%20%20text-decoration:%20underline;%5Cn%20%20%20%20%20%20%20%20cursor:%20pointer;%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20&.current%20%7B%5Cn%20%20%20%20%20%20%20%20font-weight:%20bold;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20&.current:hover%20%7B%5Cn%20%20%20%20%20%20%20%20text-decoration:%20none;%5Cn%20%20%20%20%7D%5Cn%7D%5Cn%5Cn.info-panel%20%7B%5Cn/*%20%20%20%20background-color:%20%23eeeeee;%20*/%5Cn%20%20%20%20height:%2055px;%5Cn%20%20%20%20margin:%200;%5Cn%20%20%20%20padding:%200;%5Cn%20%20%20%20display:%20flex;%5Cn%20%20%20%20justify-content:%20space-between;%5Cn%20%20%20%20grid-auto-rows:%201fr;%5Cn%5Cn%20%20%20%20.item%20%7B%5Cn%20%20%20%20%20%20%20%20margin:%200;%5Cn%20%20%20%20%20%20%20%20padding:%200;%5Cn%20%20%20%20%20%20%20%20box-sizing:%20border-box;%5Cn%20%20%20%20%20%20%20%20flex:%201;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20%5Cn%20%20%20%20.webcast-info%20%7B%5Cn%20%20%20%20%20%20%20%20min-width:%200;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20.webcast-sidebar%20%7B%5Cn%20%20%20%20%20%20%20%20flex:%200%201%20140px;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20.title%20%7B%5Cn%20%20%20%20%20%20%20%20margin:%200;%5Cn%20%20%20%20%20%20%20%20padding:%200;%5Cn%20%20%20%20%20%20%20%20padding-bottom:%204px;%5Cn%20%20%20%20%20%20%20%20font-weight:%20bold;%5Cn%20%20%20%20%20%20%20%20font-size:%2015px;%5Cn%20%20%20%20%20%20%20%20white-space:%20nowrap;%5Cn%20%20%20%20%20%20%20%20text-overflow:%20ellipsis;%5Cn%20%20%20%20%20%20%20%20overflow:%20hidden;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20.description%20%7B%5Cn%20%20%20%20%20%20%20%20margin:%200;%5Cn%20%20%20%20%20%20%20%20padding:%200;%5Cn%20%20%20%20%20%20%20%20font-size:%2013px;%5Cn%20%20%20%20%20%20%20%20white-space:%20nowrap;%5Cn%20%20%20%20%20%20%20%20text-overflow:%20ellipsis;%5Cn%20%20%20%20%20%20%20%20overflow:%20hidden;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20.webcast-sidebar%20%7B%5Cn%20%20%20%20%20%20%20%20text-align:%20right;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20.event-date%20%7B%5Cn%20%20%20%20%20%20%20%20margin:%200;%5Cn%20%20%20%20%20%20%20%20padding:%200;%5Cn%20%20%20%20%20%20%20%20font-size:%2013px;%5Cn%20%20%20%20%20%20%20%20display:%20block;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20.case-navigator%20%7B%5Cn%20%20%20%20%20%20%20%20display:%20flex;%5Cn%20%20%20%20%20%20%20%20flex-direction:%20row;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20.previous-case%20%7B%5Cn%20%20%20%20%20%20%20%20font-size:%2010px;%5Cn%20%20%20%20%20%20%20%20flex:%200;%5Cn%20%20%20%20%20%20%20%20display:%20none;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20.current-case%20%7B%5Cn%20%20%20%20%20%20%20%20margin:%200;%5Cn%20%20%20%20%20%20%20%20padding:%200;%5Cn%20%20%20%20%20%20%20%20font-weight:%20bold;%5Cn%20%20%20%20%20%20%20%20font-size:%2013px;%5Cn%20%20%20%20%20%20%20%20display:%20block;%5Cn%20%20%20%20%20%20%20%20flex:%201;%5Cn%20%20%20%20%7D%5Cn%20%20%20%20.next-case%20%7B%5Cn%20%20%20%20%20%20%20%20font-size:%2010px;%5Cn%20%20%20%20%20%20%20%20flex:%200;%5Cn%20%20%20%20%20%20%20%20display:%20none;%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20div.item%20.box%20%7B%5Cn%20%20%20%20%20%20%20%20padding:%204px;%5Cn%20%20%20%20%20%20%20%20margin:%204px;%5Cn%20%20%20%20%20%20%20%20box-sizing:%20border-box;%5Cn%20%20%20%20%20%20%20%20height:%2047px;%5Cn%20%20%20%20%7D%5Cn%7D%5Cn.small-screen%20.info-panel%20.webcast-stats%20%7B%5Cn%20%20%20%20display:%20none;%5Cn%7D%5Cn%5Cn/*%5Cn.info-panel%20.general-info%20%7B%5Cn%20%20%20%20display:%20flex;%5Cn%20%20%20%20justify-content:%20space-between;%5Cn%20%20%20%20align-items:%20center;%5Cn%20%20%20%20flex-wrap:%20wrap;%5Cn%20%20%20%20padding:%208px;%5Cn%20%20%20%20width:%2080%25;%5Cn%7D%5Cn%5Cn.info-panel%20.general-info%20.item%20%7B%5Cn%20%20%20%20margin:%200%20.5rem%20.5rem%200;%5Cn%20%20%20%20text-decoration:%20none;%5Cn%7D%5Cn*/%5Cndiv%20%7B%5Cn%20%20%20%20outline:%20none;%5Cn%7D%5Cn%5Cn/*%20iPhones%20hide%20the%20scrollbar%20in%20portrait%20mode%20when%20the%20page%20is%20taller%20than%20the%20viewport%20*/%5Cn%23iphoneToolbarHack%20%7B%5Cn%20%20%20%20position:%20absolute;%5Cn%20%20%20%20top:%20100%25;%5Cn%20%20%20%20width:%20100px;%5Cn%20%20%20%20height:%20100px;%5Cn%20%20%20%20border:%201px%20solid%20red;%5Cn%20%20%20%20visibility:%20hidden;%5Cn%5Cn%7D%5Cn%5Cnhtml.fullscreen,%20body:fullscreen%20%7B%5Cn%7D%5Cn%5Cnmain%20%7B%5Cn%20%20%20%20margin:%200%20auto;%5Cn%20%20%20%20display:%20flex;%5Cn%20%20%20%20flex-direction:%20column;%5Cn%20%20%20%20position:%20fixed;%5Cn%20%20%20%20width:%20100%25;%5Cn%20%20%20%20overflow:%20hidden;%5Cn%5Cn%20%20%20%20.boxes%20%7B%5Cn%20%20%20%20%20%20%20%20display:%20flex;%5Cn%20%20%20%20%20%20%20%20box-sizing:%20border-box;%5Cn%20%20%20%20%20%20%20%20flex-wrap:%20wrap;%5Cn%20%20%20%20%20%20%20%20order:%200;%5Cn%20%20%20%20%7D%5Cn%5Cn%20%20%20%20.controls%20%7B%5Cn%20%20%20%20%20%20%20%20order:%20100;%5Cn%20%20%20%20%20%20%20%20display:%20flex;%5Cn%20%20%20%20%20%20%20%20height:%2035px;%5Cn%5Cn%20%20%20%20%20%20%20%20.control%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20%20%20margin:%202px;%5Cn%20%20%20%20%20%20%20%20%20%20%20%20display:%20flex;%5Cn%20%20%20%20%20%20%20%20%20%20%20%20justify-content:%20center;%5Cn%20%20%20%20%20%20%20%20%20%20%20%20align-items:%20center;%5Cn%20%20%20%20%20%20%20%20%7D%5Cn%5Cn%20%20%20%20%20%20%20%20.button%20img%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20%20%20max-width:%20100%25;%5Cn%20%20%20%20%20%20%20%20%20%20%20%20max-height:%20100%25;%5Cn%20%20%20%20%20%20%20%20%7D%5Cn%5Cn%20%20%20%20%20%20%20%20.button.control%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20%20%20width:%2035px;%5Cn%20%20%20%20%20%20%20%20%20%20%20%20border-radius:%200.2rem;%5Cn%20%20%20%20%20%20%20%20%20%20%20%20transition:%20all%200.25s;%5Cn%20%20%20%20%20%20%20%20%20%20%20%20cursor:%20pointer;%5Cn%20%20%20%20%20%20%20%20%20%20%20%20color:%20%23999;%5Cn%20%20%20%20%20%20%20%20%7D%5Cn%5Cn%20%20%20%20%20%20%20%20.button.control:hover%20%7B%5Cn%20%20%20%20%20%20%20%20%20%20%20%20color:%20%23000;%5Cn%20%20%20%20%20%20%20%20%20%20%20%20color:%20$cc-blue;%5Cn%20%20%20%20%20%20%20%20%7D%5Cn%5Cn%20%20%20%20%7D%5Cn%7D%5Cndiv.box%20%7B%5Cn%20%20%20%20box-sizing:%20border-box;%5Cn%20%20%20%20flex:%200%200%2020%25;%5Cn%20%20%20%20order:%201;%5Cn%7D%5Cn%5Cndiv.box.final%20%7B%5Cn%20%20%20%20order:%201000;%5Cn%20%20%20%20flex-grow:%201;%5Cn%20%20%20%20display:%20flex;%5Cn%7D%5Cn%5Cndiv.box%20.container%20%7B%5Cn%20%20%20%20margin:%200;%5Cn%7D%5Cn%5Cndiv.box.final%20.container%20%7B%5Cn%20%20%20%20flex-grow:%201;%5Cn%7D%5Cn%5Cndiv.video-clone-box%20%7B%5Cn%20%20%20%20cursor:%20pointer;%5Cn%7D%5Cn%5Cndiv.video-clone-box%20canvas%20%7B%5Cn%20%20%20%20height:%20100%25;%5Cn%20%20%20%20transition:%20filter%200.25s;%5Cn%7D%5Cn%5Cndiv.video-clone-box:hover%20canvas%20%7B%5Cn%20%20%20%20transition:%20filter%200.25s;%5Cn%7D%5Cn%5Cndiv.box.active-video%20.video-clone-box%20%7B%5Cn%20%20%20%20background-color:%20black;%5Cn%7D%5Cn%5Cndiv.box%20.active-symbol%20%7B%5Cn%20%20%20%20display:%20none;%5Cn%7D%5Cn%5Cn.paused%20canvas%20%7B%5Cn%20%20%20%20filter:%20blur(2px);%5Cn%7D%5Cn%5Cndiv.box.selected-video%20.active-symbol%20%7B%5Cn%20%20%20%20z-index:%20100;%5Cn%20%20%20%20display:%20flex;%5Cn%20%20%20%20height:%20100%25;%5Cn%20%20%20%20justify-content:%20flex-end;%5Cn%20%20%20%20align-items:%20flex-start;%5Cn%7D%5Cn%5Cndiv.box.selected-video%20.active-symbol%20.fa%20%7B%5Cn%20%20%20%20color:%20%23fff;%5Cn%20%20%20%20text-shadow:%200%200%2010px%20%23000000;%5Cn%20%20%20%20font-size:%20120%25;%5Cn%20%20%20%20padding-top:%207px;%5Cn%20%20%20%20padding-right:%207px;%5Cn%7D%5Cn%5Cndiv.box.active-video%20canvas%20%7B%5Cn%20%20%20%20/*%20%20%20%20opacity:%200.7;%20*/%5Cn%7D%5Cn%5Cndiv.box.primary%20%7B%5Cn%20%20%20%20flex:%200%200%20100%25;%5Cn%20%20%20%20order:%200;%5Cn%20%20%20%20z-index:%201000;%5Cn%7D%5Cn%5Cndiv.extras%20%7B%5Cn%20%20%20%20text-align:%20right;%5Cn%7D%5Cn%5Cndiv.extras%20.button%20%7B%5Cn%20%20%20%20float:%20right;%5Cn%20%20%20%20width:%202.5rem;%5Cn%20%20%20%20height:%202rem;%5Cn%20%20%20%20background-color:%20%23555;%5Cn%20%20%20%20border-radius:%200.2rem;%5Cn%20%20%20%20transition:%20all%200.25s;%5Cn%20%20%20%20cursor:%20pointer;%5Cn%20%20%20%20color:%20%23999;%5Cn%20%20%20%20text-align:%20center;%5Cn%20%20%20%20margin-left:%200.2rem;%5Cn%7D%5Cn%5Cndiv.extras%20.button%20i%20%7B%5Cn%20%20%20%20line-height:%202rem;%5Cn%20%20%20%20font-size:%201.5rem;%5Cn%7D%5Cn%5Cndiv.extras%20.button:hover%20%7B%5Cn%20%20%20%20color:%20%23bbb;%5Cn%20%20%20%20background-color:%20%23777;%5Cn%7D%5Cn%5Cndiv.chapters%20%7B%5Cn%20%20%20%20display:%20flex;%5Cn%20%20%20%20flex-direction:%20column;%5Cn%20%20%20%20height:%20100%25;%5Cn%20%20%20%20box-sizing:%20border-box;%5Cn%5Cn%20%20%20%20.tbody%20.chapter-people%20%7B%5Cn%20%20%20%20%20%20%20%20font-size:%2012px;%5Cn%20%20%20%20%7D%5Cn%5Cn%7D%5Cn%5Cndiv.chapters%20div.tbody%20%7B%5Cn%20%20%20%20flex-grow:%201;%5Cn%20%20%20%20overflow:%20auto;%5Cn%20%20%20%20box-sizing:%20border-box;%5Cn%7D%5Cn%5Cntable.chapters%20%7B%5Cn%20%20%20%20border-collapse:%20collapse;%5Cn%20%20%20%20table-layout:%20fixed;%5Cn%20%20%20%20width:%20100%25;%5Cn%7D%5Cn%5Cntable.chapters%20th,%20table.chapters%20td%20%7B%5Cn%20%20%20%20padding:%200.5rem%200.2rem;%5Cn%20%20%20%20border-bottom:%201px%20solid%20%23eeeeee;%5Cn%20%20%20%20text-align:%20left;%5Cn%7D%5Cn%5Cntable.chapters%20th:first-child,%20table.chapters%20td:first-child%20%7B%5Cn%20%20%20%20width:%207.5rem;%5Cn%20%20%20%20text-align:%20center;%5Cn%20%20%20%20font-size:%200.9rem;%5Cn%20%20%20%20white-space:%20nowrap;%5Cn%20%20%20%20color:%20%23666666;%5Cn%7D%5Cn%5Cntable.chapters%20th:last-child,%20table.chapters%20td:last-child%20%7B%5Cn%20%20%20%20width:%205rem;%5Cn%20%20%20%20text-align:%20center;%5Cn%7D%5Cn%5Cntable.chapters%20th:last-child,%20table.chapters%20td.chapter-link%20%7B%5Cn%20%20%20%20width:%203rem;%5Cn%20%20%20%20text-align:%20center;%5Cn%7D%5Cn%5Cntable.chapters%20tbody%20tr:hover%20td%20%7B%5Cn%20%20%20%20background-color:%20%23eeeeee;%5Cn%7D%5Cn%5Cndiv.controls%20.growing.control%20%7B%5Cn%20%20%20%20flex:%201;%5Cn%7D%5Cn%5Cn.a169%20%7B%5Cn%20%20%20%20padding-top:%2056.25%25;%5Cn%20%20%20%20overflow:%20hidden;%5Cn%20%20%20%20position:%20relative;%5Cn%7D%5Cn%5Cn.a169%20%3E%20*%20%7B%5Cn%20%20%20%20width:%20100%25;%5Cn%20%20%20%20top:%200;%5Cn%20%20%20%20position:%20absolute;%5Cn%7D%5Cn%5Cn.video-box%20%7B%5Cn%20%20%20%20display:%20flex;%5Cn%20%20%20%20background-color:%20black;%5Cn%7D%5Cn%5Cn.video-box%20video%20%7B%5Cn%20%20%20%20background-color:%20black;%5Cn%20%20%20%20width:%20100%25;%5Cn%20%20%20%20transition:%20filter%200.25s;%5Cn%7D%5Cn%5Cn.playButton%20i.fa-pause%20%7B%5Cn%20%20%20%20display:%20none;%5Cn%7D%5Cn%5Cn.playing%20.playButton%20i.fa-pause%20%7B%5Cn%20%20%20%20display:%20inline-block;%5Cn%7D%5Cn%5Cn.playing%20.playButton%20i.fa-play%20%7B%5Cn%20%20%20%20display:%20none;%5Cn%7D%5Cn%5Cn.fullscreenButton%20i.fa-compress%20%7B%5Cn%20%20%20%20display:%20none;%5Cn%7D%5Cn%5Cn.fullscreen%20.fullscreenButton%20i.fa-compress%20%7B%5Cn%20%20%20%20display:%20inline-block;%5Cn%7D%5Cn%5Cn.fullscreen%20.fullscreenButton%20i.fa-expand%20%7B%5Cn%20%20%20%20display:%20none;%5Cn%7D%5Cn%5Cn.scrubBar%20%7B%5Cn%20%20%20%20position:%20relative;%5Cn%20%20%20%20cursor:%20pointer;%5Cn%7D%5Cn%5Cn.scrubBar%20.line%20%7B%5Cn%20%20%20%20background-color:%20%23999;%5Cn%20%20%20%20border-radius:%201px;%5Cn%20%20%20%20height:%204px;%5Cn%20%20%20%20width:%20100%25;%5Cn%20%20%20%20transition:%20background-color%200.25s,%20height%200.25s;%5Cn%20%20%20%20box-sizing:%20border-box;%5Cn%7D%5Cn%5Cn.scrubBar:hover%20.line%20%7B%5Cn%20%20%20%20background-color:%20%23000;%5Cn%20%20%20%20height:%206px;%5Cn%7D%5Cn%5Cn.scrubBar%20.scrubber,%20.scrubBar%20.shadowScrubber%20%7B%5Cn%20%20%20%20background-color:%20%23999;%5Cn%20%20%20%20height:%2016px;%5Cn%20%20%20%20width:%206px;%5Cn%20%20%20%20position:%20absolute;%5Cn%20%20%20%20border-radius:%201px;%5Cn%20%20%20%20left:%200;%5Cn%7D%5Cn%5Cn.scrubBar%20.shadowScrubber%20%7B%5Cn%20%20%20%20opacity:%200;%5Cn%20%20%20%20transition:%20opacity%200.25s;%5Cn%7D%5Cn%5Cn.scrubbing%20.scrubBar%20.shadowScrubber%20%7B%5Cn%20%20%20%20display:%20block;%5Cn%20%20%20%20opacity:%200.5;%5Cn%7D%5Cn%5Cn.scrubBar:hover%20.scrubber,%20.scubBar:hover%20.shadowScrubber%20%7B%5Cn%20%20%20%20background-color:%20%23bbb;%5Cn%20%20%20%20background-color:%20$cc-blue;%5Cn%7D%5Cn%5Cn.logoButton%20%7B%5Cn%20%20%20%20flex:%200%200%20140px;%5Cn%7D%5Cn%5Cn.small-screen%20.logoButton%20%7B%5Cn%20%20%20%20flex:%200%200%2030px;%5Cn%7D%5Cn%5Cn.volumeBar%20%7B%5Cn%20%20%20%20z-index:%201000;%5Cn%7D%5Cn%5Cn.dialog%20%7B%5Cn%20%20%20%20position:%20absolute;%5Cn%20%20%20%20top:%200;%5Cn%20%20%20%20left:%200;%5Cn%20%20%20%20right:%200;%5Cn%20%20%20%20bottom:%200;%5Cn%20%20%20%20background-color:%20white;%5Cn%20%20%20%20display:%20none;%5Cn%7D%5Cn%5Cn.dialog%20%3E%20*:not(.dialog-header)%20%7B%5Cn%20%20%20%20width:%20100%25;%5Cn%20%20%20%20height:%20calc(100%25%20-%2038.5px);%5Cn%7D%5Cn%5Cn.dialog%20.dialog-header%20%7B%5Cn%20%20%20%20display:%20flex;%5Cn%20%20%20%20justify-content:%20space-between;%5Cn%20%20%20%20align-items:%20center;%5Cn%20%20%20%20padding:%208px%2016px;%5Cn%20%20%20%20font-size:%2018px;%5Cn%20%20%20%20height:%2038.5px;%5Cn%20%20%20%20box-sizing:%20border-box;%5Cn%20%20%20%20border-bottom:%201px%20solid%20%23cccccc;%5Cn%7D%5Cn%5Cn.dialog%20.dialog-header%20.dialog-title%20%7B%5Cn%20%20%20%20margin:%200;%5Cn%7D%5Cn%5Cn.dialog%20.dialog-header%20.dialog-spacer%20%7B%5Cn%20%20%20%20flex:%201;%5Cn%7D%5Cn%5Cn.dialog%20.dialog-header%20.dialog-close-btn%20%7B%5Cn%20%20%20%20color:%20%23999;%5Cn%20%20%20%20cursor:%20pointer;%5Cn%20%20%20%20display:%20flex;%5Cn%20%20%20%20justify-content:%20center;%5Cn%20%20%20%20align-items:%20center;%5Cn%7D%5Cn%5Cn.dialog%20.dialog-header%20.dialog-close-btn:hover%20%7B%5Cn%20%20%20%20color:%20%23000;%5Cn%7D%5Cn%5Cn.dialog%20iframe%20%7B%5Cn%20%20%20%20border:%200;%5Cn%20%20%20%20background-color:%20%23ffffff;%5Cn%7D%5Cn%5Cn%23debug%20%7B%5Cn%20%20%20%20opacity:%200.8;%5Cn%20%20%20%20position:%20fixed;%5Cn%20%20%20%20top:%200;%5Cn%20%20%20%20left:%200;%5Cn%20%20%20%20right:%200;%5Cn%20%20%20%20height:%2020vh;%5Cn%20%20%20%20background-color:%20%23fff;%5Cn%20%20%20%20z-index:%2010000;%5Cn%20%20%20%20font-size:%2010px;%5Cn%20%20%20%20overflow-y:%20scroll;%5Cn%7D%5Cn%5Cn.ui-loader%20h1%20%7B%5Cn%20%20%20%20visibility:%20hidden;%5Cn%7D%5Cn%5Cn.videoTime%20%7B%5Cn%20%20%20%20order:%20600;%5Cn%20%20%20%20font-size:%2094%25;%5Cn%7D%5Cn%5Cn.videoTime%20.split%20%7B%5Cn%20%20%20%20padding:%200%203px;%5Cn%20%20%20%20font-size:%2080%25;%5Cn%7D%5Cn%5Cn.videoTime%20.duration%20%7B%5Cn%7D%5Cn%5Cn.fullscreen%20.ui-page%20%7B%5Cn%20%20%20%20background-color:%20%23fff;%5Cn%7D%5Cn%5Cn.logoButton%20%7B%5Cn%20%20%20%20cursor:%20pointer;%5Cn%7D%5Cn%5Cn.display-none%20%7B%5Cn%20%20%20%20display:%20none%20!important;%5Cn%7D%5Cn%5Cn.cursor-pointer%20%7B%5Cn%20%20%20%20cursor:%20pointer;%5Cn%7D%5Cn%5Cn.share-wrapper%20%7B%5Cn%20%20%20%20padding:%2020px%2040px;%5Cn%20%20%20%20box-sizing:%20border-box;%5Cn%20%20%20%20overflow-y:%20auto;%5Cn%7D%5Cn%5Cn.share-wrapper%20h2:first-child%20%7B%5Cn%20%20%20%20margin-top:%200;%5Cn%7D%5Cn%5Cn.share-wrapper%20h2%20%7B%5Cn%20%20%20%20margin-top:%202em;%5Cn%7D%5Cn%5Cn.share-wrapper%20p.url%20%7B%5Cn%20%20%20%20font-size:%2014px;%5Cn%20%20%20%20font-weight:%20bold;%5Cn%20%20%20%20margin:%200;%5Cn%20%20%20%20padding:%2010px;%5Cn%20%20%20%20border-bottom:%201px%20solid%20gray;%5Cn%20%20%20%20cursor:%20text;%5Cn%20%20%20%20user-select:%20text;%5Cn%20%20%20%20display:%20inline-block;%5Cn%20%20%20%20text-overflow:%20ellipsis;%5Cn%20%20%20%20max-width:%20100%25;%5Cn%20%20%20%20overflow:%20hidden;%5Cn%7D%5Cn%5Cn.share-wrapper%20div.other%20%7B%5Cn%20%20%20%20justify-content:%20space-between;%5Cn%20%20%20%20flex-wrap:%20wrap;%5Cn%7D%5Cn%5Cn.share-wrapper%20div.other%20%3E%20a%20%7B%5Cn%20%20%20%20padding-left:%2010px;%5Cn%20%20%20%20margin:%200%205rem%20.25rem%200;%5Cn%20%20%20%20font-size:%2042px;%5Cn%20%20%20%20color:%20%23999;%5Cn%20%20%20%20transition:%20color%20.25s;%5Cn%7D%5Cn%5Cn.share-wrapper%20div.other%20%3E%20a:hover%20%7B%5Cn%20%20%20%20color:%20black;%5Cn%7D%5Cn%22%5D%7D */
/*  */