
    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_589f6ada04fce4cccfb391a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943000;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_64143b801f0c34ed8d57811d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933000;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_210539dba580be482cc11b5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_b82656b2c47d1df2932fbfc3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_6e48ab2d4203095e211069ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_6e95ea86831d2e281ba8fa0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.037400px;}
.v6{vertical-align:4.962000px;}
.v5{vertical-align:17.982000px;}
.v4{vertical-align:19.977000px;}
.v1{vertical-align:21.978000px;}
.ls12{letter-spacing:-1.427534px;}
.ls6{letter-spacing:-1.194600px;}
.ls16{letter-spacing:-1.167982px;}
.ls5{letter-spacing:-0.396000px;}
.ls14{letter-spacing:-0.330000px;}
.ls15{letter-spacing:-0.303600px;}
.ls19{letter-spacing:-0.283800px;}
.ls1a{letter-spacing:-0.277200px;}
.ls13{letter-spacing:-0.052800px;}
.ls1f{letter-spacing:-0.048000px;}
.lsa{letter-spacing:-0.046200px;}
.ls1e{letter-spacing:-0.042000px;}
.ls1c{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.033000px;}
.ls1d{letter-spacing:-0.030000px;}
.lsd{letter-spacing:-0.026400px;}
.ls20{letter-spacing:-0.019800px;}
.ls1b{letter-spacing:-0.018000px;}
.ls21{letter-spacing:-0.013200px;}
.lsb{letter-spacing:-0.006600px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003000px;}
.ls18{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.lse{letter-spacing:0.019800px;}
.ls22{letter-spacing:0.026400px;}
.ls10{letter-spacing:0.027000px;}
.lsf{letter-spacing:0.037800px;}
.ls1{letter-spacing:0.039600px;}
.ls11{letter-spacing:0.048600px;}
.ls2{letter-spacing:0.085800px;}
.ls3{letter-spacing:0.108000px;}
.ls17{letter-spacing:1.686000px;}
.ls23{letter-spacing:2.112000px;}
.ls7{letter-spacing:6.190800px;}
.lsc{letter-spacing:13.500000px;}
.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;}
}
.ws1{word-spacing:-16.500000px;}
.wsf{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.500000px;}
.ws2{word-spacing:-9.619500px;}
.ws10{word-spacing:-8.745000px;}
.ws13{word-spacing:-8.191966px;}
.ws3{word-spacing:-7.870500px;}
.ws14{word-spacing:-6.702518px;}
.wsb{word-spacing:-1.949400px;}
.wsd{word-spacing:-1.755600px;}
.wsa{word-spacing:-0.626400px;}
.ws0{word-spacing:-0.168000px;}
.ws5{word-spacing:0.000000px;}
.wse{word-spacing:0.013200px;}
.ws8{word-spacing:0.019800px;}
.ws12{word-spacing:0.999000px;}
.ws15{word-spacing:1.350000px;}
.ws6{word-spacing:2.283600px;}
.ws16{word-spacing:4.044000px;}
.ws7{word-spacing:5.121600px;}
.ws9{word-spacing:6.190800px;}
.ws11{word-spacing:7.080000px;}
.wsc{word-spacing:666.057600px;}
._5{margin-left:-18.268800px;}
._e{margin-left:-16.734000px;}
._10{margin-left:-15.732600px;}
._14{margin-left:-14.698800px;}
._f{margin-left:-13.500600px;}
._12{margin-left:-6.687000px;}
._2{margin-left:-5.299200px;}
._3{margin-left:-3.306000px;}
._6{margin-left:-2.199600px;}
._0{margin-left:-1.044000px;}
._1{width:1.332000px;}
._4{width:2.543400px;}
._9{width:3.973200px;}
._7{width:5.082000px;}
._8{width:6.210600px;}
._b{width:7.444200px;}
._c{width:8.701200px;}
._a{width:9.867000px;}
._d{width:11.085000px;}
._11{width:12.463800px;}
._13{width:218.616000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs6{font-size:42.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:82.207650px;}
.y69{bottom:84.834300px;}
.y1{bottom:85.929300px;}
.y43{bottom:89.329650px;}
.yc5{bottom:102.007650px;}
.y68{bottom:105.529800px;}
.y42{bottom:109.782300px;}
.y1b{bottom:114.598650px;}
.y9f{bottom:118.368300px;}
.y7d{bottom:125.739150px;}
.y67{bottom:125.982300px;}
.y41{bottom:130.233300px;}
.y1a{bottom:130.798650px;}
.y9e{bottom:136.368300px;}
.yc4{bottom:141.307800px;}
.y7c{bottom:141.939150px;}
.y19{bottom:146.998650px;}
.y40{bottom:150.685800px;}
.y66{bottom:152.092800px;}
.y9d{bottom:154.368300px;}
.y7b{bottom:158.139150px;}
.yc3{bottom:159.307800px;}
.y18{bottom:167.694300px;}
.y3f{bottom:171.138300px;}
.y65{bottom:171.892800px;}
.y9c{bottom:172.368300px;}
.y7a{bottom:174.337800px;}
.yc2{bottom:177.307800px;}
.y17{bottom:188.145300px;}
.y9b{bottom:190.368300px;}
.y79{bottom:190.537800px;}
.y3e{bottom:191.589300px;}
.y64{bottom:191.692800px;}
.yc1{bottom:195.307800px;}
.y78{bottom:206.737800px;}
.y9a{bottom:208.368300px;}
.y63{bottom:211.492800px;}
.yc0{bottom:213.307800px;}
.y3d{bottom:216.168300px;}
.y77{bottom:222.937800px;}
.y99{bottom:226.368300px;}
.y62{bottom:231.292800px;}
.ybf{bottom:231.307800px;}
.y3c{bottom:235.668300px;}
.y16{bottom:237.693300px;}
.y76{bottom:243.633300px;}
.y98{bottom:244.368300px;}
.ybe{bottom:249.307800px;}
.y61{bottom:251.092800px;}
.y3b{bottom:255.168300px;}
.y15{bottom:257.493300px;}
.y97{bottom:262.368300px;}
.ybd{bottom:267.307800px;}
.y60{bottom:270.892800px;}
.y3a{bottom:274.668300px;}
.y14{bottom:277.293300px;}
.y96{bottom:280.368300px;}
.y75{bottom:287.268300px;}
.y5f{bottom:290.692800px;}
.y39{bottom:294.168300px;}
.y13{bottom:297.093300px;}
.y95{bottom:298.368300px;}
.ybc{bottom:298.807800px;}
.y74{bottom:307.068300px;}
.y5e{bottom:310.492650px;}
.y38{bottom:313.668300px;}
.y12{bottom:316.893300px;}
.ybb{bottom:318.607800px;}
.y73{bottom:326.868300px;}
.y94{bottom:329.868300px;}
.y5d{bottom:330.292650px;}
.y11{bottom:336.694050px;}
.yba{bottom:338.407800px;}
.y37{bottom:346.668300px;}
.y93{bottom:349.668300px;}
.y5c{bottom:350.092650px;}
.y10{bottom:356.494050px;}
.yb9{bottom:358.207800px;}
.y36{bottom:366.468300px;}
.y5b{bottom:369.892650px;}
.yf{bottom:376.294050px;}
.yb8{bottom:378.007800px;}
.y35{bottom:386.268300px;}
.y92{bottom:388.968300px;}
.y5a{bottom:389.692650px;}
.ye{bottom:396.094050px;}
.yb7{bottom:397.807800px;}
.y34{bottom:406.068300px;}
.y91{bottom:406.968300px;}
.y59{bottom:409.492650px;}
.yd{bottom:415.894050px;}
.yb6{bottom:417.607800px;}
.y90{bottom:424.968300px;}
.y33{bottom:425.868300px;}
.y58{bottom:429.292650px;}
.yc{bottom:435.694050px;}
.yb5{bottom:437.407800px;}
.y8f{bottom:442.968300px;}
.y32{bottom:445.668300px;}
.y57{bottom:449.092650px;}
.yb{bottom:455.494050px;}
.yb4{bottom:457.207800px;}
.y8e{bottom:460.968300px;}
.y31{bottom:465.468300px;}
.y56{bottom:468.892650px;}
.ya{bottom:475.294050px;}
.yb3{bottom:477.007800px;}
.y8d{bottom:478.968300px;}
.y30{bottom:485.268300px;}
.yd7{bottom:488.676000px;}
.y55{bottom:488.692650px;}
.y9{bottom:495.094050px;}
.yb2{bottom:496.807800px;}
.y8c{bottom:496.968300px;}
.y2f{bottom:505.068300px;}
.y54{bottom:508.492650px;}
.y8{bottom:514.894050px;}
.y8b{bottom:514.968300px;}
.yb1{bottom:516.607800px;}
.y2e{bottom:524.868300px;}
.yd6{bottom:528.276000px;}
.y53{bottom:528.292650px;}
.y8a{bottom:532.968300px;}
.y7{bottom:534.694050px;}
.yb0{bottom:536.407800px;}
.y2d{bottom:544.668300px;}
.yd5{bottom:548.076000px;}
.y52{bottom:548.092650px;}
.y89{bottom:550.968300px;}
.y2c{bottom:564.468300px;}
.yd4{bottom:567.876000px;}
.y51{bottom:567.892650px;}
.y88{bottom:568.968300px;}
.yaf{bottom:575.707800px;}
.y6{bottom:578.493300px;}
.y2b{bottom:584.268300px;}
.y87{bottom:586.968300px;}
.yd3{bottom:587.676000px;}
.y50{bottom:587.692650px;}
.yae{bottom:593.707800px;}
.y2a{bottom:604.068300px;}
.y86{bottom:604.968300px;}
.yd2{bottom:607.476000px;}
.y4f{bottom:607.494300px;}
.yad{bottom:611.707800px;}
.y85{bottom:622.968300px;}
.y29{bottom:623.868300px;}
.yd1{bottom:627.276000px;}
.yac{bottom:629.707800px;}
.y84{bottom:640.968300px;}
.y28{bottom:643.668300px;}
.yd0{bottom:647.076000px;}
.y4e{bottom:647.094300px;}
.y5{bottom:652.743300px;}
.y83{bottom:658.968300px;}
.yab{bottom:661.207800px;}
.y27{bottom:663.468150px;}
.y72{bottom:663.468300px;}
.y4{bottom:670.743300px;}
.y82{bottom:676.968300px;}
.yaa{bottom:681.007800px;}
.y26{bottom:683.268150px;}
.y71{bottom:683.268300px;}
.y81{bottom:694.968300px;}
.y25{bottom:703.068150px;}
.y70{bottom:703.068300px;}
.ycf{bottom:706.476000px;}
.y80{bottom:712.968300px;}
.ya9{bottom:720.308250px;}
.y24{bottom:722.868150px;}
.y6f{bottom:722.868300px;}
.y4d{bottom:726.294300px;}
.y7f{bottom:730.968300px;}
.ya8{bottom:738.308250px;}
.y23{bottom:742.668150px;}
.y6e{bottom:742.668300px;}
.y4c{bottom:745.795050px;}
.yce{bottom:746.076000px;}
.ya7{bottom:756.308250px;}
.y22{bottom:762.468150px;}
.y6d{bottom:762.468300px;}
.y4b{bottom:765.295050px;}
.ycd{bottom:765.876000px;}
.ya6{bottom:774.308250px;}
.y3{bottom:774.993300px;}
.y21{bottom:782.268150px;}
.y6c{bottom:782.268300px;}
.y4a{bottom:784.795050px;}
.ycc{bottom:785.676000px;}
.ya5{bottom:792.308250px;}
.y2{bottom:797.793300px;}
.y20{bottom:802.068150px;}
.y6b{bottom:802.068300px;}
.y49{bottom:804.295050px;}
.ycb{bottom:805.476000px;}
.ya4{bottom:810.308250px;}
.y1f{bottom:821.868150px;}
.y48{bottom:823.795050px;}
.yca{bottom:825.276000px;}
.ya3{bottom:828.308250px;}
.y1e{bottom:841.668150px;}
.y47{bottom:843.295050px;}
.yc9{bottom:845.076000px;}
.ya2{bottom:846.308250px;}
.y1d{bottom:861.468150px;}
.y46{bottom:862.793550px;}
.ya1{bottom:864.308250px;}
.yc8{bottom:864.876000px;}
.y1c{bottom:881.268150px;}
.y45{bottom:882.293550px;}
.ya0{bottom:882.308250px;}
.yc7{bottom:884.676000px;}
.y6a{bottom:926.758650px;}
.y44{bottom:927.999150px;}
.y7e{bottom:928.258500px;}
.h10{height:29.399236px;}
.h8{height:29.399836px;}
.h9{height:29.531072px;}
.hd{height:29.531672px;}
.h12{height:37.303711px;}
.h2{height:42.180000px;}
.ha{height:47.381836px;}
.hb{height:47.513672px;}
.h5{height:52.646484px;}
.hf{height:52.792969px;}
.h11{height:53.291016px;}
.he{height:54.328416px;}
.h4{height:56.153528px;}
.h6{height:57.911133px;}
.hc{height:57.911733px;}
.h7{height:58.072266px;}
.h3{height:85.265625px;}
.h0{height:979.179300px;}
.h1{height:979.500000px;}
.w1{width:681.000000px;}
.w0{width:681.026550px;}
.x0{left:0.000000px;}
.x1{left:94.974150px;}
.x8{left:108.472800px;}
.x7{left:128.989950px;}
.x9{left:150.250050px;}
.x5{left:173.654550px;}
.x3{left:196.758450px;}
.xb{left:200.036550px;}
.x2{left:214.276050px;}
.xc{left:274.613550px;}
.xe{left:296.909550px;}
.xd{left:306.544050px;}
.xa{left:333.967050px;}
.x6{left:336.715050px;}
.x4{left:440.704050px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.922133pt;}
.v6{vertical-align:4.410667pt;}
.v5{vertical-align:15.984000pt;}
.v4{vertical-align:17.757333pt;}
.v1{vertical-align:19.536000pt;}
.ls12{letter-spacing:-1.268919pt;}
.ls6{letter-spacing:-1.061867pt;}
.ls16{letter-spacing:-1.038206pt;}
.ls5{letter-spacing:-0.352000pt;}
.ls14{letter-spacing:-0.293333pt;}
.ls15{letter-spacing:-0.269867pt;}
.ls19{letter-spacing:-0.252267pt;}
.ls1a{letter-spacing:-0.246400pt;}
.ls13{letter-spacing:-0.046933pt;}
.ls1f{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:-0.041067pt;}
.ls1e{letter-spacing:-0.037333pt;}
.ls1c{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.029333pt;}
.ls1d{letter-spacing:-0.026667pt;}
.lsd{letter-spacing:-0.023467pt;}
.ls20{letter-spacing:-0.017600pt;}
.ls1b{letter-spacing:-0.016000pt;}
.ls21{letter-spacing:-0.011733pt;}
.lsb{letter-spacing:-0.005867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002667pt;}
.ls18{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.lse{letter-spacing:0.017600pt;}
.ls22{letter-spacing:0.023467pt;}
.ls10{letter-spacing:0.024000pt;}
.lsf{letter-spacing:0.033600pt;}
.ls1{letter-spacing:0.035200pt;}
.ls11{letter-spacing:0.043200pt;}
.ls2{letter-spacing:0.076267pt;}
.ls3{letter-spacing:0.096000pt;}
.ls17{letter-spacing:1.498667pt;}
.ls23{letter-spacing:1.877333pt;}
.ls7{letter-spacing:5.502933pt;}
.lsc{letter-spacing:12.000000pt;}
.ws1{word-spacing:-14.666667pt;}
.wsf{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws2{word-spacing:-8.550667pt;}
.ws10{word-spacing:-7.773333pt;}
.ws13{word-spacing:-7.281748pt;}
.ws3{word-spacing:-6.996000pt;}
.ws14{word-spacing:-5.957794pt;}
.wsb{word-spacing:-1.732800pt;}
.wsd{word-spacing:-1.560533pt;}
.wsa{word-spacing:-0.556800pt;}
.ws0{word-spacing:-0.149333pt;}
.ws5{word-spacing:0.000000pt;}
.wse{word-spacing:0.011733pt;}
.ws8{word-spacing:0.017600pt;}
.ws12{word-spacing:0.888000pt;}
.ws15{word-spacing:1.200000pt;}
.ws6{word-spacing:2.029867pt;}
.ws16{word-spacing:3.594667pt;}
.ws7{word-spacing:4.552533pt;}
.ws9{word-spacing:5.502933pt;}
.ws11{word-spacing:6.293333pt;}
.wsc{word-spacing:592.051200pt;}
._5{margin-left:-16.238933pt;}
._e{margin-left:-14.874667pt;}
._10{margin-left:-13.984533pt;}
._14{margin-left:-13.065600pt;}
._f{margin-left:-12.000533pt;}
._12{margin-left:-5.944000pt;}
._2{margin-left:-4.710400pt;}
._3{margin-left:-2.938667pt;}
._6{margin-left:-1.955200pt;}
._0{margin-left:-0.928000pt;}
._1{width:1.184000pt;}
._4{width:2.260800pt;}
._9{width:3.531733pt;}
._7{width:4.517333pt;}
._8{width:5.520533pt;}
._b{width:6.617067pt;}
._c{width:7.734400pt;}
._a{width:8.770667pt;}
._d{width:9.853333pt;}
._11{width:11.078933pt;}
._13{width:194.325333pt;}
.fs4{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:73.073467pt;}
.y69{bottom:75.408267pt;}
.y1{bottom:76.381600pt;}
.y43{bottom:79.404133pt;}
.yc5{bottom:90.673467pt;}
.y68{bottom:93.804267pt;}
.y42{bottom:97.584267pt;}
.y1b{bottom:101.865467pt;}
.y9f{bottom:105.216267pt;}
.y7d{bottom:111.768133pt;}
.y67{bottom:111.984267pt;}
.y41{bottom:115.762933pt;}
.y1a{bottom:116.265467pt;}
.y9e{bottom:121.216267pt;}
.yc4{bottom:125.606933pt;}
.y7c{bottom:126.168133pt;}
.y19{bottom:130.665467pt;}
.y40{bottom:133.942933pt;}
.y66{bottom:135.193600pt;}
.y9d{bottom:137.216267pt;}
.y7b{bottom:140.568133pt;}
.yc3{bottom:141.606933pt;}
.y18{bottom:149.061600pt;}
.y3f{bottom:152.122933pt;}
.y65{bottom:152.793600pt;}
.y9c{bottom:153.216267pt;}
.y7a{bottom:154.966933pt;}
.yc2{bottom:157.606933pt;}
.y17{bottom:167.240267pt;}
.y9b{bottom:169.216267pt;}
.y79{bottom:169.366933pt;}
.y3e{bottom:170.301600pt;}
.y64{bottom:170.393600pt;}
.yc1{bottom:173.606933pt;}
.y78{bottom:183.766933pt;}
.y9a{bottom:185.216267pt;}
.y63{bottom:187.993600pt;}
.yc0{bottom:189.606933pt;}
.y3d{bottom:192.149600pt;}
.y77{bottom:198.166933pt;}
.y99{bottom:201.216267pt;}
.y62{bottom:205.593600pt;}
.ybf{bottom:205.606933pt;}
.y3c{bottom:209.482933pt;}
.y16{bottom:211.282933pt;}
.y76{bottom:216.562933pt;}
.y98{bottom:217.216267pt;}
.ybe{bottom:221.606933pt;}
.y61{bottom:223.193600pt;}
.y3b{bottom:226.816267pt;}
.y15{bottom:228.882933pt;}
.y97{bottom:233.216267pt;}
.ybd{bottom:237.606933pt;}
.y60{bottom:240.793600pt;}
.y3a{bottom:244.149600pt;}
.y14{bottom:246.482933pt;}
.y96{bottom:249.216267pt;}
.y75{bottom:255.349600pt;}
.y5f{bottom:258.393600pt;}
.y39{bottom:261.482933pt;}
.y13{bottom:264.082933pt;}
.y95{bottom:265.216267pt;}
.ybc{bottom:265.606933pt;}
.y74{bottom:272.949600pt;}
.y5e{bottom:275.993467pt;}
.y38{bottom:278.816267pt;}
.y12{bottom:281.682933pt;}
.ybb{bottom:283.206933pt;}
.y73{bottom:290.549600pt;}
.y94{bottom:293.216267pt;}
.y5d{bottom:293.593467pt;}
.y11{bottom:299.283600pt;}
.yba{bottom:300.806933pt;}
.y37{bottom:308.149600pt;}
.y93{bottom:310.816267pt;}
.y5c{bottom:311.193467pt;}
.y10{bottom:316.883600pt;}
.yb9{bottom:318.406933pt;}
.y36{bottom:325.749600pt;}
.y5b{bottom:328.793467pt;}
.yf{bottom:334.483600pt;}
.yb8{bottom:336.006933pt;}
.y35{bottom:343.349600pt;}
.y92{bottom:345.749600pt;}
.y5a{bottom:346.393467pt;}
.ye{bottom:352.083600pt;}
.yb7{bottom:353.606933pt;}
.y34{bottom:360.949600pt;}
.y91{bottom:361.749600pt;}
.y59{bottom:363.993467pt;}
.yd{bottom:369.683600pt;}
.yb6{bottom:371.206933pt;}
.y90{bottom:377.749600pt;}
.y33{bottom:378.549600pt;}
.y58{bottom:381.593467pt;}
.yc{bottom:387.283600pt;}
.yb5{bottom:388.806933pt;}
.y8f{bottom:393.749600pt;}
.y32{bottom:396.149600pt;}
.y57{bottom:399.193467pt;}
.yb{bottom:404.883600pt;}
.yb4{bottom:406.406933pt;}
.y8e{bottom:409.749600pt;}
.y31{bottom:413.749600pt;}
.y56{bottom:416.793467pt;}
.ya{bottom:422.483600pt;}
.yb3{bottom:424.006933pt;}
.y8d{bottom:425.749600pt;}
.y30{bottom:431.349600pt;}
.yd7{bottom:434.378667pt;}
.y55{bottom:434.393467pt;}
.y9{bottom:440.083600pt;}
.yb2{bottom:441.606933pt;}
.y8c{bottom:441.749600pt;}
.y2f{bottom:448.949600pt;}
.y54{bottom:451.993467pt;}
.y8{bottom:457.683600pt;}
.y8b{bottom:457.749600pt;}
.yb1{bottom:459.206933pt;}
.y2e{bottom:466.549600pt;}
.yd6{bottom:469.578667pt;}
.y53{bottom:469.593467pt;}
.y8a{bottom:473.749600pt;}
.y7{bottom:475.283600pt;}
.yb0{bottom:476.806933pt;}
.y2d{bottom:484.149600pt;}
.yd5{bottom:487.178667pt;}
.y52{bottom:487.193467pt;}
.y89{bottom:489.749600pt;}
.y2c{bottom:501.749600pt;}
.yd4{bottom:504.778667pt;}
.y51{bottom:504.793467pt;}
.y88{bottom:505.749600pt;}
.yaf{bottom:511.740267pt;}
.y6{bottom:514.216267pt;}
.y2b{bottom:519.349600pt;}
.y87{bottom:521.749600pt;}
.yd3{bottom:522.378667pt;}
.y50{bottom:522.393467pt;}
.yae{bottom:527.740267pt;}
.y2a{bottom:536.949600pt;}
.y86{bottom:537.749600pt;}
.yd2{bottom:539.978667pt;}
.y4f{bottom:539.994933pt;}
.yad{bottom:543.740267pt;}
.y85{bottom:553.749600pt;}
.y29{bottom:554.549600pt;}
.yd1{bottom:557.578667pt;}
.yac{bottom:559.740267pt;}
.y84{bottom:569.749600pt;}
.y28{bottom:572.149600pt;}
.yd0{bottom:575.178667pt;}
.y4e{bottom:575.194933pt;}
.y5{bottom:580.216267pt;}
.y83{bottom:585.749600pt;}
.yab{bottom:587.740267pt;}
.y27{bottom:589.749467pt;}
.y72{bottom:589.749600pt;}
.y4{bottom:596.216267pt;}
.y82{bottom:601.749600pt;}
.yaa{bottom:605.340267pt;}
.y26{bottom:607.349467pt;}
.y71{bottom:607.349600pt;}
.y81{bottom:617.749600pt;}
.y25{bottom:624.949467pt;}
.y70{bottom:624.949600pt;}
.ycf{bottom:627.978667pt;}
.y80{bottom:633.749600pt;}
.ya9{bottom:640.274000pt;}
.y24{bottom:642.549467pt;}
.y6f{bottom:642.549600pt;}
.y4d{bottom:645.594933pt;}
.y7f{bottom:649.749600pt;}
.ya8{bottom:656.274000pt;}
.y23{bottom:660.149467pt;}
.y6e{bottom:660.149600pt;}
.y4c{bottom:662.928933pt;}
.yce{bottom:663.178667pt;}
.ya7{bottom:672.274000pt;}
.y22{bottom:677.749467pt;}
.y6d{bottom:677.749600pt;}
.y4b{bottom:680.262267pt;}
.ycd{bottom:680.778667pt;}
.ya6{bottom:688.274000pt;}
.y3{bottom:688.882933pt;}
.y21{bottom:695.349467pt;}
.y6c{bottom:695.349600pt;}
.y4a{bottom:697.595600pt;}
.ycc{bottom:698.378667pt;}
.ya5{bottom:704.274000pt;}
.y2{bottom:709.149600pt;}
.y20{bottom:712.949467pt;}
.y6b{bottom:712.949600pt;}
.y49{bottom:714.928933pt;}
.ycb{bottom:715.978667pt;}
.ya4{bottom:720.274000pt;}
.y1f{bottom:730.549467pt;}
.y48{bottom:732.262267pt;}
.yca{bottom:733.578667pt;}
.ya3{bottom:736.274000pt;}
.y1e{bottom:748.149467pt;}
.y47{bottom:749.595600pt;}
.yc9{bottom:751.178667pt;}
.ya2{bottom:752.274000pt;}
.y1d{bottom:765.749467pt;}
.y46{bottom:766.927600pt;}
.ya1{bottom:768.274000pt;}
.yc8{bottom:768.778667pt;}
.y1c{bottom:783.349467pt;}
.y45{bottom:784.260933pt;}
.ya0{bottom:784.274000pt;}
.yc7{bottom:786.378667pt;}
.y6a{bottom:823.785467pt;}
.y44{bottom:824.888133pt;}
.y7e{bottom:825.118667pt;}
.h10{height:26.132654pt;}
.h8{height:26.133188pt;}
.h9{height:26.249842pt;}
.hd{height:26.250375pt;}
.h12{height:33.158854pt;}
.h2{height:37.493333pt;}
.ha{height:42.117188pt;}
.hb{height:42.234375pt;}
.h5{height:46.796875pt;}
.hf{height:46.927083pt;}
.h11{height:47.369792pt;}
.he{height:48.291925pt;}
.h4{height:49.914247pt;}
.h6{height:51.476562pt;}
.hc{height:51.477096pt;}
.h7{height:51.619792pt;}
.h3{height:75.791667pt;}
.h0{height:870.381600pt;}
.h1{height:870.666667pt;}
.w1{width:605.333333pt;}
.w0{width:605.356933pt;}
.x0{left:0.000000pt;}
.x1{left:84.421467pt;}
.x8{left:96.420267pt;}
.x7{left:114.657733pt;}
.x9{left:133.555600pt;}
.x5{left:154.359600pt;}
.x3{left:174.896400pt;}
.xb{left:177.810267pt;}
.x2{left:190.467600pt;}
.xc{left:244.100933pt;}
.xe{left:263.919600pt;}
.xd{left:272.483600pt;}
.xa{left:296.859600pt;}
.x6{left:299.302267pt;}
.x4{left:391.736933pt;}
}




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