
    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_65f6fbb869000beb5c633745.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_e250ae69d982d0f6d2129752.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_0eda05898578f8284bc592cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_ba43a8dc4e8cace27baa4a80.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_b1c99f0861a276216bce45c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.872559;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;}
.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);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.005232px;}
.ls1{letter-spacing:0.009600px;}
.ls2{letter-spacing:0.010200px;}
.ls6{letter-spacing:3.449400px;}
.ls4{letter-spacing:4.888716px;}
.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:-23.352000px;}
.ws1{word-spacing:-18.348000px;}
.ws1d{word-spacing:-6.006000px;}
.ws7a{word-spacing:-4.950000px;}
.wsc{word-spacing:-3.498000px;}
.ws79{word-spacing:-3.432000px;}
.ws3b{word-spacing:-3.300000px;}
.ws73{word-spacing:-3.102000px;}
.ws66{word-spacing:-3.036000px;}
.ws3d{word-spacing:-2.970000px;}
.ws18{word-spacing:-2.904000px;}
.ws3{word-spacing:-2.772000px;}
.ws6f{word-spacing:-2.706000px;}
.ws4d{word-spacing:-2.574000px;}
.ws58{word-spacing:-2.442000px;}
.ws81{word-spacing:-2.310000px;}
.ws4{word-spacing:-2.178000px;}
.ws50{word-spacing:-2.112000px;}
.ws56{word-spacing:-1.848000px;}
.ws2f{word-spacing:-1.584000px;}
.ws3a{word-spacing:-1.518000px;}
.ws7f{word-spacing:-1.254000px;}
.ws28{word-spacing:-1.188000px;}
.ws38{word-spacing:-1.122000px;}
.ws49{word-spacing:-0.990000px;}
.ws69{word-spacing:-0.858000px;}
.ws46{word-spacing:-0.792000px;}
.ws19{word-spacing:-0.726000px;}
.ws64{word-spacing:-0.594000px;}
.ws7b{word-spacing:-0.528000px;}
.ws68{word-spacing:-0.396000px;}
.ws7c{word-spacing:-0.330000px;}
.ws87{word-spacing:-0.264000px;}
.ws4e{word-spacing:-0.132000px;}
.ws2{word-spacing:0.000000px;}
.ws1c{word-spacing:0.066000px;}
.ws20{word-spacing:0.198000px;}
.ws1b{word-spacing:0.264000px;}
.ws10{word-spacing:0.330000px;}
.ws7{word-spacing:0.396000px;}
.ws65{word-spacing:0.462000px;}
.ws5e{word-spacing:0.528000px;}
.ws4a{word-spacing:0.594000px;}
.ws92{word-spacing:0.660000px;}
.ws33{word-spacing:0.726000px;}
.wsf{word-spacing:0.858000px;}
.ws1f{word-spacing:1.122000px;}
.wsd{word-spacing:1.254000px;}
.ws6{word-spacing:1.452000px;}
.ws37{word-spacing:1.518000px;}
.ws51{word-spacing:1.848000px;}
.ws78{word-spacing:2.046000px;}
.ws5a{word-spacing:2.112000px;}
.ws6e{word-spacing:2.442000px;}
.ws5f{word-spacing:2.706000px;}
.ws7e{word-spacing:2.838000px;}
.ws14{word-spacing:3.102000px;}
.ws34{word-spacing:3.234000px;}
.ws6c{word-spacing:3.366000px;}
.ws4b{word-spacing:3.432000px;}
.ws53{word-spacing:3.894000px;}
.ws91{word-spacing:3.960000px;}
.wsa{word-spacing:4.026000px;}
.ws30{word-spacing:4.224000px;}
.ws80{word-spacing:4.290000px;}
.ws45{word-spacing:4.422000px;}
.ws13{word-spacing:4.554000px;}
.ws27{word-spacing:4.686000px;}
.ws89{word-spacing:4.884000px;}
.ws60{word-spacing:4.950000px;}
.wsb{word-spacing:5.082000px;}
.ws1a{word-spacing:5.280000px;}
.ws15{word-spacing:5.478000px;}
.ws8f{word-spacing:5.610000px;}
.ws4c{word-spacing:5.874000px;}
.ws70{word-spacing:6.006000px;}
.ws3e{word-spacing:6.072000px;}
.ws5c{word-spacing:6.138000px;}
.ws35{word-spacing:6.204000px;}
.ws40{word-spacing:6.270000px;}
.ws8d{word-spacing:6.336000px;}
.ws8{word-spacing:6.402000px;}
.ws52{word-spacing:6.468000px;}
.ws72{word-spacing:6.534000px;}
.ws6b{word-spacing:6.996000px;}
.ws1e{word-spacing:7.062000px;}
.ws83{word-spacing:7.128000px;}
.ws48{word-spacing:7.326000px;}
.ws88{word-spacing:7.524000px;}
.ws2c{word-spacing:7.590000px;}
.ws59{word-spacing:7.722000px;}
.ws42{word-spacing:8.052000px;}
.ws57{word-spacing:8.184000px;}
.ws74{word-spacing:8.250000px;}
.ws3f{word-spacing:8.382000px;}
.ws47{word-spacing:8.514000px;}
.wse{word-spacing:8.646000px;}
.ws39{word-spacing:8.712000px;}
.ws5d{word-spacing:8.778000px;}
.ws21{word-spacing:8.910000px;}
.ws44{word-spacing:9.174000px;}
.ws77{word-spacing:9.240000px;}
.ws4f{word-spacing:9.372000px;}
.ws36{word-spacing:9.438000px;}
.ws32{word-spacing:9.702000px;}
.ws25{word-spacing:9.768000px;}
.ws85{word-spacing:9.834000px;}
.ws41{word-spacing:9.900000px;}
.ws17{word-spacing:10.032000px;}
.ws67{word-spacing:10.428000px;}
.ws6a{word-spacing:10.626000px;}
.ws90{word-spacing:10.692000px;}
.ws9{word-spacing:10.758000px;}
.ws23{word-spacing:10.956000px;}
.ws26{word-spacing:11.088000px;}
.ws2d{word-spacing:11.220000px;}
.ws84{word-spacing:11.286000px;}
.ws22{word-spacing:11.880000px;}
.ws3c{word-spacing:12.078000px;}
.ws7d{word-spacing:12.804000px;}
.ws31{word-spacing:12.936000px;}
.ws76{word-spacing:13.002000px;}
.ws5{word-spacing:13.464000px;}
.ws12{word-spacing:13.530000px;}
.ws2e{word-spacing:14.190000px;}
.ws62{word-spacing:14.256000px;}
.ws16{word-spacing:14.322000px;}
.ws71{word-spacing:14.388000px;}
.ws11{word-spacing:15.708000px;}
.ws24{word-spacing:15.840000px;}
.ws86{word-spacing:16.434000px;}
.ws82{word-spacing:17.754000px;}
.ws75{word-spacing:18.018000px;}
.ws54{word-spacing:18.546000px;}
.ws29{word-spacing:18.612000px;}
.ws5b{word-spacing:18.744000px;}
.ws6d{word-spacing:20.856000px;}
.ws61{word-spacing:20.988000px;}
.ws55{word-spacing:21.054000px;}
.ws8b{word-spacing:23.232000px;}
.ws43{word-spacing:23.760000px;}
.ws2a{word-spacing:26.202000px;}
.ws2b{word-spacing:28.644000px;}
.ws8c{word-spacing:29.766000px;}
.ws8a{word-spacing:29.964000px;}
.ws8e{word-spacing:31.218000px;}
.ws63{word-spacing:44.616000px;}
._a{margin-left:-7.326000px;}
._1{margin-left:-6.224400px;}
._0{margin-left:-4.302000px;}
._6{margin-left:-2.958000px;}
._b{margin-left:-1.188000px;}
._10{width:1.313400px;}
._7{width:2.686200px;}
._5{width:3.894000px;}
._11{width:5.124000px;}
._8{width:6.402000px;}
._4{width:8.091600px;}
._e{width:9.199200px;}
._f{width:10.282800px;}
._9{width:11.345400px;}
._d{width:13.034400px;}
._13{width:14.379000px;}
._12{width:15.562800px;}
._3{width:17.219400px;}
._2{width:20.875800px;}
._14{width:21.898800px;}
._c{width:28.516800px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.478000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:86.225700px;}
.y34{bottom:90.684300px;}
.y7e{bottom:104.975700px;}
.y33{bottom:109.434300px;}
.y96{bottom:119.473800px;}
.y7d{bottom:123.725700px;}
.y32{bottom:128.184300px;}
.y95{bottom:138.223800px;}
.y7c{bottom:142.475700px;}
.y31{bottom:146.934300px;}
.y94{bottom:156.973800px;}
.y7b{bottom:161.225700px;}
.y30{bottom:165.684300px;}
.y93{bottom:175.723800px;}
.y7a{bottom:179.975700px;}
.y2f{bottom:184.434300px;}
.y92{bottom:194.473800px;}
.y79{bottom:198.725700px;}
.y2e{bottom:203.184300px;}
.y78{bottom:217.475700px;}
.y2d{bottom:221.934450px;}
.y77{bottom:236.225700px;}
.y91{bottom:240.477750px;}
.y2c{bottom:240.684450px;}
.y76{bottom:254.975700px;}
.y90{bottom:259.227750px;}
.y2b{bottom:259.434450px;}
.y75{bottom:273.725700px;}
.y8f{bottom:277.977750px;}
.y4a{bottom:278.184450px;}
.y2a{bottom:282.436350px;}
.y74{bottom:292.475700px;}
.y8e{bottom:296.727750px;}
.y49{bottom:296.934450px;}
.y29{bottom:301.186350px;}
.y73{bottom:311.225850px;}
.y8d{bottom:315.477750px;}
.y28{bottom:319.936350px;}
.y72{bottom:334.227750px;}
.y27{bottom:338.686350px;}
.y71{bottom:352.977750px;}
.y26{bottom:357.436350px;}
.y70{bottom:371.727750px;}
.y25{bottom:376.186350px;}
.y6f{bottom:390.477750px;}
.y24{bottom:394.936350px;}
.y6e{bottom:409.227750px;}
.y23{bottom:413.686350px;}
.y6d{bottom:427.977750px;}
.y22{bottom:432.436350px;}
.y6c{bottom:446.727750px;}
.y48{bottom:451.186350px;}
.y21{bottom:455.438250px;}
.y6b{bottom:465.477750px;}
.y47{bottom:469.936350px;}
.y20{bottom:474.188250px;}
.y6a{bottom:484.227750px;}
.y1f{bottom:492.938250px;}
.y69{bottom:502.977750px;}
.y1e{bottom:511.688250px;}
.y68{bottom:521.727750px;}
.y1d{bottom:530.438250px;}
.y67{bottom:540.477750px;}
.y8c{bottom:544.729650px;}
.y46{bottom:549.188250px;}
.y1c{bottom:553.440300px;}
.y66{bottom:559.227750px;}
.y8b{bottom:563.479650px;}
.y45{bottom:567.938250px;}
.y1b{bottom:572.190300px;}
.y65{bottom:577.977750px;}
.y8a{bottom:582.229650px;}
.y44{bottom:586.688250px;}
.y1a{bottom:590.940300px;}
.y64{bottom:596.727750px;}
.y89{bottom:600.979650px;}
.y43{bottom:605.438250px;}
.y19{bottom:609.690300px;}
.y63{bottom:615.477750px;}
.y88{bottom:619.729650px;}
.y42{bottom:624.188250px;}
.y18{bottom:628.440300px;}
.y62{bottom:634.227750px;}
.y87{bottom:638.479650px;}
.y41{bottom:642.938250px;}
.y17{bottom:647.190300px;}
.y61{bottom:652.977750px;}
.y86{bottom:657.229650px;}
.y40{bottom:661.688250px;}
.ya0{bottom:663.055800px;}
.y16{bottom:665.940300px;}
.y60{bottom:675.979650px;}
.y3f{bottom:680.438250px;}
.y15{bottom:684.690300px;}
.y9f{bottom:686.057700px;}
.y5f{bottom:694.729650px;}
.y3e{bottom:699.188250px;}
.y14{bottom:703.440300px;}
.y9e{bottom:709.059750px;}
.y5e{bottom:713.479650px;}
.y3d{bottom:717.938250px;}
.y13{bottom:722.190300px;}
.y9d{bottom:732.061650px;}
.y5d{bottom:732.229650px;}
.y3c{bottom:736.688250px;}
.y12{bottom:740.940300px;}
.y5c{bottom:750.979650px;}
.y9c{bottom:755.063550px;}
.y3b{bottom:755.438250px;}
.y11{bottom:759.690300px;}
.y5b{bottom:769.729650px;}
.y3a{bottom:774.188250px;}
.y9b{bottom:778.065600px;}
.y10{bottom:778.440300px;}
.y5a{bottom:788.479650px;}
.y39{bottom:792.938250px;}
.yf{bottom:797.190300px;}
.y9a{bottom:801.067500px;}
.y59{bottom:807.229650px;}
.y38{bottom:811.688250px;}
.ye{bottom:815.940300px;}
.y99{bottom:824.069550px;}
.y58{bottom:825.979650px;}
.y37{bottom:830.438250px;}
.yd{bottom:834.690300px;}
.y57{bottom:844.729650px;}
.y98{bottom:847.071600px;}
.y36{bottom:849.188250px;}
.yc{bottom:853.440300px;}
.y56{bottom:863.479650px;}
.y35{bottom:867.938250px;}
.y97{bottom:870.073500px;}
.yb{bottom:872.190300px;}
.y55{bottom:882.229650px;}
.ya{bottom:890.940300px;}
.y54{bottom:900.979650px;}
.y9{bottom:909.690300px;}
.y85{bottom:919.729650px;}
.y53{bottom:923.981700px;}
.y8{bottom:928.440300px;}
.y84{bottom:938.479650px;}
.y52{bottom:942.731700px;}
.y7{bottom:947.190300px;}
.y83{bottom:957.229650px;}
.y51{bottom:961.481700px;}
.y6{bottom:965.940300px;}
.y82{bottom:975.979650px;}
.y50{bottom:980.231700px;}
.y5{bottom:992.428050px;}
.y81{bottom:994.729650px;}
.y4f{bottom:998.981700px;}
.y80{bottom:1013.479650px;}
.y4e{bottom:1017.731700px;}
.y4{bottom:1023.323700px;}
.y4d{bottom:1036.481700px;}
.y3{bottom:1039.823700px;}
.y4c{bottom:1055.231700px;}
.y2{bottom:1056.323700px;}
.y4b{bottom:1108.294050px;}
.y1{bottom:1109.357100px;}
.h4{height:43.681641px;}
.h6{height:48.049805px;}
.h7{height:48.082031px;}
.ha{height:49.991036px;}
.h3{height:54.169922px;}
.h8{height:59.006836px;}
.h9{height:59.586914px;}
.h2{height:61.154297px;}
.hb{height:65.003906px;}
.h5{height:75.837891px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x6{left:106.299300px;}
.x5{left:385.070100px;}
.x7{left:476.716500px;}
.x8{left:497.976450px;}
.x3{left:508.762800px;}
.x4{left:548.994750px;}
.xc{left:551.363400px;}
.xa{left:564.292200px;}
.x11{left:568.781850px;}
.xf{left:570.634950px;}
.xd{left:575.243250px;}
.xb{left:618.394650px;}
.x10{left:650.436000px;}
.xe{left:757.806750px;}
.x2{left:775.393650px;}
.x9{left:827.035350px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.004651pt;}
.ls1{letter-spacing:0.008533pt;}
.ls2{letter-spacing:0.009067pt;}
.ls6{letter-spacing:3.066133pt;}
.ls4{letter-spacing:4.345525pt;}
.ws0{word-spacing:-20.757333pt;}
.ws1{word-spacing:-16.309333pt;}
.ws1d{word-spacing:-5.338667pt;}
.ws7a{word-spacing:-4.400000pt;}
.wsc{word-spacing:-3.109333pt;}
.ws79{word-spacing:-3.050667pt;}
.ws3b{word-spacing:-2.933333pt;}
.ws73{word-spacing:-2.757333pt;}
.ws66{word-spacing:-2.698667pt;}
.ws3d{word-spacing:-2.640000pt;}
.ws18{word-spacing:-2.581333pt;}
.ws3{word-spacing:-2.464000pt;}
.ws6f{word-spacing:-2.405333pt;}
.ws4d{word-spacing:-2.288000pt;}
.ws58{word-spacing:-2.170667pt;}
.ws81{word-spacing:-2.053333pt;}
.ws4{word-spacing:-1.936000pt;}
.ws50{word-spacing:-1.877333pt;}
.ws56{word-spacing:-1.642667pt;}
.ws2f{word-spacing:-1.408000pt;}
.ws3a{word-spacing:-1.349333pt;}
.ws7f{word-spacing:-1.114667pt;}
.ws28{word-spacing:-1.056000pt;}
.ws38{word-spacing:-0.997333pt;}
.ws49{word-spacing:-0.880000pt;}
.ws69{word-spacing:-0.762667pt;}
.ws46{word-spacing:-0.704000pt;}
.ws19{word-spacing:-0.645333pt;}
.ws64{word-spacing:-0.528000pt;}
.ws7b{word-spacing:-0.469333pt;}
.ws68{word-spacing:-0.352000pt;}
.ws7c{word-spacing:-0.293333pt;}
.ws87{word-spacing:-0.234667pt;}
.ws4e{word-spacing:-0.117333pt;}
.ws2{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.058667pt;}
.ws20{word-spacing:0.176000pt;}
.ws1b{word-spacing:0.234667pt;}
.ws10{word-spacing:0.293333pt;}
.ws7{word-spacing:0.352000pt;}
.ws65{word-spacing:0.410667pt;}
.ws5e{word-spacing:0.469333pt;}
.ws4a{word-spacing:0.528000pt;}
.ws92{word-spacing:0.586667pt;}
.ws33{word-spacing:0.645333pt;}
.wsf{word-spacing:0.762667pt;}
.ws1f{word-spacing:0.997333pt;}
.wsd{word-spacing:1.114667pt;}
.ws6{word-spacing:1.290667pt;}
.ws37{word-spacing:1.349333pt;}
.ws51{word-spacing:1.642667pt;}
.ws78{word-spacing:1.818667pt;}
.ws5a{word-spacing:1.877333pt;}
.ws6e{word-spacing:2.170667pt;}
.ws5f{word-spacing:2.405333pt;}
.ws7e{word-spacing:2.522667pt;}
.ws14{word-spacing:2.757333pt;}
.ws34{word-spacing:2.874667pt;}
.ws6c{word-spacing:2.992000pt;}
.ws4b{word-spacing:3.050667pt;}
.ws53{word-spacing:3.461333pt;}
.ws91{word-spacing:3.520000pt;}
.wsa{word-spacing:3.578667pt;}
.ws30{word-spacing:3.754667pt;}
.ws80{word-spacing:3.813333pt;}
.ws45{word-spacing:3.930667pt;}
.ws13{word-spacing:4.048000pt;}
.ws27{word-spacing:4.165333pt;}
.ws89{word-spacing:4.341333pt;}
.ws60{word-spacing:4.400000pt;}
.wsb{word-spacing:4.517333pt;}
.ws1a{word-spacing:4.693333pt;}
.ws15{word-spacing:4.869333pt;}
.ws8f{word-spacing:4.986667pt;}
.ws4c{word-spacing:5.221333pt;}
.ws70{word-spacing:5.338667pt;}
.ws3e{word-spacing:5.397333pt;}
.ws5c{word-spacing:5.456000pt;}
.ws35{word-spacing:5.514667pt;}
.ws40{word-spacing:5.573333pt;}
.ws8d{word-spacing:5.632000pt;}
.ws8{word-spacing:5.690667pt;}
.ws52{word-spacing:5.749333pt;}
.ws72{word-spacing:5.808000pt;}
.ws6b{word-spacing:6.218667pt;}
.ws1e{word-spacing:6.277333pt;}
.ws83{word-spacing:6.336000pt;}
.ws48{word-spacing:6.512000pt;}
.ws88{word-spacing:6.688000pt;}
.ws2c{word-spacing:6.746667pt;}
.ws59{word-spacing:6.864000pt;}
.ws42{word-spacing:7.157333pt;}
.ws57{word-spacing:7.274667pt;}
.ws74{word-spacing:7.333333pt;}
.ws3f{word-spacing:7.450667pt;}
.ws47{word-spacing:7.568000pt;}
.wse{word-spacing:7.685333pt;}
.ws39{word-spacing:7.744000pt;}
.ws5d{word-spacing:7.802667pt;}
.ws21{word-spacing:7.920000pt;}
.ws44{word-spacing:8.154667pt;}
.ws77{word-spacing:8.213333pt;}
.ws4f{word-spacing:8.330667pt;}
.ws36{word-spacing:8.389333pt;}
.ws32{word-spacing:8.624000pt;}
.ws25{word-spacing:8.682667pt;}
.ws85{word-spacing:8.741333pt;}
.ws41{word-spacing:8.800000pt;}
.ws17{word-spacing:8.917333pt;}
.ws67{word-spacing:9.269333pt;}
.ws6a{word-spacing:9.445333pt;}
.ws90{word-spacing:9.504000pt;}
.ws9{word-spacing:9.562667pt;}
.ws23{word-spacing:9.738667pt;}
.ws26{word-spacing:9.856000pt;}
.ws2d{word-spacing:9.973333pt;}
.ws84{word-spacing:10.032000pt;}
.ws22{word-spacing:10.560000pt;}
.ws3c{word-spacing:10.736000pt;}
.ws7d{word-spacing:11.381333pt;}
.ws31{word-spacing:11.498667pt;}
.ws76{word-spacing:11.557333pt;}
.ws5{word-spacing:11.968000pt;}
.ws12{word-spacing:12.026667pt;}
.ws2e{word-spacing:12.613333pt;}
.ws62{word-spacing:12.672000pt;}
.ws16{word-spacing:12.730667pt;}
.ws71{word-spacing:12.789333pt;}
.ws11{word-spacing:13.962667pt;}
.ws24{word-spacing:14.080000pt;}
.ws86{word-spacing:14.608000pt;}
.ws82{word-spacing:15.781333pt;}
.ws75{word-spacing:16.016000pt;}
.ws54{word-spacing:16.485333pt;}
.ws29{word-spacing:16.544000pt;}
.ws5b{word-spacing:16.661333pt;}
.ws6d{word-spacing:18.538667pt;}
.ws61{word-spacing:18.656000pt;}
.ws55{word-spacing:18.714667pt;}
.ws8b{word-spacing:20.650667pt;}
.ws43{word-spacing:21.120000pt;}
.ws2a{word-spacing:23.290667pt;}
.ws2b{word-spacing:25.461333pt;}
.ws8c{word-spacing:26.458667pt;}
.ws8a{word-spacing:26.634667pt;}
.ws8e{word-spacing:27.749333pt;}
.ws63{word-spacing:39.658667pt;}
._a{margin-left:-6.512000pt;}
._1{margin-left:-5.532800pt;}
._0{margin-left:-3.824000pt;}
._6{margin-left:-2.629333pt;}
._b{margin-left:-1.056000pt;}
._10{width:1.167467pt;}
._7{width:2.387733pt;}
._5{width:3.461333pt;}
._11{width:4.554667pt;}
._8{width:5.690667pt;}
._4{width:7.192533pt;}
._e{width:8.177067pt;}
._f{width:9.140267pt;}
._9{width:10.084800pt;}
._d{width:11.586133pt;}
._13{width:12.781333pt;}
._12{width:13.833600pt;}
._3{width:15.306133pt;}
._2{width:18.556267pt;}
._14{width:19.465600pt;}
._c{width:25.348267pt;}
.fs3{font-size:34.202667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:76.645067pt;}
.y34{bottom:80.608267pt;}
.y7e{bottom:93.311733pt;}
.y33{bottom:97.274933pt;}
.y96{bottom:106.198933pt;}
.y7d{bottom:109.978400pt;}
.y32{bottom:113.941600pt;}
.y95{bottom:122.865600pt;}
.y7c{bottom:126.645067pt;}
.y31{bottom:130.608267pt;}
.y94{bottom:139.532267pt;}
.y7b{bottom:143.311733pt;}
.y30{bottom:147.274933pt;}
.y93{bottom:156.198933pt;}
.y7a{bottom:159.978400pt;}
.y2f{bottom:163.941600pt;}
.y92{bottom:172.865600pt;}
.y79{bottom:176.645067pt;}
.y2e{bottom:180.608267pt;}
.y78{bottom:193.311733pt;}
.y2d{bottom:197.275067pt;}
.y77{bottom:209.978400pt;}
.y91{bottom:213.758000pt;}
.y2c{bottom:213.941733pt;}
.y76{bottom:226.645067pt;}
.y90{bottom:230.424667pt;}
.y2b{bottom:230.608400pt;}
.y75{bottom:243.311733pt;}
.y8f{bottom:247.091333pt;}
.y4a{bottom:247.275067pt;}
.y2a{bottom:251.054533pt;}
.y74{bottom:259.978400pt;}
.y8e{bottom:263.758000pt;}
.y49{bottom:263.941733pt;}
.y29{bottom:267.721200pt;}
.y73{bottom:276.645200pt;}
.y8d{bottom:280.424667pt;}
.y28{bottom:284.387867pt;}
.y72{bottom:297.091333pt;}
.y27{bottom:301.054533pt;}
.y71{bottom:313.758000pt;}
.y26{bottom:317.721200pt;}
.y70{bottom:330.424667pt;}
.y25{bottom:334.387867pt;}
.y6f{bottom:347.091333pt;}
.y24{bottom:351.054533pt;}
.y6e{bottom:363.758000pt;}
.y23{bottom:367.721200pt;}
.y6d{bottom:380.424667pt;}
.y22{bottom:384.387867pt;}
.y6c{bottom:397.091333pt;}
.y48{bottom:401.054533pt;}
.y21{bottom:404.834000pt;}
.y6b{bottom:413.758000pt;}
.y47{bottom:417.721200pt;}
.y20{bottom:421.500667pt;}
.y6a{bottom:430.424667pt;}
.y1f{bottom:438.167333pt;}
.y69{bottom:447.091333pt;}
.y1e{bottom:454.834000pt;}
.y68{bottom:463.758000pt;}
.y1d{bottom:471.500667pt;}
.y67{bottom:480.424667pt;}
.y8c{bottom:484.204133pt;}
.y46{bottom:488.167333pt;}
.y1c{bottom:491.946933pt;}
.y66{bottom:497.091333pt;}
.y8b{bottom:500.870800pt;}
.y45{bottom:504.834000pt;}
.y1b{bottom:508.613600pt;}
.y65{bottom:513.758000pt;}
.y8a{bottom:517.537467pt;}
.y44{bottom:521.500667pt;}
.y1a{bottom:525.280267pt;}
.y64{bottom:530.424667pt;}
.y89{bottom:534.204133pt;}
.y43{bottom:538.167333pt;}
.y19{bottom:541.946933pt;}
.y63{bottom:547.091333pt;}
.y88{bottom:550.870800pt;}
.y42{bottom:554.834000pt;}
.y18{bottom:558.613600pt;}
.y62{bottom:563.758000pt;}
.y87{bottom:567.537467pt;}
.y41{bottom:571.500667pt;}
.y17{bottom:575.280267pt;}
.y61{bottom:580.424667pt;}
.y86{bottom:584.204133pt;}
.y40{bottom:588.167333pt;}
.ya0{bottom:589.382933pt;}
.y16{bottom:591.946933pt;}
.y60{bottom:600.870800pt;}
.y3f{bottom:604.834000pt;}
.y15{bottom:608.613600pt;}
.y9f{bottom:609.829067pt;}
.y5f{bottom:617.537467pt;}
.y3e{bottom:621.500667pt;}
.y14{bottom:625.280267pt;}
.y9e{bottom:630.275333pt;}
.y5e{bottom:634.204133pt;}
.y3d{bottom:638.167333pt;}
.y13{bottom:641.946933pt;}
.y9d{bottom:650.721467pt;}
.y5d{bottom:650.870800pt;}
.y3c{bottom:654.834000pt;}
.y12{bottom:658.613600pt;}
.y5c{bottom:667.537467pt;}
.y9c{bottom:671.167600pt;}
.y3b{bottom:671.500667pt;}
.y11{bottom:675.280267pt;}
.y5b{bottom:684.204133pt;}
.y3a{bottom:688.167333pt;}
.y9b{bottom:691.613867pt;}
.y10{bottom:691.946933pt;}
.y5a{bottom:700.870800pt;}
.y39{bottom:704.834000pt;}
.yf{bottom:708.613600pt;}
.y9a{bottom:712.060000pt;}
.y59{bottom:717.537467pt;}
.y38{bottom:721.500667pt;}
.ye{bottom:725.280267pt;}
.y99{bottom:732.506267pt;}
.y58{bottom:734.204133pt;}
.y37{bottom:738.167333pt;}
.yd{bottom:741.946933pt;}
.y57{bottom:750.870800pt;}
.y98{bottom:752.952533pt;}
.y36{bottom:754.834000pt;}
.yc{bottom:758.613600pt;}
.y56{bottom:767.537467pt;}
.y35{bottom:771.500667pt;}
.y97{bottom:773.398667pt;}
.yb{bottom:775.280267pt;}
.y55{bottom:784.204133pt;}
.ya{bottom:791.946933pt;}
.y54{bottom:800.870800pt;}
.y9{bottom:808.613600pt;}
.y85{bottom:817.537467pt;}
.y53{bottom:821.317067pt;}
.y8{bottom:825.280267pt;}
.y84{bottom:834.204133pt;}
.y52{bottom:837.983733pt;}
.y7{bottom:841.946933pt;}
.y83{bottom:850.870800pt;}
.y51{bottom:854.650400pt;}
.y6{bottom:858.613600pt;}
.y82{bottom:867.537467pt;}
.y50{bottom:871.317067pt;}
.y5{bottom:882.158267pt;}
.y81{bottom:884.204133pt;}
.y4f{bottom:887.983733pt;}
.y80{bottom:900.870800pt;}
.y4e{bottom:904.650400pt;}
.y4{bottom:909.621067pt;}
.y4d{bottom:921.317067pt;}
.y3{bottom:924.287733pt;}
.y4c{bottom:937.983733pt;}
.y2{bottom:938.954400pt;}
.y4b{bottom:985.150267pt;}
.y1{bottom:986.095200pt;}
.h4{height:38.828125pt;}
.h6{height:42.710938pt;}
.h7{height:42.739583pt;}
.ha{height:44.436477pt;}
.h3{height:48.151042pt;}
.h8{height:52.450521pt;}
.h9{height:52.966146pt;}
.h2{height:54.359375pt;}
.hb{height:57.781250pt;}
.h5{height:67.411458pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x6{left:94.488267pt;}
.x5{left:342.284533pt;}
.x7{left:423.748000pt;}
.x8{left:442.645733pt;}
.x3{left:452.233600pt;}
.x4{left:487.995333pt;}
.xc{left:490.100800pt;}
.xa{left:501.593067pt;}
.x11{left:505.583867pt;}
.xf{left:507.231067pt;}
.xd{left:511.327333pt;}
.xb{left:549.684133pt;}
.x10{left:578.165333pt;}
.xe{left:673.606000pt;}
.x2{left:689.238800pt;}
.x9{left:735.142533pt;}
}




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