
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_95cd5273a04a685d32cf41aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1952c1831d377a0e39c82d68.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eb409d23301c2d83bd4a801f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5014293cd1d401786cf9fec7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.809000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d161577fd4f646a1cbb54157.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_20968bcd6ca73d5c39108d26.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_003c758e00a8a305fe5e73ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.760000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0eb921c533f5fd0f6de01955.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dcfdebc20b5df30ed5c434ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.748000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_eb8099e5d763bab8006e6259.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eee5800342f52831839b0429.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_78e9697a65eb388e80759a5b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5911f1806d5fba816f94038e.woff2')format("woff");}.fff{font-family:fff;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_719e7e29404e5f98781ceeaa.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0d3e247eceb7893e093274d8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7261b2fdc2a5803d03becb67.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.053000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_62da2ec917a62d3d4644f342.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4ee8246e6d5da9b5ddd8a38a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.766000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e9c3a61f9b6fd3528adcdad3.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_3015591454732e5520db8559.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_41c53da6cf0159eaee6dac76.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_8bba78298cf11715d30a6eff.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_ece8802203460761cc60f65b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a0eccec1e9967d9caea6ca28.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_b52140f0778f0eb46eb388a5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.020000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_92e6ee3ccc4c95ec071167a8.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_53691d86da3bd7143416c4d2.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_fa92bc75d61f64b59b8f5cf3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_28e024cd9153603917a6a103.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.963867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_ece8802203460761cc60f65b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_7a5cc1dbc7448c88a8724f3e.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_1c78bf2d5323e257116850e5.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_2280a4781fd632fb397ff4c1.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.748000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_bb379e85c43cea464da368df.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_e5ea980c56acfba32a7ad971.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.020000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_9d3861914e3056d64b0bdf97.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_e7b6272f6523229fd495372c.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_530bd1b669af2df5dc155036.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_01885586cfba524916664dbf.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.014000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_7e6bb90fa37f16c98f04a671.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_32a84ad2c154d8e9c01fc430.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_835f6fa51c3c016068975c65.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_1a678dfb7cf608881e6bf6c8.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.970703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_e6a30e2756c6828f6b057c0f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_e8c05973591b564c674cbdbb.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_c0ade6fdb78d1a33e3987507.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_c16afb1d4188d0df0188615a.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_96a3d3e4967a776f4c123f00.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.120000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_d3c04375aa9f24362fd4fcb4.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_62a941c0dbb03d93b93d52ce.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_079339d5e93188c8ebb9afea.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_47ad148220e4be27cfed6e3a.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_a02c3f8369cd3bce6df6de00.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_4c53a174273be9ececa62cd4.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_24a893d3a09f728663f13706.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_0fc0c0d02aeb88a380d77d50.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_532ff36bb97f024c3227230f.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_12159d4fa7e3a2592d0a5a93.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.020000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_ac279137471d014a7ed107d8.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_1e813d2e1470994e19f26558.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_9b3f5b055db67fc1512b5fb2.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.063000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_38b8c48887bce29e16377ba4.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.981445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_c0b2d4746a4f454e395310dd.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_67c308ae82ab02f390c3e1f8.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.063000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_0239ad4268d9fc7ca3f7d43b.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_1f2ee0fbe0837decd3183be5.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.020000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_e76fac31019089a3ce33a3f2.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_1c272ae1e1a6f5bce5f79636.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_364a89749e951b625fc6fa4c.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.020000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_af6e17138d2eb1d7ac500e01.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_bfdfe3f1c6221197e2790162.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_5504e512affc810ba5eb0b3e.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.963379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.032766px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-55.485000px;}
.ws5{word-spacing:-26.722332px;}
.ws9{word-spacing:-26.325000px;}
.wsd{word-spacing:-22.842000px;}
.ws1{word-spacing:-21.806541px;}
.ws8{word-spacing:-21.465000px;}
.wsa{word-spacing:-21.060000px;}
.ws3{word-spacing:-20.716478px;}
.wsb{word-spacing:-20.412000px;}
.wsc{word-spacing:-20.169000px;}
.ws2{word-spacing:-19.764000px;}
.ws6{word-spacing:-14.762250px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:460.831680px;}
._c{margin-left:-9.585654px;}
._4{margin-left:-7.929713px;}
._5{margin-left:-5.896949px;}
._1{margin-left:-4.291591px;}
._2{margin-left:-2.672895px;}
._0{margin-left:-1.308984px;}
._3{width:1.867455px;}
._f{width:201.208680px;}
._7{width:204.370290px;}
._d{width:236.010510px;}
._8{width:340.855290px;}
._e{width:372.496320px;}
._6{width:388.726290px;}
._b{width:420.367320px;}
._a{width:442.586430px;}
._10{width:446.797200px;}
._9{width:512.624417px;}
.fcd{color:rgb(252,236,153);}
.fc0{color:rgb(242,242,243);}
.fc1{color:rgb(229,224,223);}
.fc6{color:rgb(203,169,107);}
.fc3{color:rgb(18,3,54);}
.fcb{color:rgb(124,212,208);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(7,7,12);}
.fc7{color:rgb(242,242,242);}
.fc9{color:rgb(255,255,255);}
.fcc{color:rgb(175,203,248);}
.fc5{color:transparent;}
.fc8{color:rgb(226,251,109);}
.fca{color:rgb(179,128,255);}
.fs8{font-size:16.200000px;}
.fs3{font-size:64.800000px;}
.fse{font-size:65.610000px;}
.fsf{font-size:72.900000px;}
.fs2{font-size:81.000000px;}
.fsd{font-size:84.832800px;}
.fs9{font-size:84.903600px;}
.fsb{font-size:91.125000px;}
.fs6{font-size:96.917962px;}
.fs1{font-size:101.250000px;}
.fsc{font-size:106.041000px;}
.fs5{font-size:117.529800px;}
.fs10{font-size:121.500000px;}
.fsa{font-size:125.239151px;}
.fs4{font-size:141.036000px;}
.fs0{font-size:162.000000px;}
.fs7{font-size:202.500000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y44{bottom:0.315234px;}
.y93{bottom:0.495117px;}
.y1c{bottom:0.750000px;}
.y68{bottom:9.000000px;}
.y6a{bottom:10.125000px;}
.y87{bottom:23.625150px;}
.y6c{bottom:39.375000px;}
.y86{bottom:56.250150px;}
.yb1{bottom:85.499883px;}
.yd4{bottom:85.559700px;}
.y85{bottom:88.875150px;}
.y4f{bottom:93.375066px;}
.yd6{bottom:94.529850px;}
.y32{bottom:94.559700px;}
.y3a{bottom:95.654850px;}
.yb3{bottom:101.249883px;}
.y81{bottom:105.929850px;}
.yb0{bottom:116.999883px;}
.y1b{bottom:117.030000px;}
.yd3{bottom:118.184700px;}
.y92{bottom:120.404850px;}
.yd5{bottom:127.154850px;}
.yb2{bottom:132.749883px;}
.y39{bottom:139.529850px;}
.yc5{bottom:140.654850px;}
.y58{bottom:141.306150px;}
.yaf{bottom:148.499883px;}
.y1a{bottom:149.655000px;}
.y84{bottom:153.000150px;}
.yd2{bottom:159.810000px;}
.y79{bottom:160.905000px;}
.y57{bottom:168.404550px;}
.y6b{bottom:173.250000px;}
.yc4{bottom:173.280000px;}
.yf{bottom:180.084000px;}
.y83{bottom:185.625150px;}
.y19{bottom:191.280000px;}
.y78{bottom:193.530000px;}
.y56{bottom:194.326500px;}
.y8{bottom:200.280000px;}
.yae{bottom:210.374883px;}
.yc{bottom:212.731500px;}
.y12{bottom:215.343000px;}
.y5d{bottom:217.891650px;}
.y4e{bottom:219.374766px;}
.y72{bottom:220.530000px;}
.ye{bottom:220.566000px;}
.y37{bottom:224.467500px;}
.y55{bottom:230.851500px;}
.yc3{bottom:235.155000px;}
.y69{bottom:236.250000px;}
.ya3{bottom:237.374883px;}
.yad{bottom:241.874883px;}
.y5c{bottom:243.813600px;}
.y41{bottom:244.155000px;}
.yd1{bottom:245.310000px;}
.y82{bottom:250.875150px;}
.y7{bottom:250.905000px;}
.y4d{bottom:251.999766px;}
.y77{bottom:252.030000px;}
.yb{bottom:253.213500px;}
.y11{bottom:255.825600px;}
.yd{bottom:257.131500px;}
.y2a{bottom:259.135080px;}
.y43{bottom:262.155000px;}
.ya2{bottom:269.999883px;}
.y5b{bottom:270.912000px;}
.y67{bottom:271.125000px;}
.yac{bottom:273.374883px;}
.y71{bottom:279.030000px;}
.y38{bottom:282.967500px;}
.y4c{bottom:284.624766px;}
.y76{bottom:284.655000px;}
.y29{bottom:285.549180px;}
.yd0{bottom:286.935000px;}
.ya{bottom:289.779000px;}
.y18{bottom:291.405000px;}
.y10{bottom:292.390500px;}
.y42{bottom:293.655000px;}
.y53{bottom:294.780000px;}
.ya1{bottom:302.624883px;}
.y6{bottom:306.030000px;}
.y5a{bottom:307.437450px;}
.y28{bottom:312.907230px;}
.y52{bottom:326.280000px;}
.yc0{bottom:327.405000px;}
.y60{bottom:331.002000px;}
.y17{bottom:333.030000px;}
.y4b{bottom:334.124766px;}
.ya0{bottom:334.124883px;}
.ya8{bottom:336.374883px;}
.y5{bottom:338.655000px;}
.y27{bottom:339.321930px;}
.y59{bottom:340.428000px;}
.y75{bottom:343.155000px;}
.y40{bottom:345.405000px;}
.y91{bottom:346.530000px;}
.y26{bottom:350.642250px;}
.yab{bottom:352.124883px;}
.yc2{bottom:357.780000px;}
.y5f{bottom:358.101000px;}
.ybf{bottom:358.905000px;}
.ybd{bottom:360.030000px;}
.y1f{bottom:361.963350px;}
.ya7{bottom:367.874883px;}
.ycf{bottom:371.310000px;}
.y74{bottom:375.780000px;}
.y80{bottom:376.905000px;}
.y25{bottom:377.057550px;}
.y3f{bottom:378.030000px;}
.y36{bottom:378.592500px;}
.y90{bottom:379.155000px;}
.yaa{bottom:383.624883px;}
.y1e{bottom:388.378050px;}
.yc1{bottom:390.405000px;}
.ybe{bottom:391.530000px;}
.y5e{bottom:394.626000px;}
.y70{bottom:397.155000px;}
.ya6{bottom:399.374883px;}
.ybc{bottom:401.655000px;}
.y24{bottom:404.415000px;}
.y51{bottom:407.280000px;}
.yce{bottom:412.935000px;}
.y64{bottom:414.655650px;}
.ya9{bottom:415.124883px;}
.y1d{bottom:415.735500px;}
.y8f{bottom:418.530000px;}
.y7f{bottom:427.530000px;}
.y23{bottom:430.829700px;}
.ya5{bottom:430.874883px;}
.y4a{bottom:433.124766px;}
.y16{bottom:433.155000px;}
.y73{bottom:435.405000px;}
.y63{bottom:440.577000px;}
.y3c{bottom:445.530000px;}
.y4{bottom:453.405000px;}
.y8e{bottom:457.905000px;}
.y7e{bottom:460.155000px;}
.y49{bottom:465.749766px;}
.y6f{bottom:465.780000px;}
.y34{bottom:474.217500px;}
.y15{bottom:474.780000px;}
.y62{bottom:477.103050px;}
.y3b{bottom:478.155000px;}
.y3e{bottom:479.280000px;}
.y3{bottom:484.905000px;}
.ya4{bottom:488.249883px;}
.y8d{bottom:490.530000px;}
.y50{bottom:491.655000px;}
.y89{bottom:492.780000px;}
.y7d{bottom:493.905000px;}
.y48{bottom:498.374766px;}
.ycd{bottom:498.435000px;}
.y22{bottom:498.752100px;}
.y6e{bottom:502.905000px;}
.y3d{bottom:510.780000px;}
.y61{bottom:511.272000px;}
.ybb{bottom:513.030000px;}
.y21{bottom:525.166800px;}
.y88{bottom:525.405000px;}
.y7c{bottom:526.530000px;}
.y2{bottom:528.780000px;}
.yb9{bottom:531.000000px;}
.y35{bottom:533.842500px;}
.ycc{bottom:540.060000px;}
.y8c{bottom:541.155000px;}
.y47{bottom:547.874766px;}
.y20{bottom:552.524850px;}
.y14{bottom:564.780000px;}
.y9f{bottom:570.374883px;}
.y9{bottom:574.462500px;}
.y2e{bottom:575.163480px;}
.yba{bottom:580.530000px;}
.yb8{bottom:581.625000px;}
.y31{bottom:594.060000px;}
.y6d{bottom:598.530000px;}
.y33{bottom:600.780000px;}
.y2d{bottom:601.578780px;}
.yb7{bottom:614.250000px;}
.y8b{bottom:614.280000px;}
.y7b{bottom:616.530000px;}
.y54{bottom:624.405000px;}
.y30{bottom:625.560000px;}
.y13{bottom:626.655000px;}
.y2c{bottom:627.992880px;}
.yb6{bottom:646.875000px;}
.y46{bottom:650.249766px;}
.y2b{bottom:654.407580px;}
.ycb{bottom:667.185000px;}
.y2f{bottom:672.810000px;}
.y8a{bottom:691.905000px;}
.yb5{bottom:696.375000px;}
.y45{bottom:724.499766px;}
.y9c{bottom:725.624883px;}
.yca{bottom:751.560000px;}
.y9e{bottom:755.999883px;}
.y9b{bottom:767.249883px;}
.yb4{bottom:786.375000px;}
.yc9{bottom:793.185000px;}
.y9d{bottom:797.624883px;}
.y7a{bottom:799.905000px;}
.yc8{bottom:870.810000px;}
.yc7{bottom:925.935000px;}
.y98{bottom:953.999883px;}
.y97{bottom:986.624883px;}
.yc6{bottom:1000.185000px;}
.y96{bottom:1018.124883px;}
.y9a{bottom:1048.499883px;}
.y95{bottom:1059.749883px;}
.y66{bottom:1063.125000px;}
.y99{bottom:1090.124883px;}
.y65{bottom:1110.375000px;}
.y94{bottom:1250.999883px;}
.hb{height:15.390000px;}
.h25{height:25.875000px;}
.h27{height:29.250000px;}
.h5{height:49.264453px;}
.h26{height:49.666770px;}
.h2a{height:55.185300px;}
.h28{height:55.331100px;}
.h39{height:57.585938px;}
.h29{height:58.500000px;}
.h34{height:60.750000px;}
.h4{height:61.580566px;}
.h2f{height:61.976074px;}
.hf{height:64.272025px;}
.h21{height:64.494468px;}
.h3f{height:64.586426px;}
.h10{height:67.699013px;}
.h16{height:68.981625px;}
.h8{height:72.688471px;}
.h1c{height:76.140000px;}
.h3{height:76.646250px;}
.h1e{height:76.975708px;}
.h2e{height:77.470093px;}
.h20{height:78.470340px;}
.h22{height:79.742832px;}
.h12{height:80.493750px;}
.h23{height:80.566307px;}
.h9{height:86.972052px;}
.h7{height:88.382410px;}
.h2b{height:91.975500px;}
.h17{height:94.806037px;}
.h3b{height:96.592500px;}
.h13{height:99.565125px;}
.h6{height:112.969836px;}
.h1b{height:119.880000px;}
.h38{height:121.824000px;}
.h2{height:122.634000px;}
.h1f{height:143.370000px;}
.h1d{height:152.280000px;}
.ha{height:153.292500px;}
.h11{height:160.987500px;}
.h33{height:189.135000px;}
.h30{height:289.125150px;}
.h1{height:760.500000px;}
.h0{height:760.680000px;}
.h32{height:796.500000px;}
.h31{height:796.680000px;}
.h1a{height:820.124766px;}
.h18{height:820.440000px;}
.h19{height:820.500000px;}
.h3a{height:891.000000px;}
.h2d{height:904.500000px;}
.h2c{height:904.680000px;}
.h15{height:958.500000px;}
.h14{height:958.680000px;}
.he{height:1050.750000px;}
.hd{height:1051.500000px;}
.hc{height:1051.560000px;}
.h3e{height:1095.750000px;}
.h3d{height:1096.500000px;}
.h3c{height:1096.560000px;}
.h24{height:1215.000000px;}
.h37{height:1355.624883px;}
.h36{height:1356.000000px;}
.h35{height:1356.120000px;}
.w4{width:579.375000px;}
.w2{width:617.625000px;}
.w1{width:859.500000px;}
.w3{width:927.000000px;}
.w0{width:1350.000000px;}
.x0{left:0.000000px;}
.x44{left:19.195500px;}
.xc{left:70.875000px;}
.x2e{left:75.497250px;}
.x2a{left:76.587900px;}
.x4a{left:82.248165px;}
.x48{left:91.125000px;}
.x3d{left:92.250000px;}
.x33{left:93.375000px;}
.x30{left:100.125000px;}
.x22{left:101.250000px;}
.x36{left:110.040300px;}
.x3b{left:114.513900px;}
.xd{left:121.306650px;}
.x3a{left:123.038100px;}
.x10{left:124.068150px;}
.x41{left:132.046950px;}
.x32{left:136.687500px;}
.x11{left:143.849400px;}
.x2f{left:152.542200px;}
.x37{left:154.813500px;}
.xf{left:174.375000px;}
.x3c{left:186.055050px;}
.x54{left:201.164100px;}
.x2b{left:211.095750px;}
.x23{left:217.915500px;}
.x1c{left:231.362955px;}
.x1e{left:243.007215px;}
.x1d{left:247.222455px;}
.x42{left:257.344350px;}
.x4{left:260.374335px;}
.x5{left:266.517000px;}
.x3{left:275.167500px;}
.x28{left:284.010000px;}
.x29{left:288.070500px;}
.x38{left:327.755340px;}
.xe{left:335.883000px;}
.x57{left:378.034500px;}
.x14{left:382.670295px;}
.x13{left:387.534750px;}
.x18{left:401.935830px;}
.x12{left:423.191400px;}
.x1b{left:428.674455px;}
.x19{left:430.708830px;}
.x1a{left:433.435785px;}
.x58{left:443.532000px;}
.x59{left:493.875000px;}
.x50{left:495.861300px;}
.x34{left:502.875000px;}
.x51{left:535.042950px;}
.x27{left:536.238000px;}
.x24{left:539.929500px;}
.x55{left:541.986000px;}
.x5a{left:544.219500px;}
.x2{left:550.140000px;}
.x4d{left:557.770950px;}
.x3e{left:562.465500px;}
.x1{left:577.125000px;}
.x3f{left:583.857000px;}
.x52{left:591.451200px;}
.x15{left:593.101710px;}
.x5b{left:594.562500px;}
.x4e{left:596.196750px;}
.x8{left:604.252500px;}
.x16{left:605.365380px;}
.x7{left:611.210595px;}
.x4c{left:616.042500px;}
.x6{left:619.944000px;}
.x17{left:628.846830px;}
.x5c{left:644.907000px;}
.x53{left:688.236000px;}
.x5d{left:695.250000px;}
.x43{left:700.875000px;}
.x49{left:705.375000px;}
.x25{left:718.786500px;}
.x31{left:730.072500px;}
.x40{left:758.284500px;}
.x26{left:831.129000px;}
.x45{left:839.161500px;}
.x46{left:871.540500px;}
.x2c{left:874.529250px;}
.x2d{left:884.654250px;}
.xb{left:910.279500px;}
.x35{left:912.375000px;}
.xa{left:922.317900px;}
.x39{left:933.607500px;}
.x1f{left:938.056500px;}
.x20{left:941.115090px;}
.x56{left:966.322500px;}
.x9{left:970.554000px;}
.x21{left:1028.689290px;}
.x47{left:1043.262000px;}
.x4f{left:1062.931800px;}
.x4b{left:1272.814500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.029125pt;}
.ws4{word-spacing:-49.320000pt;}
.ws5{word-spacing:-23.753184pt;}
.ws9{word-spacing:-23.400000pt;}
.wsd{word-spacing:-20.304000pt;}
.ws1{word-spacing:-19.383592pt;}
.ws8{word-spacing:-19.080000pt;}
.wsa{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.414647pt;}
.wsb{word-spacing:-18.144000pt;}
.wsc{word-spacing:-17.928000pt;}
.ws2{word-spacing:-17.568000pt;}
.ws6{word-spacing:-13.122000pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:409.628160pt;}
._c{margin-left:-8.520582pt;}
._4{margin-left:-7.048634pt;}
._5{margin-left:-5.241733pt;}
._1{margin-left:-3.814747pt;}
._2{margin-left:-2.375906pt;}
._0{margin-left:-1.163542pt;}
._3{width:1.659960pt;}
._f{width:178.852160pt;}
._7{width:181.662480pt;}
._d{width:209.787120pt;}
._8{width:302.982480pt;}
._e{width:331.107840pt;}
._6{width:345.534480pt;}
._b{width:373.659840pt;}
._a{width:393.410160pt;}
._10{width:397.153067pt;}
._9{width:455.666148pt;}
.fs8{font-size:14.400000pt;}
.fs3{font-size:57.600000pt;}
.fse{font-size:58.320000pt;}
.fsf{font-size:64.800000pt;}
.fs2{font-size:72.000000pt;}
.fsd{font-size:75.406933pt;}
.fs9{font-size:75.469867pt;}
.fsb{font-size:81.000000pt;}
.fs6{font-size:86.149299pt;}
.fs1{font-size:90.000000pt;}
.fsc{font-size:94.258667pt;}
.fs5{font-size:104.470933pt;}
.fs10{font-size:108.000000pt;}
.fsa{font-size:111.323689pt;}
.fs4{font-size:125.365333pt;}
.fs0{font-size:144.000000pt;}
.fs7{font-size:180.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y44{bottom:0.280208pt;}
.y93{bottom:0.440104pt;}
.y1c{bottom:0.666667pt;}
.y68{bottom:8.000000pt;}
.y6a{bottom:9.000000pt;}
.y87{bottom:21.000133pt;}
.y6c{bottom:35.000000pt;}
.y86{bottom:50.000133pt;}
.yb1{bottom:75.999896pt;}
.yd4{bottom:76.053067pt;}
.y85{bottom:79.000133pt;}
.y4f{bottom:83.000059pt;}
.yd6{bottom:84.026533pt;}
.y32{bottom:84.053067pt;}
.y3a{bottom:85.026533pt;}
.yb3{bottom:89.999896pt;}
.y81{bottom:94.159867pt;}
.yb0{bottom:103.999896pt;}
.y1b{bottom:104.026667pt;}
.yd3{bottom:105.053067pt;}
.y92{bottom:107.026533pt;}
.yd5{bottom:113.026533pt;}
.yb2{bottom:117.999896pt;}
.y39{bottom:124.026533pt;}
.yc5{bottom:125.026533pt;}
.y58{bottom:125.605467pt;}
.yaf{bottom:131.999896pt;}
.y1a{bottom:133.026667pt;}
.y84{bottom:136.000133pt;}
.yd2{bottom:142.053333pt;}
.y79{bottom:143.026667pt;}
.y57{bottom:149.692933pt;}
.y6b{bottom:154.000000pt;}
.yc4{bottom:154.026667pt;}
.yf{bottom:160.074667pt;}
.y83{bottom:165.000133pt;}
.y19{bottom:170.026667pt;}
.y78{bottom:172.026667pt;}
.y56{bottom:172.734667pt;}
.y8{bottom:178.026667pt;}
.yae{bottom:186.999896pt;}
.yc{bottom:189.094667pt;}
.y12{bottom:191.416000pt;}
.y5d{bottom:193.681467pt;}
.y4e{bottom:194.999792pt;}
.y72{bottom:196.026667pt;}
.ye{bottom:196.058667pt;}
.y37{bottom:199.526667pt;}
.y55{bottom:205.201333pt;}
.yc3{bottom:209.026667pt;}
.y69{bottom:210.000000pt;}
.ya3{bottom:210.999896pt;}
.yad{bottom:214.999896pt;}
.y5c{bottom:216.723200pt;}
.y41{bottom:217.026667pt;}
.yd1{bottom:218.053333pt;}
.y82{bottom:223.000133pt;}
.y7{bottom:223.026667pt;}
.y4d{bottom:223.999792pt;}
.y77{bottom:224.026667pt;}
.yb{bottom:225.078667pt;}
.y11{bottom:227.400533pt;}
.yd{bottom:228.561333pt;}
.y2a{bottom:230.342293pt;}
.y43{bottom:233.026667pt;}
.ya2{bottom:239.999896pt;}
.y5b{bottom:240.810667pt;}
.y67{bottom:241.000000pt;}
.yac{bottom:242.999896pt;}
.y71{bottom:248.026667pt;}
.y38{bottom:251.526667pt;}
.y4c{bottom:252.999792pt;}
.y76{bottom:253.026667pt;}
.y29{bottom:253.821493pt;}
.yd0{bottom:255.053333pt;}
.ya{bottom:257.581333pt;}
.y18{bottom:259.026667pt;}
.y10{bottom:259.902667pt;}
.y42{bottom:261.026667pt;}
.y53{bottom:262.026667pt;}
.ya1{bottom:268.999896pt;}
.y6{bottom:272.026667pt;}
.y5a{bottom:273.277733pt;}
.y28{bottom:278.139760pt;}
.y52{bottom:290.026667pt;}
.yc0{bottom:291.026667pt;}
.y60{bottom:294.224000pt;}
.y17{bottom:296.026667pt;}
.y4b{bottom:296.999792pt;}
.ya0{bottom:296.999896pt;}
.ya8{bottom:298.999896pt;}
.y5{bottom:301.026667pt;}
.y27{bottom:301.619493pt;}
.y59{bottom:302.602667pt;}
.y75{bottom:305.026667pt;}
.y40{bottom:307.026667pt;}
.y91{bottom:308.026667pt;}
.y26{bottom:311.682000pt;}
.yab{bottom:312.999896pt;}
.yc2{bottom:318.026667pt;}
.y5f{bottom:318.312000pt;}
.ybf{bottom:319.026667pt;}
.ybd{bottom:320.026667pt;}
.y1f{bottom:321.745200pt;}
.ya7{bottom:326.999896pt;}
.ycf{bottom:330.053333pt;}
.y74{bottom:334.026667pt;}
.y80{bottom:335.026667pt;}
.y25{bottom:335.162267pt;}
.y3f{bottom:336.026667pt;}
.y36{bottom:336.526667pt;}
.y90{bottom:337.026667pt;}
.yaa{bottom:340.999896pt;}
.y1e{bottom:345.224933pt;}
.yc1{bottom:347.026667pt;}
.ybe{bottom:348.026667pt;}
.y5e{bottom:350.778667pt;}
.y70{bottom:353.026667pt;}
.ya6{bottom:354.999896pt;}
.ybc{bottom:357.026667pt;}
.y24{bottom:359.480000pt;}
.y51{bottom:362.026667pt;}
.yce{bottom:367.053333pt;}
.y64{bottom:368.582800pt;}
.ya9{bottom:368.999896pt;}
.y1d{bottom:369.542667pt;}
.y8f{bottom:372.026667pt;}
.y7f{bottom:380.026667pt;}
.y23{bottom:382.959733pt;}
.ya5{bottom:382.999896pt;}
.y4a{bottom:384.999792pt;}
.y16{bottom:385.026667pt;}
.y73{bottom:387.026667pt;}
.y63{bottom:391.624000pt;}
.y3c{bottom:396.026667pt;}
.y4{bottom:403.026667pt;}
.y8e{bottom:407.026667pt;}
.y7e{bottom:409.026667pt;}
.y49{bottom:413.999792pt;}
.y6f{bottom:414.026667pt;}
.y34{bottom:421.526667pt;}
.y15{bottom:422.026667pt;}
.y62{bottom:424.091600pt;}
.y3b{bottom:425.026667pt;}
.y3e{bottom:426.026667pt;}
.y3{bottom:431.026667pt;}
.ya4{bottom:433.999896pt;}
.y8d{bottom:436.026667pt;}
.y50{bottom:437.026667pt;}
.y89{bottom:438.026667pt;}
.y7d{bottom:439.026667pt;}
.y48{bottom:442.999792pt;}
.ycd{bottom:443.053333pt;}
.y22{bottom:443.335200pt;}
.y6e{bottom:447.026667pt;}
.y3d{bottom:454.026667pt;}
.y61{bottom:454.464000pt;}
.ybb{bottom:456.026667pt;}
.y21{bottom:466.814933pt;}
.y88{bottom:467.026667pt;}
.y7c{bottom:468.026667pt;}
.y2{bottom:470.026667pt;}
.yb9{bottom:472.000000pt;}
.y35{bottom:474.526667pt;}
.ycc{bottom:480.053333pt;}
.y8c{bottom:481.026667pt;}
.y47{bottom:486.999792pt;}
.y20{bottom:491.133200pt;}
.y14{bottom:502.026667pt;}
.y9f{bottom:506.999896pt;}
.y9{bottom:510.633333pt;}
.y2e{bottom:511.256427pt;}
.yba{bottom:516.026667pt;}
.yb8{bottom:517.000000pt;}
.y31{bottom:528.053333pt;}
.y6d{bottom:532.026667pt;}
.y33{bottom:534.026667pt;}
.y2d{bottom:534.736693pt;}
.yb7{bottom:546.000000pt;}
.y8b{bottom:546.026667pt;}
.y7b{bottom:548.026667pt;}
.y54{bottom:555.026667pt;}
.y30{bottom:556.053333pt;}
.y13{bottom:557.026667pt;}
.y2c{bottom:558.215893pt;}
.yb6{bottom:575.000000pt;}
.y46{bottom:577.999792pt;}
.y2b{bottom:581.695627pt;}
.ycb{bottom:593.053333pt;}
.y2f{bottom:598.053333pt;}
.y8a{bottom:615.026667pt;}
.yb5{bottom:619.000000pt;}
.y45{bottom:643.999792pt;}
.y9c{bottom:644.999896pt;}
.yca{bottom:668.053333pt;}
.y9e{bottom:671.999896pt;}
.y9b{bottom:681.999896pt;}
.yb4{bottom:699.000000pt;}
.yc9{bottom:705.053333pt;}
.y9d{bottom:708.999896pt;}
.y7a{bottom:711.026667pt;}
.yc8{bottom:774.053333pt;}
.yc7{bottom:823.053333pt;}
.y98{bottom:847.999896pt;}
.y97{bottom:876.999896pt;}
.yc6{bottom:889.053333pt;}
.y96{bottom:904.999896pt;}
.y9a{bottom:931.999896pt;}
.y95{bottom:941.999896pt;}
.y66{bottom:945.000000pt;}
.y99{bottom:968.999896pt;}
.y65{bottom:987.000000pt;}
.y94{bottom:1111.999896pt;}
.hb{height:13.680000pt;}
.h25{height:23.000000pt;}
.h27{height:26.000000pt;}
.h5{height:43.790625pt;}
.h26{height:44.148240pt;}
.h2a{height:49.053600pt;}
.h28{height:49.183200pt;}
.h39{height:51.187500pt;}
.h29{height:52.000000pt;}
.h34{height:54.000000pt;}
.h4{height:54.738281pt;}
.h2f{height:55.089844pt;}
.hf{height:57.130689pt;}
.h21{height:57.328416pt;}
.h3f{height:57.410156pt;}
.h10{height:60.176901pt;}
.h16{height:61.317000pt;}
.h8{height:64.611975pt;}
.h1c{height:67.680000pt;}
.h3{height:68.130000pt;}
.h1e{height:68.422852pt;}
.h2e{height:68.862305pt;}
.h20{height:69.751413pt;}
.h22{height:70.882517pt;}
.h12{height:71.550000pt;}
.h23{height:71.614495pt;}
.h9{height:77.308491pt;}
.h7{height:78.562142pt;}
.h2b{height:81.756000pt;}
.h17{height:84.272033pt;}
.h3b{height:85.860000pt;}
.h13{height:88.502333pt;}
.h6{height:100.417632pt;}
.h1b{height:106.560000pt;}
.h38{height:108.288000pt;}
.h2{height:109.008000pt;}
.h1f{height:127.440000pt;}
.h1d{height:135.360000pt;}
.ha{height:136.260000pt;}
.h11{height:143.100000pt;}
.h33{height:168.120000pt;}
.h30{height:257.000133pt;}
.h1{height:676.000000pt;}
.h0{height:676.160000pt;}
.h32{height:708.000000pt;}
.h31{height:708.160000pt;}
.h1a{height:728.999792pt;}
.h18{height:729.280000pt;}
.h19{height:729.333333pt;}
.h3a{height:792.000000pt;}
.h2d{height:804.000000pt;}
.h2c{height:804.160000pt;}
.h15{height:852.000000pt;}
.h14{height:852.160000pt;}
.he{height:934.000000pt;}
.hd{height:934.666667pt;}
.hc{height:934.720000pt;}
.h3e{height:974.000000pt;}
.h3d{height:974.666667pt;}
.h3c{height:974.720000pt;}
.h24{height:1080.000000pt;}
.h37{height:1204.999896pt;}
.h36{height:1205.333333pt;}
.h35{height:1205.440000pt;}
.w4{width:515.000000pt;}
.w2{width:549.000000pt;}
.w1{width:764.000000pt;}
.w3{width:824.000000pt;}
.w0{width:1200.000000pt;}
.x0{left:0.000000pt;}
.x44{left:17.062667pt;}
.xc{left:63.000000pt;}
.x2e{left:67.108667pt;}
.x2a{left:68.078133pt;}
.x4a{left:73.109480pt;}
.x48{left:81.000000pt;}
.x3d{left:82.000000pt;}
.x33{left:83.000000pt;}
.x30{left:89.000000pt;}
.x22{left:90.000000pt;}
.x36{left:97.813600pt;}
.x3b{left:101.790133pt;}
.xd{left:107.828133pt;}
.x3a{left:109.367200pt;}
.x10{left:110.282800pt;}
.x41{left:117.375067pt;}
.x32{left:121.500000pt;}
.x11{left:127.866133pt;}
.x2f{left:135.593067pt;}
.x37{left:137.612000pt;}
.xf{left:155.000000pt;}
.x3c{left:165.382267pt;}
.x54{left:178.812533pt;}
.x2b{left:187.640667pt;}
.x23{left:193.702667pt;}
.x1c{left:205.655960pt;}
.x1e{left:216.006413pt;}
.x1d{left:219.753293pt;}
.x42{left:228.750533pt;}
.x4{left:231.443853pt;}
.x5{left:236.904000pt;}
.x3{left:244.593333pt;}
.x28{left:252.453333pt;}
.x29{left:256.062667pt;}
.x38{left:291.338080pt;}
.xe{left:298.562667pt;}
.x57{left:336.030667pt;}
.x14{left:340.151373pt;}
.x13{left:344.475333pt;}
.x18{left:357.276293pt;}
.x12{left:376.170133pt;}
.x1b{left:381.043960pt;}
.x19{left:382.852293pt;}
.x1a{left:385.276253pt;}
.x58{left:394.250667pt;}
.x59{left:439.000000pt;}
.x50{left:440.765600pt;}
.x34{left:447.000000pt;}
.x51{left:475.593733pt;}
.x27{left:476.656000pt;}
.x24{left:479.937333pt;}
.x55{left:481.765333pt;}
.x5a{left:483.750667pt;}
.x2{left:489.013333pt;}
.x4d{left:495.796400pt;}
.x3e{left:499.969333pt;}
.x1{left:513.000000pt;}
.x3f{left:518.984000pt;}
.x52{left:525.734400pt;}
.x15{left:527.201520pt;}
.x5b{left:528.500000pt;}
.x4e{left:529.952667pt;}
.x8{left:537.113333pt;}
.x16{left:538.102560pt;}
.x7{left:543.298307pt;}
.x4c{left:547.593333pt;}
.x6{left:551.061333pt;}
.x17{left:558.974960pt;}
.x5c{left:573.250667pt;}
.x53{left:611.765333pt;}
.x5d{left:618.000000pt;}
.x43{left:623.000000pt;}
.x49{left:627.000000pt;}
.x25{left:638.921333pt;}
.x31{left:648.953333pt;}
.x40{left:674.030667pt;}
.x26{left:738.781333pt;}
.x45{left:745.921333pt;}
.x46{left:774.702667pt;}
.x2c{left:777.359333pt;}
.x2d{left:786.359333pt;}
.xb{left:809.137333pt;}
.x35{left:811.000000pt;}
.xa{left:819.838133pt;}
.x39{left:829.873333pt;}
.x1f{left:833.828000pt;}
.x20{left:836.546747pt;}
.x56{left:858.953333pt;}
.x9{left:862.714667pt;}
.x21{left:914.390480pt;}
.x47{left:927.344000pt;}
.x4f{left:944.828267pt;}
.x4b{left:1131.390667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  