
    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_a2a67edfe8d477f4ad22c373.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_a0eba5417a3c28aef9adf5fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_9d56b7990012847e6c4acce4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.036381;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_ab2aa56fbb4f64fa33660aa1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.800000;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_a747a72d2e394de7c78367bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043000;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_0ce4178a8cc6661d2dedeea8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.719000;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_7185792e198a5d78282b5e3e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.800000;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_437e02299c8d36579eef816d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.043000;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_d974b8dab94220f610fef709.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.732000;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_a655666ba57645588134c291.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.047000;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_ebad8a7e04178ffe79f6ee87.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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:ffc;src:url('chunks/assets/font_da79ae6ab4d919726ba845cd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.732000;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:ffd;src:url('chunks/assets/font_a655666ba57645588134c291.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.047000;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:ffe;src:url('chunks/assets/font_560711c4e6ceb75420b899fb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.732000;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_a655666ba57645588134c291.woff2')format("woff");}.fff{font-family:fff;line-height:1.047000;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_2cce141455db332643728977.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.732000;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_a655666ba57645588134c291.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.047000;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_13c7a44ba8a13ed412fe1656.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.732000;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_a655666ba57645588134c291.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.047000;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_a655666ba57645588134c291.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.047000;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_9491016bf48577eb090be629.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.724000;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_a655666ba57645588134c291.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.047000;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_e1f3a94f6ca12fda67e5ecff.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.952000;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_b87c281704df6590544683c5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.732000;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_ecea421bf5b33beaa2644a79.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.800000;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_434bd2e6a17a991586ff6d1a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.700000;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_1798a6cd90ffe1a3fbf15816.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.732000;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_cf11a693288cf4a0b4406e95.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.712000;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_60074d3c02f9f75b50f935cf.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.801000;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_4718e7fc750b9c8b4ef1233e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.952000;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_28dbd1da3a8799511e98e480.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_18ce1cc20fbea72f9fd0e9fc.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.700000;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_b7eeae35a7257531f7c8314b.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.043000;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_ab4153fe3b749795433202d8.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.952000;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_2ecf266dc2e767b6967ac96f.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.952000;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_844652c6b861eedbd12625a9.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.700000;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_cc013712ce9902f8f09ef076.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.732000;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_9025d03f5f9e8347c637f6e3.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.783000;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_ffc596478092c43b235b2382.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.733887;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_374e23ac1ada1793aa0a6010.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.732000;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_ff552eab31501838ce57ff42.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.940000;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_f278b7df54e58afba3056490.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.732000;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_dbb5e9605ac533bacfa75323.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.042000;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_703b77e7b7e0ccceb286267f.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.712000;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_14ee08fb571dd89688a79590.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.952000;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_2d8f7e7f424481f6d1377d27.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.967773;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_f4821cfebb9911043a25cbe2.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.936523;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_50e51f6142cad617c392cf8d.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.950195;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_caa30027e76d2df789f9432d.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.732000;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;}
.ff32{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff33;src:url('chunks/assets/font_609a90526d77b8fe5bb6342f.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.952000;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_ad3b13c6efcf3e3f3d34bf32.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.732000;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_af5d7574a93f7a1b65605ecf.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.952000;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_f8437ca268b17946e8d61ba7.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.029000;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_f8437ca268b17946e8d61ba7.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.029000;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_77b1cb854f0ce74b0c0457ca.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.952000;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_e2bc9c527965589f32ef46cd.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.952000;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_4520fff854ce639d37daa536.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.952000;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_3609fe341130d142a1315a41.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.940000;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_31dbb2c5da6158a11752380b.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.952000;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_d99744a177e40e3fb59f99e3.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.940000;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_04e58e31885eece61c994848.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.031000;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_784e6ec7f8580d6dde21426c.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.940000;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_82988f07550b3bf60fce3e85.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.043000;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_a8d0559bd2cd8efa4f2e5558.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.032000;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_3a57839c3ba560daa3aa6bca.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.940000;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_b0eba809bd9bcb8733092fc6.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.940000;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_991cd96d7e7e2860aca30526.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.047000;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_fc34895aed89c27b6d3034c8.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.043000;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_6352d73bd707322d4e4e1adf.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.724000;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_44c1eb050c019d14f87621de.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.801000;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_82ecba243f086d51b0e90bf6.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.769000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.236689,0.080487,-0.080487,0.236689,0,0);-ms-transform:matrix(0.236689,0.080487,-0.080487,0.236689,0,0);-webkit-transform:matrix(0.236689,0.080487,-0.080487,0.236689,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);}
.v2{vertical-align:-142.499802px;}
.v1{vertical-align:-43.987505px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.050848px;}
.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;}
}
.ws22{word-spacing:-200.699992px;}
.ws8{word-spacing:-162.242795px;}
.ws1{word-spacing:-156.596081px;}
.ws1c{word-spacing:-127.192049px;}
.ws3{word-spacing:-123.073829px;}
.wsd{word-spacing:-110.393100px;}
.ws23{word-spacing:-104.153490px;}
.wse{word-spacing:-97.790222px;}
.ws21{word-spacing:-65.863527px;}
.ws19{word-spacing:-64.075995px;}
.ws17{word-spacing:-61.916130px;}
.wsf{word-spacing:-59.638990px;}
.ws1d{word-spacing:-57.116430px;}
.ws1a{word-spacing:-55.642048px;}
.ws2{word-spacing:-47.699998px;}
.ws1b{word-spacing:-44.516026px;}
.ws7{word-spacing:-43.001549px;}
.ws6{word-spacing:-38.620259px;}
.ws13{word-spacing:-38.610531px;}
.ws4{word-spacing:-37.865621px;}
.ws9{word-spacing:-36.230938px;}
.ws5{word-spacing:-31.792049px;}
.ws1f{word-spacing:-29.134377px;}
.ws16{word-spacing:-27.769535px;}
.ws14{word-spacing:-27.766393px;}
.ws10{word-spacing:-0.119970px;}
.ws15{word-spacing:-0.087351px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:281.594438px;}
.ws20{word-spacing:281.594798px;}
.ws11{word-spacing:429.338759px;}
.wsc{word-spacing:947.998228px;}
.ws12{word-spacing:998.106384px;}
.wsb{word-spacing:1105.626922px;}
.ws18{word-spacing:1232.195836px;}
.wsa{word-spacing:1440.992204px;}
._f{margin-left:-55.799804px;}
._5{margin-left:-38.515550px;}
._2{margin-left:-37.204559px;}
._a{margin-left:-30.517996px;}
._0{margin-left:-29.015990px;}
._9{margin-left:-27.568037px;}
._1{margin-left:-26.045078px;}
._7{margin-left:-25.038879px;}
._c{margin-left:-3.566654px;}
._d{margin-left:-2.465605px;}
._8{margin-left:-1.029090px;}
._3{width:18.118124px;}
._6{width:23.668375px;}
._e{width:481.417425px;}
._4{width:1437.569292px;}
._b{width:2164.012401px;}
.fc9{color:rgb(135,206,235);}
.fc7{color:rgb(48,68,67);}
.fca{color:rgb(255,165,0);}
.fc6{color:rgb(0,0,1);}
.fc5{color:rgb(131,190,101);}
.fc4{color:rgb(209,173,190);}
.fc1{color:transparent;}
.fc8{color:rgb(0,0,0);}
.fc3{color:rgb(38,38,38);}
.fc2{color:rgb(59,59,59);}
.fc0{color:rgb(255,255,255);}
.fs18{font-size:87.351111px;}
.fs19{font-size:87.360996px;}
.fs1d{font-size:97.114590px;}
.fs13{font-size:103.539913px;}
.fs7{font-size:119.969995px;}
.fs1f{font-size:141.749986px;}
.fsb{font-size:142.889134px;}
.fs16{font-size:146.252011px;}
.fs12{font-size:149.985003px;}
.fs1e{font-size:161.054998px;}
.fsc{font-size:162.269998px;}
.fs1c{font-size:167.985002px;}
.fs17{font-size:173.264729px;}
.fs6{font-size:179.999993px;}
.fs9{font-size:190.167728px;}
.fs1a{font-size:195.798083px;}
.fs1b{font-size:202.584669px;}
.fse{font-size:209.969991px;}
.fs14{font-size:230.104666px;}
.fs15{font-size:231.061378px;}
.fs10{font-size:238.364995px;}
.fs2{font-size:239.984999px;}
.fs4{font-size:240.017947px;}
.fsa{font-size:403.674204px;}
.fs1{font-size:419.984992px;}
.fsf{font-size:444.459349px;}
.fs0{font-size:467.999981px;}
.fs11{font-size:479.969998px;}
.fs3{font-size:481.349600px;}
.fs5{font-size:599.984984px;}
.fs8{font-size:621.584997px;}
.fsd{font-size:621.619904px;}
.fs20{font-size:899.999963px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y5e{bottom:0.182812px;}
.y5c{bottom:0.290214px;}
.y6d{bottom:6.591755px;}
.y79{bottom:6.602494px;}
.y7b{bottom:6.624379px;}
.y63{bottom:6.626559px;}
.y71{bottom:6.642572px;}
.y56{bottom:6.642651px;}
.y55{bottom:6.642705px;}
.y6b{bottom:6.700212px;}
.y3f{bottom:6.702535px;}
.y73{bottom:6.704447px;}
.y65{bottom:6.712692px;}
.y62{bottom:6.740465px;}
.y75{bottom:6.766190px;}
.y5a{bottom:6.777001px;}
.y58{bottom:6.789175px;}
.y60{bottom:6.791090px;}
.y69{bottom:6.808625px;}
.y6f{bottom:6.819232px;}
.y77{bottom:6.822923px;}
.y67{bottom:6.828971px;}
.y25{bottom:11.750465px;}
.y1f{bottom:11.863932px;}
.y22{bottom:11.881993px;}
.ya1{bottom:13.166895px;}
.y53{bottom:14.497271px;}
.y7d{bottom:15.320095px;}
.y1a{bottom:15.458392px;}
.y7f{bottom:16.657744px;}
.ya{bottom:18.104343px;}
.y47{bottom:18.417172px;}
.y48{bottom:18.482181px;}
.y4b{bottom:19.528235px;}
.y92{bottom:24.749999px;}
.y96{bottom:27.685547px;}
.ya3{bottom:31.994323px;}
.y8e{bottom:33.925779px;}
.y7{bottom:36.230926px;}
.y3e{bottom:37.487590px;}
.y44{bottom:39.352570px;}
.y1c{bottom:43.335078px;}
.yae{bottom:47.509353px;}
.y7e{bottom:47.520008px;}
.y4d{bottom:47.579773px;}
.y30{bottom:47.592849px;}
.y90{bottom:52.874998px;}
.y94{bottom:55.810546px;}
.y13{bottom:59.624998px;}
.y24{bottom:60.685100px;}
.y1e{bottom:60.798567px;}
.y21{bottom:60.816629px;}
.y5{bottom:65.624937px;}
.y2d{bottom:66.551506px;}
.y19{bottom:82.017097px;}
.y49{bottom:82.080007px;}
.y91{bottom:84.374996px;}
.y4c{bottom:85.875111px;}
.y95{bottom:86.185544px;}
.ya4{bottom:110.974594px;}
.y18{bottom:148.575802px;}
.y8{bottom:154.726518px;}
.y3c{bottom:161.394329px;}
.y3d{bottom:166.680003px;}
.y9f{bottom:187.920002px;}
.ya5{bottom:189.954774px;}
.ya2{bottom:191.040092px;}
.y4e{bottom:196.257398px;}
.y54{bottom:200.160002px;}
.y3b{bottom:213.144327px;}
.y97{bottom:214.840117px;}
.y17{bottom:215.134507px;}
.y9{bottom:226.080001px;}
.y5f{bottom:229.680001px;}
.y76{bottom:234.000000px;}
.y38{bottom:245.670722px;}
.y12{bottom:259.482053px;}
.ya6{bottom:268.934959px;}
.y9b{bottom:270.117133px;}
.y87{bottom:270.383630px;}
.y16{bottom:281.693212px;}
.y2b{bottom:285.878796px;}
.y37{bottom:297.420720px;}
.y61{bottom:299.519998px;}
.y78{bottom:304.199997px;}
.y6{bottom:310.679997px;}
.y3a{bottom:315.433031px;}
.y2a{bottom:342.128794px;}
.y4f{bottom:344.935106px;}
.ya7{bottom:347.915226px;}
.y11{bottom:349.482049px;}
.y93{bottom:350.979080px;}
.y9a{bottom:353.367129px;}
.y86{bottom:353.633626px;}
.y23{bottom:363.239995px;}
.y5b{bottom:363.959995px;}
.y39{bottom:367.183029px;}
.y52{bottom:377.279994px;}
.y82{bottom:380.788357px;}
.y33{bottom:381.404684px;}
.y7a{bottom:381.959994px;}
.y20{bottom:387.719994px;}
.y29{bottom:398.378791px;}
.yb6{bottom:408.811987px;}
.y9e{bottom:410.811927px;}
.y8b{bottom:415.229743px;}
.ya8{bottom:426.895453px;}
.y5d{bottom:431.639992px;}
.y64{bottom:435.959992px;}
.yac{bottom:436.368211px;}
.y85{bottom:436.883623px;}
.y10{bottom:439.482045px;}
.y6e{bottom:453.959991px;}
.y28{bottom:454.628789px;}
.yb2{bottom:471.958828px;}
.ya0{bottom:473.518520px;}
.y8f{bottom:492.289618px;}
.y81{bottom:493.288352px;}
.y50{bottom:493.612771px;}
.y15{bottom:494.279990px;}
.y41{bottom:495.065454px;}
.y8a{bottom:498.479739px;}
.y46{bottom:500.759989px;}
.y66{bottom:505.799989px;}
.y4{bottom:524.143652px;}
.y99{bottom:525.226586px;}
.y40{bottom:525.844370px;}
.y70{bottom:526.319988px;}
.yf{bottom:529.482042px;}
.y9d{bottom:530.061922px;}
.yb4{bottom:549.963737px;}
.y43{bottom:552.713782px;}
.yab{bottom:555.618206px;}
.y84{bottom:561.758618px;}
.y8c{bottom:569.729727px;}
.y36{bottom:570.932598px;}
.y68{bottom:575.999986px;}
.y42{bottom:583.492701px;}
.yb1{bottom:591.904135px;}
.yb3{bottom:596.828224px;}
.y72{bottom:604.079985px;}
.y80{bottom:605.788348px;}
.y45{bottom:618.374944px;}
.ye{bottom:619.482038px;}
.y98{bottom:622.874987px;}
.y8d{bottom:628.427137px;}
.y6a{bottom:640.079983px;}
.y1d{bottom:642.239983px;}
.y51{bottom:642.290435px;}
.y83{bottom:645.008614px;}
.y9c{bottom:649.311917px;}
.y3{bottom:670.393646px;}
.yaa{bottom:674.868201px;}
.y27{bottom:677.788874px;}
.y59{bottom:678.959982px;}
.y57{bottom:680.039982px;}
.y74{bottom:681.839982px;}
.y32{bottom:685.596197px;}
.y6c{bottom:704.159981px;}
.yd{bottom:709.482034px;}
.y4a{bottom:711.599947px;}
.yb0{bottom:711.849434px;}
.yb5{bottom:713.770174px;}
.y35{bottom:732.574809px;}
.y26{bottom:734.038871px;}
.y31{bottom:758.721194px;}
.y7c{bottom:761.759978px;}
.y89{bottom:778.602899px;}
.y2e{bottom:790.587345px;}
.ya9{bottom:794.118196px;}
.yc{bottom:799.482030px;}
.y2{bottom:820.018640px;}
.yaf{bottom:831.794707px;}
.y1b{bottom:842.759975px;}
.y2f{bottom:887.039973px;}
.y34{bottom:900.199802px;}
.yad{bottom:903.239972px;}
.yb{bottom:921.789422px;}
.y14{bottom:938.990978px;}
.y88{bottom:946.227892px;}
.y2c{bottom:947.159971px;}
.h31{height:24.839999px;}
.h37{height:25.199999px;}
.h2f{height:56.159998px;}
.h38{height:63.719997px;}
.h35{height:64.830902px;}
.h3a{height:66.239997px;}
.h32{height:66.366371px;}
.h36{height:66.373882px;}
.h46{height:74.778234px;}
.h28{height:75.239997px;}
.h2a{height:75.599997px;}
.h8{height:78.119997px;}
.h25{height:80.036353px;}
.h12{height:83.978997px;}
.h17{height:85.418636px;}
.h15{height:86.378396px;}
.h26{height:86.872804px;}
.h13{height:95.759996px;}
.h16{height:96.119996px;}
.hc{height:97.295666px;}
.h40{height:100.300777px;}
.h34{height:101.879996px;}
.h14{height:102.880177px;}
.h27{height:107.989202px;}
.h2d{height:112.614049px;}
.h4a{height:114.959239px;}
.h18{height:116.834398px;}
.h42{height:120.949201px;}
.h30{height:121.285311px;}
.h22{height:121.637837px;}
.h3d{height:129.599995px;}
.h49{height:130.615603px;}
.h41{height:136.124994px;}
.h39{height:140.974620px;}
.h43{height:141.310542px;}
.h3b{height:145.860962px;}
.hb{height:145.979994px;}
.h1b{height:151.178394px;}
.h10{height:153.719994px;}
.hf{height:154.226028px;}
.h6{height:157.319993px;}
.h29{height:165.675359px;}
.h2b{height:166.364192px;}
.h1c{height:169.199993px;}
.h21{height:170.285663px;}
.h1e{height:171.622796px;}
.h3e{height:172.789199px;}
.h5{height:186.799752px;}
.h9{height:186.825398px;}
.h3c{height:192.455436px;}
.h44{height:194.627834px;}
.h33{height:233.279990px;}
.h19{height:236.159990px;}
.h4{height:319.090160px;}
.h11{height:323.746712px;}
.he{height:328.319986px;}
.h23{height:345.578399px;}
.h1d{height:348.456130px;}
.h48{height:356.456398px;}
.h3{height:360.369126px;}
.h4c{height:360.937438px;}
.h7{height:374.673360px;}
.h3f{height:376.296478px;}
.h20{height:389.255668px;}
.h1f{height:392.615458px;}
.ha{height:470.388227px;}
.hd{height:487.322637px;}
.h1a{height:487.350004px;}
.h47{height:507.528040px;}
.h45{height:510.839979px;}
.h24{height:609.839975px;}
.h4b{height:705.599971px;}
.h2e{height:763.720996px;}
.h2c{height:767.519968px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w17{width:16.559999px;}
.w16{width:25.199999px;}
.w19{width:28.079999px;}
.w18{width:29.519999px;}
.w12{width:80.639997px;}
.w11{width:92.159996px;}
.w14{width:96.839996px;}
.w15{width:108.359995px;}
.w13{width:113.399995px;}
.w7{width:161.999993px;}
.w6{width:162.359993px;}
.w8{width:163.439993px;}
.wc{width:258.839989px;}
.w10{width:284.759988px;}
.w24{width:289.124988px;}
.w20{width:294.697255px;}
.w21{width:344.249986px;}
.w1f{width:344.548814px;}
.w26{width:349.874985px;}
.w23{width:350.068345px;}
.w1d{width:366.609315px;}
.w25{width:366.609336px;}
.w1e{width:366.609362px;}
.wd{width:575.639976px;}
.wb{width:613.799974px;}
.w22{width:655.804665px;}
.w1c{width:661.324184px;}
.w2{width:673.559972px;}
.w9{width:725.039970px;}
.w28{width:791.346747px;}
.w2a{width:791.346855px;}
.w27{width:798.839967px;}
.w29{width:799.199967px;}
.w3{width:983.159959px;}
.w1b{width:987.839959px;}
.w5{width:1081.079955px;}
.w1a{width:1142.279952px;}
.w2b{width:1160.999952px;}
.wf{width:1179.171707px;}
.we{width:1191.239950px;}
.wa{width:1297.079946px;}
.w4{width:1447.919940px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x3e{left:-1.202290px;}
.x0{left:0.000000px;}
.x1c{left:1.179987px;}
.x9{left:2.936921px;}
.x6{left:5.902681px;}
.x71{left:7.552209px;}
.x5c{left:9.000000px;}
.x47{left:18.307684px;}
.x18{left:21.932215px;}
.x70{left:23.254905px;}
.x2c{left:31.107342px;}
.x54{left:33.723612px;}
.x6a{left:36.514790px;}
.x31{left:39.195308px;}
.x14{left:40.512251px;}
.x5b{left:71.173825px;}
.x65{left:73.933591px;}
.x16{left:77.399997px;}
.x57{left:83.249997px;}
.x6c{left:86.471819px;}
.x3f{left:90.359996px;}
.x6b{left:102.678850px;}
.x1{left:106.342223px;}
.x1e{left:108.457597px;}
.xa{left:116.461028px;}
.x15{left:121.333535px;}
.x6f{left:125.614132px;}
.x1f{left:131.449783px;}
.x34{left:151.527618px;}
.x4f{left:161.534502px;}
.x68{left:164.756737px;}
.x3c{left:177.011431px;}
.x35{left:179.182614px;}
.x12{left:190.195305px;}
.x27{left:205.598560px;}
.x75{left:223.488272px;}
.x2b{left:232.155803px;}
.x2{left:235.277770px;}
.x17{left:264.959989px;}
.x13{left:273.599989px;}
.x69{left:278.557514px;}
.x6e{left:290.138218px;}
.x23{left:299.148847px;}
.x24{left:307.421640px;}
.x52{left:314.361231px;}
.x66{left:322.917459px;}
.x5d{left:328.433937px;}
.x26{left:336.703368px;}
.x7b{left:345.467930px;}
.x29{left:364.399335px;}
.x60{left:379.511703px;}
.x25{left:382.216559px;}
.x55{left:385.031234px;}
.x3b{left:397.499768px;}
.x20{left:399.621647px;}
.x37{left:405.719983px;}
.x5e{left:417.733094px;}
.x32{left:424.186479px;}
.x1d{left:432.542705px;}
.x10{left:435.778928px;}
.xc{left:437.255490px;}
.xb{left:449.401974px;}
.x6d{left:454.383489px;}
.x67{left:460.831488px;}
.x19{left:472.679980px;}
.x33{left:479.619217px;}
.x3a{left:484.559980px;}
.x3d{left:490.389688px;}
.x50{left:495.358091px;}
.x4c{left:500.062424px;}
.x36{left:509.155194px;}
.xe{left:511.241815px;}
.xd{left:515.161737px;}
.x2a{left:520.563391px;}
.x4d{left:550.708540px;}
.xf{left:552.796501px;}
.x76{left:576.586609px;}
.x4b{left:586.079976px;}
.x8{left:589.319975px;}
.x74{left:602.567077px;}
.x4e{left:631.358314px;}
.x3{left:648.803138px;}
.x39{left:657.338782px;}
.x61{left:689.537779px;}
.x5f{left:690.580739px;}
.x56{left:695.054203px;}
.x40{left:701.319249px;}
.x2f{left:707.190342px;}
.x77{left:728.999970px;}
.x5{left:745.559969px;}
.x46{left:760.679968px;}
.x7c{left:762.339244px;}
.x78{left:765.937336px;}
.x30{left:773.279968px;}
.x51{left:774.867851px;}
.x4a{left:789.479967px;}
.x49{left:802.439967px;}
.x7{left:839.684843px;}
.x41{left:845.279965px;}
.x4{left:862.990804px;}
.x53{left:896.486363px;}
.x44{left:911.879962px;}
.x28{left:957.186425px;}
.x42{left:1034.999957px;}
.x62{left:1056.157948px;}
.x58{left:1061.674480px;}
.x72{left:1157.039952px;}
.x73{left:1160.967179px;}
.x45{left:1199.159950px;}
.x43{left:1203.839950px;}
.x22{left:1232.372050px;}
.x21{left:1236.766581px;}
.x1a{left:1337.039944px;}
.x48{left:1371.599943px;}
.x2d{left:1372.976043px;}
.x2e{left:1376.351043px;}
.x38{left:1396.799942px;}
.x63{left:1422.778297px;}
.x59{left:1428.294684px;}
.x1b{left:1603.439933px;}
.x64{left:1789.398573px;}
.x5a{left:1794.915105px;}
.x7a{left:1893.599303px;}
.x79{left:1909.535722px;}
.x11{left:2092.147473px;}
@media print{
.v2{vertical-align:-126.666491pt;}
.v1{vertical-align:-39.100005pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.045198pt;}
.ws22{word-spacing:-178.399993pt;}
.ws8{word-spacing:-144.215818pt;}
.ws1{word-spacing:-139.196516pt;}
.ws1c{word-spacing:-113.059600pt;}
.ws3{word-spacing:-109.398959pt;}
.wsd{word-spacing:-98.127200pt;}
.ws23{word-spacing:-92.580880pt;}
.wse{word-spacing:-86.924642pt;}
.ws21{word-spacing:-58.545358pt;}
.ws19{word-spacing:-56.956440pt;}
.ws17{word-spacing:-55.036560pt;}
.wsf{word-spacing:-53.012436pt;}
.ws1d{word-spacing:-50.770160pt;}
.ws1a{word-spacing:-49.459598pt;}
.ws2{word-spacing:-42.399998pt;}
.ws1b{word-spacing:-39.569800pt;}
.ws7{word-spacing:-38.223599pt;}
.ws6{word-spacing:-34.329120pt;}
.ws13{word-spacing:-34.320472pt;}
.ws4{word-spacing:-33.658329pt;}
.ws9{word-spacing:-32.205279pt;}
.ws5{word-spacing:-28.259599pt;}
.ws1f{word-spacing:-25.897224pt;}
.ws16{word-spacing:-24.684031pt;}
.ws14{word-spacing:-24.681238pt;}
.ws10{word-spacing:-0.106640pt;}
.ws15{word-spacing:-0.077645pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:250.306167pt;}
.ws20{word-spacing:250.306487pt;}
.ws11{word-spacing:381.634452pt;}
.wsc{word-spacing:842.665092pt;}
.ws12{word-spacing:887.205675pt;}
.wsb{word-spacing:982.779487pt;}
.ws18{word-spacing:1095.285188pt;}
.wsa{word-spacing:1280.881959pt;}
._f{margin-left:-49.599826pt;}
._5{margin-left:-34.236045pt;}
._2{margin-left:-33.070719pt;}
._a{margin-left:-27.127108pt;}
._0{margin-left:-25.791991pt;}
._9{margin-left:-24.504922pt;}
._1{margin-left:-23.151181pt;}
._7{margin-left:-22.256782pt;}
._c{margin-left:-3.170359pt;}
._d{margin-left:-2.191648pt;}
._8{margin-left:-0.914747pt;}
._3{width:16.104999pt;}
._6{width:21.038555pt;}
._e{width:427.926600pt;}
._4{width:1277.839371pt;}
._b{width:1923.566578pt;}
.fs18{font-size:77.645432pt;}
.fs19{font-size:77.654219pt;}
.fs1d{font-size:86.324080pt;}
.fs13{font-size:92.035478pt;}
.fs7{font-size:106.639996pt;}
.fs1f{font-size:125.999988pt;}
.fsb{font-size:127.012564pt;}
.fs16{font-size:130.001788pt;}
.fs12{font-size:133.320002pt;}
.fs1e{font-size:143.159998pt;}
.fsc{font-size:144.239998pt;}
.fs1c{font-size:149.320002pt;}
.fs17{font-size:154.013093pt;}
.fs6{font-size:159.999993pt;}
.fs9{font-size:169.037981pt;}
.fs1a{font-size:174.042740pt;}
.fs1b{font-size:180.075262pt;}
.fse{font-size:186.639992pt;}
.fs14{font-size:204.537480pt;}
.fs15{font-size:205.387891pt;}
.fs10{font-size:211.879995pt;}
.fs2{font-size:213.319999pt;}
.fs4{font-size:213.349286pt;}
.fsa{font-size:358.821515pt;}
.fs1{font-size:373.319992pt;}
.fsf{font-size:395.074977pt;}
.fs0{font-size:415.999983pt;}
.fs11{font-size:426.639998pt;}
.fs3{font-size:427.866311pt;}
.fs5{font-size:533.319986pt;}
.fs8{font-size:552.519997pt;}
.fsd{font-size:552.551025pt;}
.fs20{font-size:799.999967pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y5e{bottom:0.162499pt;}
.y5c{bottom:0.257968pt;}
.y6d{bottom:5.859338pt;}
.y79{bottom:5.868884pt;}
.y7b{bottom:5.888337pt;}
.y63{bottom:5.890275pt;}
.y71{bottom:5.904509pt;}
.y56{bottom:5.904579pt;}
.y55{bottom:5.904627pt;}
.y6b{bottom:5.955744pt;}
.y3f{bottom:5.957809pt;}
.y73{bottom:5.959509pt;}
.y65{bottom:5.966838pt;}
.y62{bottom:5.991525pt;}
.y75{bottom:6.014391pt;}
.y5a{bottom:6.024001pt;}
.y58{bottom:6.034822pt;}
.y60{bottom:6.036525pt;}
.y69{bottom:6.052111pt;}
.y6f{bottom:6.061540pt;}
.y77{bottom:6.064821pt;}
.y67{bottom:6.070197pt;}
.y25{bottom:10.444858pt;}
.y1f{bottom:10.545717pt;}
.y22{bottom:10.561772pt;}
.ya1{bottom:11.703907pt;}
.y53{bottom:12.886463pt;}
.y7d{bottom:13.617862pt;}
.y1a{bottom:13.740793pt;}
.y7f{bottom:14.806884pt;}
.ya{bottom:16.092749pt;}
.y47{bottom:16.370819pt;}
.y48{bottom:16.428605pt;}
.y4b{bottom:17.358431pt;}
.y92{bottom:21.999999pt;}
.y96{bottom:24.609375pt;}
.ya3{bottom:28.439398pt;}
.y8e{bottom:30.156248pt;}
.y7{bottom:32.205268pt;}
.y3e{bottom:33.322302pt;}
.y44{bottom:34.980063pt;}
.y1c{bottom:38.520069pt;}
.yae{bottom:42.230536pt;}
.y7e{bottom:42.240007pt;}
.y4d{bottom:42.293132pt;}
.y30{bottom:42.304755pt;}
.y90{bottom:46.999998pt;}
.y94{bottom:49.609374pt;}
.y13{bottom:52.999998pt;}
.y24{bottom:53.942311pt;}
.y1e{bottom:54.043171pt;}
.y21{bottom:54.059225pt;}
.y5{bottom:58.333278pt;}
.y2d{bottom:59.156894pt;}
.y19{bottom:72.904086pt;}
.y49{bottom:72.960006pt;}
.y91{bottom:74.999997pt;}
.y4c{bottom:76.333432pt;}
.y95{bottom:76.609373pt;}
.ya4{bottom:98.644083pt;}
.y18{bottom:132.067380pt;}
.y8{bottom:137.534682pt;}
.y3c{bottom:143.461626pt;}
.y3d{bottom:148.160003pt;}
.y9f{bottom:167.040002pt;}
.ya5{bottom:168.848688pt;}
.ya2{bottom:169.813415pt;}
.y4e{bottom:174.451021pt;}
.y54{bottom:177.920002pt;}
.y3b{bottom:189.461624pt;}
.y97{bottom:190.968993pt;}
.y17{bottom:191.230673pt;}
.y9{bottom:200.960001pt;}
.y5f{bottom:204.160000pt;}
.y76{bottom:208.000000pt;}
.y38{bottom:218.373975pt;}
.y12{bottom:230.650714pt;}
.ya6{bottom:239.053297pt;}
.y9b{bottom:240.104118pt;}
.y87{bottom:240.341004pt;}
.y16{bottom:250.393966pt;}
.y2b{bottom:254.114485pt;}
.y37{bottom:264.373973pt;}
.y61{bottom:266.239998pt;}
.y78{bottom:270.399998pt;}
.y6{bottom:276.159997pt;}
.y3a{bottom:280.384916pt;}
.y2a{bottom:304.114483pt;}
.y4f{bottom:306.608983pt;}
.ya7{bottom:309.257979pt;}
.y11{bottom:310.650710pt;}
.y93{bottom:311.981404pt;}
.y9a{bottom:314.104115pt;}
.y86{bottom:314.341001pt;}
.y23{bottom:322.879996pt;}
.y5b{bottom:323.519996pt;}
.y39{bottom:326.384914pt;}
.y52{bottom:335.359995pt;}
.y82{bottom:338.478539pt;}
.y33{bottom:339.026386pt;}
.y7a{bottom:339.519995pt;}
.y20{bottom:344.639995pt;}
.y29{bottom:354.114481pt;}
.yb6{bottom:363.388433pt;}
.y9e{bottom:365.166158pt;}
.y8b{bottom:369.093105pt;}
.ya8{bottom:379.462625pt;}
.y5d{bottom:383.679993pt;}
.y64{bottom:387.519993pt;}
.yac{bottom:387.882854pt;}
.y85{bottom:388.340998pt;}
.y10{bottom:390.650707pt;}
.y6e{bottom:403.519992pt;}
.y28{bottom:404.114479pt;}
.yb2{bottom:419.518959pt;}
.ya0{bottom:420.905351pt;}
.y8f{bottom:437.590772pt;}
.y81{bottom:438.478535pt;}
.y50{bottom:438.766907pt;}
.y15{bottom:439.359991pt;}
.y41{bottom:440.058182pt;}
.y8a{bottom:443.093102pt;}
.y46{bottom:445.119990pt;}
.y66{bottom:449.599990pt;}
.y4{bottom:465.905469pt;}
.y99{bottom:466.868077pt;}
.y40{bottom:467.417218pt;}
.y70{bottom:467.839990pt;}
.yf{bottom:470.650704pt;}
.y9d{bottom:471.166153pt;}
.yb4{bottom:488.856655pt;}
.y43{bottom:491.301139pt;}
.yab{bottom:493.882850pt;}
.y84{bottom:499.340994pt;}
.y8c{bottom:506.426424pt;}
.y36{bottom:507.495643pt;}
.y68{bottom:511.999988pt;}
.y42{bottom:518.660179pt;}
.yb1{bottom:526.137008pt;}
.yb3{bottom:530.513976pt;}
.y72{bottom:536.959987pt;}
.y80{bottom:538.478531pt;}
.y45{bottom:549.666617pt;}
.ye{bottom:550.650700pt;}
.y98{bottom:553.666655pt;}
.y8d{bottom:558.601899pt;}
.y6a{bottom:568.959985pt;}
.y1d{bottom:570.879985pt;}
.y51{bottom:570.924831pt;}
.y83{bottom:573.340991pt;}
.y9c{bottom:577.166149pt;}
.y3{bottom:595.905463pt;}
.yaa{bottom:599.882845pt;}
.y27{bottom:602.478999pt;}
.y59{bottom:603.519984pt;}
.y57{bottom:604.479984pt;}
.y74{bottom:606.079984pt;}
.y32{bottom:609.418842pt;}
.y6c{bottom:625.919983pt;}
.yd{bottom:630.650697pt;}
.y4a{bottom:632.533287pt;}
.yb0{bottom:632.755052pt;}
.yb5{bottom:634.462377pt;}
.y35{bottom:651.177608pt;}
.y26{bottom:652.478997pt;}
.y31{bottom:674.418839pt;}
.y7c{bottom:677.119981pt;}
.y89{bottom:692.091466pt;}
.y2e{bottom:702.744307pt;}
.ya9{bottom:705.882841pt;}
.yc{bottom:710.650694pt;}
.y2{bottom:728.905458pt;}
.yaf{bottom:739.373073pt;}
.y1b{bottom:749.119978pt;}
.y2f{bottom:788.479976pt;}
.y34{bottom:800.177602pt;}
.yad{bottom:802.879976pt;}
.yb{bottom:819.368375pt;}
.y14{bottom:834.658647pt;}
.y88{bottom:841.091459pt;}
.y2c{bottom:841.919974pt;}
.h31{height:22.079999pt;}
.h37{height:22.399999pt;}
.h2f{height:49.919998pt;}
.h38{height:56.639998pt;}
.h35{height:57.627469pt;}
.h3a{height:58.879998pt;}
.h32{height:58.992330pt;}
.h36{height:58.999006pt;}
.h46{height:66.469542pt;}
.h28{height:66.879997pt;}
.h2a{height:67.199997pt;}
.h8{height:69.439997pt;}
.h25{height:71.143425pt;}
.h12{height:74.647997pt;}
.h17{height:75.927677pt;}
.h15{height:76.780797pt;}
.h26{height:77.220270pt;}
.h13{height:85.119996pt;}
.h16{height:85.439996pt;}
.hc{height:86.485036pt;}
.h40{height:89.156246pt;}
.h34{height:90.559996pt;}
.h14{height:91.449046pt;}
.h27{height:95.990402pt;}
.h2d{height:100.101376pt;}
.h4a{height:102.185990pt;}
.h18{height:103.852799pt;}
.h42{height:107.510401pt;}
.h30{height:107.809165pt;}
.h22{height:108.122522pt;}
.h3d{height:115.199995pt;}
.h49{height:116.102758pt;}
.h41{height:120.999995pt;}
.h39{height:125.310773pt;}
.h43{height:125.609371pt;}
.h3b{height:129.654188pt;}
.hb{height:129.759995pt;}
.h1b{height:134.380794pt;}
.h10{height:136.639994pt;}
.hf{height:137.089802pt;}
.h6{height:139.839994pt;}
.h29{height:147.266986pt;}
.h2b{height:147.879282pt;}
.h1c{height:150.399994pt;}
.h21{height:151.365034pt;}
.h1e{height:152.553597pt;}
.h3e{height:153.590399pt;}
.h5{height:166.044224pt;}
.h9{height:166.067020pt;}
.h3c{height:171.071499pt;}
.h44{height:173.002519pt;}
.h33{height:207.359991pt;}
.h19{height:209.919991pt;}
.h4{height:283.635697pt;}
.h11{height:287.774855pt;}
.he{height:291.839988pt;}
.h23{height:307.180799pt;}
.h1d{height:309.738782pt;}
.h48{height:316.850132pt;}
.h3{height:320.328112pt;}
.h4c{height:320.833279pt;}
.h7{height:333.042987pt;}
.h3f{height:334.485759pt;}
.h20{height:346.005039pt;}
.h1f{height:348.991519pt;}
.ha{height:418.122869pt;}
.hd{height:433.175678pt;}
.h1a{height:433.200004pt;}
.h47{height:451.136036pt;}
.h45{height:454.079981pt;}
.h24{height:542.079977pt;}
.h4b{height:627.199974pt;}
.h2e{height:678.863108pt;}
.h2c{height:682.239972pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w17{width:14.719999pt;}
.w16{width:22.399999pt;}
.w19{width:24.959999pt;}
.w18{width:26.239999pt;}
.w12{width:71.679997pt;}
.w11{width:81.919997pt;}
.w14{width:86.079996pt;}
.w15{width:96.319996pt;}
.w13{width:100.799996pt;}
.w7{width:143.999994pt;}
.w6{width:144.319994pt;}
.w8{width:145.279994pt;}
.wc{width:230.079990pt;}
.w10{width:253.119989pt;}
.w24{width:256.999989pt;}
.w20{width:261.953115pt;}
.w21{width:305.999987pt;}
.w1f{width:306.265613pt;}
.w26{width:310.999987pt;}
.w23{width:311.171862pt;}
.w1d{width:325.874946pt;}
.w25{width:325.874966pt;}
.w1e{width:325.874988pt;}
.wd{width:511.679979pt;}
.wb{width:545.599977pt;}
.w22{width:582.937480pt;}
.w1c{width:587.843720pt;}
.w2{width:598.719975pt;}
.w9{width:644.479973pt;}
.w28{width:703.419331pt;}
.w2a{width:703.419427pt;}
.w27{width:710.079970pt;}
.w29{width:710.399970pt;}
.w3{width:873.919964pt;}
.w1b{width:878.079963pt;}
.w5{width:960.959960pt;}
.w1a{width:1015.359958pt;}
.w2b{width:1031.999957pt;}
.wf{width:1048.152628pt;}
.we{width:1058.879956pt;}
.wa{width:1152.959952pt;}
.w4{width:1287.039946pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x3e{left:-1.068702pt;}
.x0{left:0.000000pt;}
.x1c{left:1.048877pt;}
.x9{left:2.610597pt;}
.x6{left:5.246827pt;}
.x71{left:6.713075pt;}
.x5c{left:8.000000pt;}
.x47{left:16.273497pt;}
.x18{left:19.495302pt;}
.x70{left:20.671027pt;}
.x2c{left:27.650970pt;}
.x54{left:29.976544pt;}
.x6a{left:32.457591pt;}
.x31{left:34.840274pt;}
.x14{left:36.010890pt;}
.x5b{left:63.265622pt;}
.x65{left:65.718747pt;}
.x16{left:68.799997pt;}
.x57{left:73.999997pt;}
.x6c{left:76.863839pt;}
.x3f{left:80.319997pt;}
.x6b{left:91.270089pt;}
.x1{left:94.526421pt;}
.x1e{left:96.406753pt;}
.xa{left:103.520914pt;}
.x15{left:107.852031pt;}
.x6f{left:111.657006pt;}
.x1f{left:116.844252pt;}
.x34{left:134.691216pt;}
.x4f{left:143.586224pt;}
.x68{left:146.450433pt;}
.x3c{left:157.343494pt;}
.x35{left:159.273434pt;}
.x12{left:169.062493pt;}
.x27{left:182.754276pt;}
.x75{left:198.656242pt;}
.x2b{left:206.360714pt;}
.x2{left:209.135796pt;}
.x17{left:235.519990pt;}
.x13{left:243.199990pt;}
.x69{left:247.606679pt;}
.x6e{left:257.900638pt;}
.x23{left:265.910086pt;}
.x24{left:273.263680pt;}
.x52{left:279.432205pt;}
.x66{left:287.037742pt;}
.x5d{left:291.941277pt;}
.x26{left:299.291882pt;}
.x7b{left:307.082605pt;}
.x29{left:323.910520pt;}
.x60{left:337.343736pt;}
.x25{left:339.748052pt;}
.x55{left:342.249986pt;}
.x3b{left:353.333127pt;}
.x20{left:355.219242pt;}
.x37{left:360.639985pt;}
.x5e{left:371.318306pt;}
.x32{left:377.054648pt;}
.x1d{left:384.482405pt;}
.x10{left:387.359047pt;}
.xc{left:388.671547pt;}
.xb{left:399.468421pt;}
.x6d{left:403.896435pt;}
.x67{left:409.627989pt;}
.x19{left:420.159982pt;}
.x33{left:426.328193pt;}
.x3a{left:430.719982pt;}
.x3d{left:435.901945pt;}
.x50{left:440.318303pt;}
.x4c{left:444.499932pt;}
.x36{left:452.582395pt;}
.xe{left:454.437169pt;}
.xd{left:457.921544pt;}
.x2a{left:462.723014pt;}
.x4d{left:489.518703pt;}
.xf{left:491.374668pt;}
.x76{left:512.521430pt;}
.x4b{left:520.959978pt;}
.x8{left:523.839978pt;}
.x74{left:535.615179pt;}
.x4e{left:561.207390pt;}
.x3{left:576.713901pt;}
.x39{left:584.301139pt;}
.x61{left:612.922470pt;}
.x5f{left:613.849546pt;}
.x56{left:617.825958pt;}
.x40{left:623.394888pt;}
.x2f{left:628.613637pt;}
.x77{left:647.999973pt;}
.x5{left:662.719972pt;}
.x46{left:676.159972pt;}
.x7c{left:677.634884pt;}
.x78{left:680.833188pt;}
.x30{left:687.359971pt;}
.x51{left:688.771423pt;}
.x4a{left:701.759971pt;}
.x49{left:713.279970pt;}
.x7{left:746.386527pt;}
.x41{left:751.359969pt;}
.x4{left:767.102937pt;}
.x53{left:796.876767pt;}
.x44{left:810.559966pt;}
.x28{left:850.832378pt;}
.x42{left:919.999962pt;}
.x62{left:938.807065pt;}
.x58{left:943.710649pt;}
.x72{left:1028.479957pt;}
.x73{left:1031.970826pt;}
.x45{left:1065.919956pt;}
.x43{left:1070.079955pt;}
.x22{left:1095.441822pt;}
.x21{left:1099.348072pt;}
.x1a{left:1188.479950pt;}
.x48{left:1219.199949pt;}
.x2d{left:1220.423149pt;}
.x2e{left:1223.423149pt;}
.x38{left:1241.599948pt;}
.x63{left:1264.691819pt;}
.x59{left:1269.595275pt;}
.x1b{left:1425.279941pt;}
.x64{left:1590.576510pt;}
.x5a{left:1595.480094pt;}
.x7a{left:1683.199381pt;}
.x79{left:1697.365086pt;}
.x11{left:1859.686643pt;}
}




    .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; }
  