
    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_cd5c77b6551f38d3a47c142e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_d5478d5d2aee967b7c904b90.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_bfc74a43eba45c4590bf84ff.woff')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_fcfc5c39402936b66bd9d0b7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_cd5c77b6551f38d3a47c142e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_80f65a0652f2f7f5d53f40b2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_76b2e773351fa0fdff6378e1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_6488c56f3355a1a8cb32ef14.woff')format("woff");}.ff8{font-family:ff8;line-height:0.774902;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_80f65a0652f2f7f5d53f40b2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_3a9d6172e7b05d01c6219391.woff')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_ba1dca330dbb685fb3927f0c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.774902;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_80f65a0652f2f7f5d53f40b2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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_65eb51c90daaebc101cb09e6.woff')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_17ea273acac89c653b1e13cb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.713867;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_c3102215d3f9e7b693aff0cd.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_17ea273acac89c653b1e13cb.woff')format("woff");}.ff10{font-family:ff10;line-height:0.713867;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_02b2914b929363948e02b23a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.774902;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_77a1b0d1bde49db530f7a837.woff')format("woff");}.ff12{font-family:ff12;line-height:1.005371;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_ff9bc16bad835d1ecee3eb70.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_dec1639a3210cb3939314175.woff')format("woff");}.ff14{font-family:ff14;line-height:1.005371;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_46d759303d705707d4b6efd0.woff')format("woff");}.ff15{font-family:ff15;line-height:1.005371;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_3b68c9c21ee9a049c3d589cc.woff')format("woff");}.ff16{font-family:ff16;line-height:1.005371;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_31a70b8b7f610d97f0849a0a.woff')format("woff");}.ff17{font-family:ff17;line-height:0.774902;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_0ba5effd7968df718c624217.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_bbddd1b06948625a8928f3c3.woff')format("woff");}.ff19{font-family:ff19;line-height:1.005371;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_c2a0fcbad704e2b1cde97792.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.005371;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_8965d33867a040197ddf9bbf.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.005371;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_935bc68badd4192cefb5274c.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.005371;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_c7b5c770233f0184ed6ada90.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.005371;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_c719fd16dcc718091cb521b7.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.005371;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_e051368882157210ab7f214c.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.774902;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_c719fd16dcc718091cb521b7.woff')format("woff");}.ff20{font-family:ff20;line-height:1.005371;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_1cfb177a515e021c5cf4b50a.woff')format("woff");}.ff21{font-family:ff21;line-height:0.774902;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_c719fd16dcc718091cb521b7.woff')format("woff");}.ff22{font-family:ff22;line-height:1.005371;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_d5a9cd5bb85253637a451fb7.woff')format("woff");}.ff23{font-family:ff23;line-height:1.005371;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_10d054b29aab3dffe6e38bc9.woff')format("woff");}.ff24{font-family:ff24;line-height:1.005371;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_e3552156898304d9c6c42c51.woff')format("woff");}.ff25{font-family:ff25;line-height:0.774902;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_10d054b29aab3dffe6e38bc9.woff')format("woff");}.ff26{font-family:ff26;line-height:1.005371;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_1cfb177a515e021c5cf4b50a.woff')format("woff");}.ff27{font-family:ff27;line-height:0.774902;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_10d054b29aab3dffe6e38bc9.woff')format("woff");}.ff28{font-family:ff28;line-height:1.005371;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_e65d749c87d2ce005f2fab98.woff')format("woff");}.ff29{font-family:ff29;line-height:0.774902;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_10d054b29aab3dffe6e38bc9.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.005371;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_dd24fa8ac3847ec948d0ac05.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.774902;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_10d054b29aab3dffe6e38bc9.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.005371;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_94bc3fae911d5cd4110eed68.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.774902;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_10d054b29aab3dffe6e38bc9.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.005371;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_56b7cd5ad1b608541c3be032.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.774902;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_10d054b29aab3dffe6e38bc9.woff')format("woff");}.ff30{font-family:ff30;line-height:1.005371;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_5475372076b8f44c450e00cf.woff')format("woff");}.ff31{font-family:ff31;line-height:0.774902;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_10d054b29aab3dffe6e38bc9.woff')format("woff");}.ff32{font-family:ff32;line-height:1.005371;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_510154cf92ac629cba75d406.woff')format("woff");}.ff33{font-family:ff33;line-height:0.774902;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_f6eb2e5cffe2455fe46521f7.woff')format("woff");}.ff34{font-family:ff34;line-height:1.005371;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_6cec57d8b6049f842c14bece.woff')format("woff");}.ff35{font-family:ff35;line-height:1.005371;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_5a29107be615260133d46fec.woff')format("woff");}.ff36{font-family:ff36;line-height:1.005371;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_c33c44e89d06c3c5866ef6ae.woff')format("woff");}.ff37{font-family:ff37;line-height:1.006348;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_36481a2147cfb1aca0d5b528.woff')format("woff");}.ff38{font-family:ff38;line-height:1.005371;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_f46fd0f26b92b1bca0ed41d7.woff')format("woff");}.ff39{font-family:ff39;line-height:1.005371;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_6488c56f3355a1a8cb32ef14.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.774902;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_24d9d58e825b6bbca63b88e1.woff')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_da55520ab4ce989064d8e485.woff')format("woff");}.ff3c{font-family:ff3c;line-height:1.006348;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;}
.m2{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);}
.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);}
.m1{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;}
.ls2{letter-spacing:0.019511px;}
.ls1{letter-spacing:0.035155px;}
.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;}
}
.ws0{word-spacing:-89.231388px;}
.ws7{word-spacing:-54.683259px;}
.ws3{word-spacing:-54.542987px;}
.ws2{word-spacing:-50.518943px;}
.ws6{word-spacing:-40.515644px;}
.ws8{word-spacing:-31.164081px;}
.ws4{word-spacing:-0.131985px;}
.ws5{word-spacing:-0.119970px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.006929px;}
.fc6{color:rgb(52,55,59);}
.fc5{color:rgb(4,0,21);}
.fc4{color:rgb(0,74,173);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(144,38,36);}
.fs19{font-size:95.984996px;}
.fs17{font-size:105.114729px;}
.fsb{font-size:117.867032px;}
.fs10{font-size:119.969995px;}
.fs12{font-size:126.035820px;}
.fs8{font-size:127.754990px;}
.fs2{font-size:131.984995px;}
.fs4{font-size:135.704791px;}
.fsf{font-size:137.969994px;}
.fs15{font-size:143.999994px;}
.fsa{font-size:149.985003px;}
.fs5{font-size:155.969994px;}
.fs1a{font-size:158.759989px;}
.fs16{font-size:159.649639px;}
.fse{font-size:162.507864px;}
.fs14{font-size:173.969993px;}
.fsd{font-size:179.999993px;}
.fs1{font-size:185.985001px;}
.fs6{font-size:194.478936px;}
.fsc{font-size:197.999992px;}
.fs9{font-size:209.969991px;}
.fs11{font-size:210.509987px;}
.fs7{font-size:215.999991px;}
.fs13{font-size:230.586075px;}
.fs0{font-size:269.999989px;}
.fs3{font-size:343.507291px;}
.fs18{font-size:433.859860px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y7f{bottom:1.000309px;}
.ya1{bottom:8.176604px;}
.y24{bottom:9.171343px;}
.y79{bottom:9.696598px;}
.y7d{bottom:9.772799px;}
.y7b{bottom:9.869391px;}
.ya5{bottom:10.458725px;}
.y9{bottom:10.518030px;}
.y50{bottom:12.507660px;}
.y15{bottom:14.924036px;}
.y19{bottom:25.935059px;}
.y7{bottom:26.121480px;}
.ya3{bottom:33.803121px;}
.y23{bottom:42.840008px;}
.ya4{bottom:61.200008px;}
.y4f{bottom:61.260019px;}
.yd{bottom:80.280007px;}
.yb{bottom:83.100597px;}
.y75{bottom:85.844880px;}
.y4b{bottom:89.280006px;}
.ya0{bottom:90.668278px;}
.y38{bottom:102.771572px;}
.y14{bottom:107.662063px;}
.y4e{bottom:110.012378px;}
.y45{bottom:114.067795px;}
.y35{bottom:133.162486px;}
.ya{bottom:137.280414px;}
.y9f{bottom:137.564230px;}
.y63{bottom:148.358298px;}
.y37{bottom:156.771569px;}
.y4d{bottom:158.764737px;}
.y74{bottom:158.969877px;}
.y61{bottom:166.027626px;}
.y44{bottom:168.067793px;}
.y97{bottom:168.697361px;}
.y7c{bottom:168.840003px;}
.y9e{bottom:190.110297px;}
.yc{bottom:193.755304px;}
.y13{bottom:200.400090px;}
.y62{bottom:202.358296px;}
.y4c{bottom:207.517096px;}
.y36{bottom:210.771567px;}
.y8b{bottom:220.468394px;}
.y7a{bottom:222.480001px;}
.y96{bottom:230.572358px;}
.y73{bottom:232.094874px;}
.y9d{bottom:242.656363px;}
.y60{bottom:243.652623px;}
.y2d{bottom:258.308867px;}
.y78{bottom:271.439999px;}
.y43{bottom:287.075731px;}
.y34{bottom:291.787479px;}
.y12{bottom:293.138117px;}
.y7e{bottom:295.199998px;}
.y9c{bottom:295.202430px;}
.y8a{bottom:296.968390px;}
.y95{bottom:300.014735px;}
.y72{bottom:305.219871px;}
.y5f{bottom:321.277620px;}
.y2c{bottom:321.308864px;}
.y22{bottom:343.983503px;}
.y9b{bottom:347.748497px;}
.y42{bottom:348.950729px;}
.y5{bottom:369.408945px;}
.y33{bottom:369.412476px;}
.y89{bottom:373.468387px;}
.ya7{bottom:375.734972px;}
.y71{bottom:378.344868px;}
.y2b{bottom:384.308862px;}
.y11{bottom:385.876143px;}
.y52{bottom:395.126084px;}
.y5e{bottom:398.902617px;}
.y68{bottom:399.376171px;}
.y9a{bottom:400.294563px;}
.y21{bottom:406.983500px;}
.ya6{bottom:407.234971px;}
.y94{bottom:409.597075px;}
.y49{bottom:409.644595px;}
.y41{bottom:410.825726px;}
.y4{bottom:436.573818px;}
.y2a{bottom:447.308859px;}
.y51{bottom:449.126081px;}
.y88{bottom:449.968384px;}
.y70{bottom:451.469865px;}
.y67{bottom:453.376169px;}
.y48{bottom:463.644593px;}
.y20{bottom:469.983498px;}
.y98{bottom:470.159991px;}
.yab{bottom:470.369608px;}
.y93{bottom:471.472072px;}
.y40{bottom:472.700724px;}
.y99{bottom:474.311066px;}
.y10{bottom:478.614170px;}
.y5d{bottom:479.902613px;}
.y66{bottom:507.376167px;}
.y29{bottom:510.308856px;}
.y47{bottom:517.644590px;}
.y6f{bottom:524.594862px;}
.y32{bottom:524.662470px;}
.y87{bottom:526.468381px;}
.y1f{bottom:532.983495px;}
.y92{bottom:533.347070px;}
.y3f{bottom:534.575721px;}
.yaa{bottom:539.714966px;}
.y65{bottom:561.376165px;}
.y3{bottom:564.065922px;}
.yf{bottom:571.352197px;}
.y28{bottom:573.308854px;}
.y56{bottom:588.287787px;}
.y1e{bottom:595.983492px;}
.y3e{bottom:596.450718px;}
.y6e{bottom:597.719859px;}
.ya9{bottom:599.489712px;}
.y31{bottom:602.287467px;}
.y86{bottom:602.968378px;}
.y91{bottom:611.475840px;}
.y27{bottom:636.308851px;}
.y5c{bottom:649.777606px;}
.y3d{bottom:658.325716px;}
.ya8{bottom:662.378441px;}
.ye{bottom:664.090224px;}
.y4a{bottom:668.253533px;}
.y2{bottom:669.815918px;}
.y6d{bottom:670.844856px;}
.y85{bottom:679.468374px;}
.y30{bottom:679.912463px;}
.y77{bottom:679.967856px;}
.ya2{bottom:680.759982px;}
.y90{bottom:704.093284px;}
.y3c{bottom:710.001993px;}
.y5b{bottom:727.402603px;}
.y1d{bottom:738.736162px;}
.y6c{bottom:743.969853px;}
.y84{bottom:755.968371px;}
.y2f{bottom:757.537460px;}
.y26{bottom:761.741774px;}
.y8f{bottom:762.593282px;}
.y3b{bottom:764.001991px;}
.y6{bottom:773.639978px;}
.y57{bottom:802.369961px;}
.y5a{bottom:805.027600px;}
.y6b{bottom:817.094850px;}
.y3a{bottom:818.001988px;}
.y55{bottom:818.698678px;}
.y1c{bottom:820.861159px;}
.y8e{bottom:821.093279px;}
.y83{bottom:832.468368px;}
.y2e{bottom:835.162457px;}
.y25{bottom:843.866770px;}
.y80{bottom:847.930569px;}
.y39{bottom:872.001986px;}
.y54{bottom:872.698676px;}
.y17{bottom:876.205882px;}
.y8d{bottom:879.593277px;}
.y8{bottom:881.279973px;}
.y59{bottom:882.652596px;}
.y6a{bottom:890.219847px;}
.y76{bottom:895.913927px;}
.y53{bottom:937.800929px;}
.y46{bottom:941.502618px;}
.y1b{bottom:943.752640px;}
.y58{bottom:947.554503px;}
.y82{bottom:950.483369px;}
.y81{bottom:953.606387px;}
.y64{bottom:956.632327px;}
.y8c{bottom:957.272130px;}
.y16{bottom:960.580879px;}
.y69{bottom:963.344843px;}
.y18{bottom:1034.639967px;}
.y1a{bottom:1118.659392px;}
.h12{height:40.319998px;}
.h1f{height:43.199998px;}
.h8{height:46.439998px;}
.h2b{height:73.535380px;}
.h28{height:80.427139px;}
.h13{height:90.184394px;}
.h25{height:90.299499px;}
.h1d{height:91.149078px;}
.h2d{height:91.910607px;}
.h20{height:96.434634px;}
.hf{height:97.750034px;}
.h1c{height:100.277662px;}
.h5{height:101.115457px;}
.h9{height:103.965243px;}
.h1b{height:105.565909px;}
.h24{height:110.320308px;}
.h11{height:114.759033px;}
.he{height:117.719995px;}
.h6{height:118.079995px;}
.ha{height:119.338369px;}
.h2c{height:121.628136px;}
.h27{height:122.153801px;}
.h1a{height:124.340734px;}
.h23{height:133.110829px;}
.h18{height:136.757807px;}
.h17{height:137.724604px;}
.h15{height:141.345697px;}
.h4{height:142.485580px;}
.h29{height:148.319994px;}
.hc{height:148.802975px;}
.h14{height:151.497064px;}
.h16{height:159.527982px;}
.h10{height:160.655750px;}
.h1e{height:161.068921px;}
.hd{height:165.269524px;}
.h22{height:176.429873px;}
.h3{height:206.586905px;}
.h19{height:251.279990px;}
.h7{height:262.830041px;}
.h2a{height:329.631808px;}
.h26{height:517.319978px;}
.h21{height:640.079973px;}
.hb{height:716.399970px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.wb{width:78.839997px;}
.w5{width:96.479996px;}
.w7{width:113.039995px;}
.w9{width:161.639993px;}
.wa{width:167.759993px;}
.we{width:210.239991px;}
.w3{width:210.599991px;}
.w8{width:326.879986px;}
.w6{width:327.599986px;}
.wd{width:600.119975px;}
.w2{width:741.959969px;}
.w4{width:853.559964px;}
.wc{width:1990.439917px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x6{left:1.502673px;}
.x2f{left:15.361688px;}
.x2e{left:36.595626px;}
.x45{left:61.413422px;}
.x3f{left:65.159997px;}
.x14{left:73.439997px;}
.x2d{left:79.317419px;}
.x4e{left:89.639996px;}
.x28{left:95.452511px;}
.x30{left:100.741796px;}
.x10{left:109.777024px;}
.xa{left:121.111858px;}
.x33{left:154.959132px;}
.x2a{left:156.817743px;}
.x37{left:159.149535px;}
.x29{left:160.931024px;}
.x3b{left:162.680146px;}
.x48{left:164.045153px;}
.x47{left:165.831685px;}
.x4b{left:167.743163px;}
.x4a{left:168.868163px;}
.x4c{left:171.613163px;}
.x8{left:175.252481px;}
.x40{left:180.966789px;}
.x34{left:182.619626px;}
.x49{left:183.653551px;}
.x39{left:185.355926px;}
.x3a{left:188.502410px;}
.x9{left:189.895059px;}
.x27{left:251.782967px;}
.x26{left:289.486043px;}
.x25{left:297.202840px;}
.x44{left:376.559984px;}
.x2{left:416.351232px;}
.x38{left:476.624951px;}
.xf{left:478.997998px;}
.x1{left:498.546541px;}
.x32{left:559.543953px;}
.x31{left:593.276373px;}
.x5{left:683.279972px;}
.x4{left:702.393808px;}
.x3{left:770.446729px;}
.x4d{left:812.519966px;}
.x3c{left:819.674174px;}
.x1f{left:861.922655px;}
.x20{left:894.055466px;}
.x3d{left:896.174171px;}
.xd{left:906.819395px;}
.x23{left:907.907028px;}
.x24{left:909.699997px;}
.x21{left:913.760543px;}
.xb{left:923.759962px;}
.x22{left:927.541793px;}
.xc{left:972.579158px;}
.xe{left:1054.079956px;}
.x11{left:1133.070075px;}
.x17{left:1134.132829px;}
.x16{left:1151.672280px;}
.x13{left:1154.892948px;}
.x12{left:1262.937257px;}
.x18{left:1264.500665px;}
.x1a{left:1275.873711px;}
.x36{left:1293.606155px;}
.x1b{left:1315.705741px;}
.x1e{left:1323.985038px;}
.x1d{left:1332.158865px;}
.x19{left:1337.625662px;}
.x1c{left:1346.871755px;}
.x15{left:1384.854654px;}
.x35{left:1423.836602px;}
.x41{left:1593.719934px;}
.x43{left:1597.319933px;}
.x42{left:1598.399933px;}
.x46{left:1699.933645px;}
.x3e{left:1701.433405px;}
.x2b{left:1747.496695px;}
.x2c{left:1759.679927px;}
.x7{left:1877.039922px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017343pt;}
.ls1{letter-spacing:0.031249pt;}
.ws0{word-spacing:-79.316789pt;}
.ws7{word-spacing:-48.607342pt;}
.ws3{word-spacing:-48.482655pt;}
.ws2{word-spacing:-44.905727pt;}
.ws6{word-spacing:-36.013905pt;}
.ws8{word-spacing:-27.701406pt;}
.ws4{word-spacing:-0.117320pt;}
.ws5{word-spacing:-0.106640pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-0.895048pt;}
.fs19{font-size:85.319996pt;}
.fs17{font-size:93.435315pt;}
.fsb{font-size:104.770695pt;}
.fs10{font-size:106.639996pt;}
.fs12{font-size:112.031840pt;}
.fs8{font-size:113.559991pt;}
.fs2{font-size:117.319995pt;}
.fs4{font-size:120.626481pt;}
.fsf{font-size:122.639995pt;}
.fs15{font-size:127.999995pt;}
.fsa{font-size:133.320002pt;}
.fs5{font-size:138.639994pt;}
.fs1a{font-size:141.119990pt;}
.fs16{font-size:141.910790pt;}
.fse{font-size:144.451435pt;}
.fs14{font-size:154.639994pt;}
.fsd{font-size:159.999993pt;}
.fs1{font-size:165.320001pt;}
.fs6{font-size:172.870165pt;}
.fsc{font-size:175.999993pt;}
.fs9{font-size:186.639992pt;}
.fs11{font-size:187.119988pt;}
.fs7{font-size:191.999992pt;}
.fs13{font-size:204.965400pt;}
.fs0{font-size:239.999990pt;}
.fs3{font-size:305.339814pt;}
.fs18{font-size:385.653209pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y7f{bottom:0.889163pt;}
.ya1{bottom:7.268092pt;}
.y24{bottom:8.152305pt;}
.y79{bottom:8.619198pt;}
.y7d{bottom:8.686933pt;}
.y7b{bottom:8.772792pt;}
.ya5{bottom:9.296645pt;}
.y9{bottom:9.349360pt;}
.y50{bottom:11.117920pt;}
.y15{bottom:13.265810pt;}
.y19{bottom:23.053386pt;}
.y7{bottom:23.219094pt;}
.ya3{bottom:30.047218pt;}
.y23{bottom:38.080007pt;}
.ya4{bottom:54.400007pt;}
.y4f{bottom:54.453350pt;}
.yd{bottom:71.360006pt;}
.yb{bottom:73.867197pt;}
.y75{bottom:76.306560pt;}
.y4b{bottom:79.360006pt;}
.ya0{bottom:80.594025pt;}
.y38{bottom:91.352508pt;}
.y14{bottom:95.699612pt;}
.y4e{bottom:97.788780pt;}
.y45{bottom:101.393596pt;}
.y35{bottom:118.366654pt;}
.ya{bottom:122.027035pt;}
.y9f{bottom:122.279316pt;}
.y63{bottom:131.874043pt;}
.y37{bottom:139.352506pt;}
.y4d{bottom:141.124211pt;}
.y74{bottom:141.306557pt;}
.y61{bottom:147.580112pt;}
.y44{bottom:149.393594pt;}
.y97{bottom:149.953210pt;}
.y7c{bottom:150.080003pt;}
.y9e{bottom:168.986930pt;}
.yc{bottom:172.226937pt;}
.y13{bottom:178.133413pt;}
.y62{bottom:179.874041pt;}
.y4c{bottom:184.459641pt;}
.y36{bottom:187.352504pt;}
.y8b{bottom:195.971905pt;}
.y7a{bottom:197.760001pt;}
.y96{bottom:204.953207pt;}
.y73{bottom:206.306555pt;}
.y9d{bottom:215.694545pt;}
.y60{bottom:216.580109pt;}
.y2d{bottom:229.607882pt;}
.y78{bottom:241.279999pt;}
.y43{bottom:255.178428pt;}
.y34{bottom:259.366648pt;}
.y12{bottom:260.567215pt;}
.y7e{bottom:262.399998pt;}
.y9c{bottom:262.402160pt;}
.y8a{bottom:263.971903pt;}
.y95{bottom:266.679765pt;}
.y72{bottom:271.306552pt;}
.y5f{bottom:285.580107pt;}
.y2c{bottom:285.607879pt;}
.y22{bottom:305.763114pt;}
.y9b{bottom:309.109775pt;}
.y42{bottom:310.178425pt;}
.y5{bottom:328.363506pt;}
.y33{bottom:328.366646pt;}
.y89{bottom:331.971900pt;}
.ya7{bottom:333.986642pt;}
.y71{bottom:336.306549pt;}
.y2b{bottom:341.607877pt;}
.y11{bottom:343.001016pt;}
.y52{bottom:351.223185pt;}
.y5e{bottom:354.580104pt;}
.y68{bottom:355.001041pt;}
.y9a{bottom:355.817390pt;}
.y21{bottom:361.763111pt;}
.ya6{bottom:361.986641pt;}
.y94{bottom:364.086289pt;}
.y49{bottom:364.128529pt;}
.y41{bottom:365.178423pt;}
.y4{bottom:388.065616pt;}
.y2a{bottom:397.607875pt;}
.y51{bottom:399.223183pt;}
.y88{bottom:399.971897pt;}
.y70{bottom:401.306546pt;}
.y67{bottom:403.001039pt;}
.y48{bottom:412.128527pt;}
.y20{bottom:417.763109pt;}
.y98{bottom:417.919992pt;}
.yab{bottom:418.106319pt;}
.y93{bottom:419.086287pt;}
.y40{bottom:420.178421pt;}
.y99{bottom:421.609836pt;}
.y10{bottom:425.434818pt;}
.y5d{bottom:426.580101pt;}
.y66{bottom:451.001037pt;}
.y29{bottom:453.607872pt;}
.y47{bottom:460.128525pt;}
.y6f{bottom:466.306544pt;}
.y32{bottom:466.366640pt;}
.y87{bottom:467.971894pt;}
.y1f{bottom:473.763107pt;}
.y92{bottom:474.086284pt;}
.y3f{bottom:475.178419pt;}
.yaa{bottom:479.746636pt;}
.y65{bottom:499.001035pt;}
.y3{bottom:501.391931pt;}
.yf{bottom:507.868619pt;}
.y28{bottom:509.607870pt;}
.y56{bottom:522.922477pt;}
.y1e{bottom:529.763104pt;}
.y3e{bottom:530.178416pt;}
.y6e{bottom:531.306541pt;}
.ya9{bottom:532.879744pt;}
.y31{bottom:535.366637pt;}
.y86{bottom:535.971891pt;}
.y91{bottom:543.534080pt;}
.y27{bottom:565.607868pt;}
.y5c{bottom:577.580094pt;}
.y3d{bottom:585.178414pt;}
.ya8{bottom:588.780836pt;}
.ye{bottom:590.302421pt;}
.y4a{bottom:594.003140pt;}
.y2{bottom:595.391927pt;}
.y6d{bottom:596.306538pt;}
.y85{bottom:603.971888pt;}
.y30{bottom:604.366634pt;}
.y77{bottom:604.415872pt;}
.ya2{bottom:605.119984pt;}
.y90{bottom:625.860697pt;}
.y3c{bottom:631.112883pt;}
.y5b{bottom:646.580091pt;}
.y1d{bottom:656.654366pt;}
.y6c{bottom:661.306536pt;}
.y84{bottom:671.971886pt;}
.y2f{bottom:673.366631pt;}
.y26{bottom:677.103799pt;}
.y8f{bottom:677.860695pt;}
.y3b{bottom:679.112881pt;}
.y6{bottom:687.679980pt;}
.y57{bottom:713.217743pt;}
.y5a{bottom:715.580089pt;}
.y6b{bottom:726.306533pt;}
.y3a{bottom:727.112879pt;}
.y55{bottom:727.732158pt;}
.y1c{bottom:729.654363pt;}
.y8e{bottom:729.860693pt;}
.y83{bottom:739.971883pt;}
.y2e{bottom:742.366628pt;}
.y25{bottom:750.103796pt;}
.y80{bottom:753.716061pt;}
.y39{bottom:775.112877pt;}
.y54{bottom:775.732156pt;}
.y17{bottom:778.849673pt;}
.y8d{bottom:781.860691pt;}
.y8{bottom:783.359976pt;}
.y59{bottom:784.580086pt;}
.y6a{bottom:791.306530pt;}
.y76{bottom:796.367935pt;}
.y53{bottom:833.600826pt;}
.y46{bottom:836.891216pt;}
.y1b{bottom:838.891235pt;}
.y58{bottom:842.270669pt;}
.y82{bottom:844.874106pt;}
.y81{bottom:847.650121pt;}
.y64{bottom:850.339846pt;}
.y8c{bottom:850.908560pt;}
.y16{bottom:853.849670pt;}
.y69{bottom:856.306528pt;}
.y18{bottom:919.679971pt;}
.y1a{bottom:994.363904pt;}
.h12{height:35.839999pt;}
.h1f{height:38.399998pt;}
.h8{height:41.279998pt;}
.h2b{height:65.364782pt;}
.h28{height:71.490790pt;}
.h13{height:80.163906pt;}
.h25{height:80.266221pt;}
.h1d{height:81.021403pt;}
.h2d{height:81.698317pt;}
.h20{height:85.719675pt;}
.hf{height:86.888919pt;}
.h1c{height:89.135699pt;}
.h5{height:89.880406pt;}
.h9{height:92.413549pt;}
.h1b{height:93.836363pt;}
.h24{height:98.062496pt;}
.h11{height:102.008029pt;}
.he{height:104.639996pt;}
.h6{height:104.959996pt;}
.ha{height:106.078550pt;}
.h2c{height:108.113899pt;}
.h27{height:108.581156pt;}
.h1a{height:110.525097pt;}
.h23{height:118.320737pt;}
.h18{height:121.562495pt;}
.h17{height:122.421870pt;}
.h15{height:125.640620pt;}
.h4{height:126.653849pt;}
.h29{height:131.839995pt;}
.hc{height:132.269311pt;}
.h14{height:134.664057pt;}
.h16{height:141.802650pt;}
.h10{height:142.805111pt;}
.h1e{height:143.172374pt;}
.hd{height:146.906244pt;}
.h22{height:156.826554pt;}
.h3{height:183.632805pt;}
.h19{height:223.359991pt;}
.h7{height:233.626703pt;}
.h2a{height:293.006051pt;}
.h26{height:459.839981pt;}
.h21{height:568.959976pt;}
.hb{height:636.799973pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.wb{width:70.079997pt;}
.w5{width:85.759996pt;}
.w7{width:100.479996pt;}
.w9{width:143.679994pt;}
.wa{width:149.119994pt;}
.we{width:186.879992pt;}
.w3{width:187.199992pt;}
.w8{width:290.559988pt;}
.w6{width:291.199988pt;}
.wd{width:533.439978pt;}
.w2{width:659.519973pt;}
.w4{width:758.719968pt;}
.wc{width:1769.279926pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.335709pt;}
.x2f{left:13.654834pt;}
.x2e{left:32.529445pt;}
.x45{left:54.589708pt;}
.x3f{left:57.919998pt;}
.x14{left:65.279997pt;}
.x2d{left:70.504373pt;}
.x4e{left:79.679997pt;}
.x28{left:84.846676pt;}
.x30{left:89.548263pt;}
.x10{left:97.579577pt;}
.xa{left:107.654985pt;}
.x33{left:137.741450pt;}
.x2a{left:139.393549pt;}
.x37{left:141.466253pt;}
.x29{left:143.049799pt;}
.x3b{left:144.604574pt;}
.x48{left:145.817914pt;}
.x47{left:147.405943pt;}
.x4b{left:149.105034pt;}
.x4a{left:150.105034pt;}
.x4c{left:152.545034pt;}
.x8{left:155.779983pt;}
.x40{left:160.859368pt;}
.x34{left:162.328556pt;}
.x49{left:163.247601pt;}
.x39{left:164.760823pt;}
.x3a{left:167.557698pt;}
.x9{left:168.795608pt;}
.x27{left:223.807082pt;}
.x26{left:257.320927pt;}
.x25{left:264.180302pt;}
.x44{left:334.719986pt;}
.x2{left:370.089984pt;}
.x38{left:423.666624pt;}
.xf{left:425.775998pt;}
.x1{left:443.152481pt;}
.x32{left:497.372402pt;}
.x31{left:527.356776pt;}
.x5{left:607.359975pt;}
.x4{left:624.350052pt;}
.x3{left:684.841536pt;}
.x4d{left:722.239970pt;}
.x3c{left:728.599266pt;}
.x1f{left:766.153471pt;}
.x20{left:794.715970pt;}
.x3d{left:796.599263pt;}
.xd{left:806.061684pt;}
.x23{left:807.028469pt;}
.x24{left:808.622219pt;}
.x21{left:812.231594pt;}
.xb{left:821.119966pt;}
.x22{left:824.481594pt;}
.xc{left:864.514807pt;}
.xe{left:936.959961pt;}
.x11{left:1007.173400pt;}
.x17{left:1008.118070pt;}
.x16{left:1023.708693pt;}
.x13{left:1026.571509pt;}
.x12{left:1122.610895pt;}
.x18{left:1124.000591pt;}
.x1a{left:1134.109966pt;}
.x36{left:1149.872138pt;}
.x1b{left:1169.516214pt;}
.x1e{left:1176.875589pt;}
.x1d{left:1184.141214pt;}
.x19{left:1189.000588pt;}
.x1c{left:1197.219338pt;}
.x15{left:1230.981915pt;}
.x35{left:1265.632535pt;}
.x41{left:1416.639941pt;}
.x43{left:1419.839941pt;}
.x42{left:1420.799941pt;}
.x46{left:1511.052129pt;}
.x3e{left:1512.385249pt;}
.x2b{left:1553.330395pt;}
.x2c{left:1564.159935pt;}
.x7{left:1668.479930pt;}
}




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