
    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_84f4ed58ec5693c1e5823c85.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_a966e4e0de3ba9fa9e5bd6e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_8b84b7ca48ec11ad552885a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.383000;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_52e6cd453e493392b03a1ca9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.908000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:35.148288px;}
.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;}
}
.ws33{word-spacing:-4.339738px;}
.ws37{word-spacing:-4.052813px;}
.ws45{word-spacing:-3.945216px;}
.ws58{word-spacing:-3.873485px;}
.ws34{word-spacing:-3.801754px;}
.ws38{word-spacing:-3.514829px;}
.ws11{word-spacing:-3.371366px;}
.ws5f{word-spacing:-2.367130px;}
.ws6b{word-spacing:-2.008474px;}
.ws31{word-spacing:-1.721549px;}
.ws20{word-spacing:-1.147699px;}
.ws1d{word-spacing:-0.789043px;}
.ws44{word-spacing:-0.645581px;}
.ws1e{word-spacing:-0.502118px;}
.ws48{word-spacing:-0.430387px;}
.ws1f{word-spacing:-0.071731px;}
.ws18{word-spacing:0.000000px;}
.ws8{word-spacing:0.215194px;}
.ws5e{word-spacing:0.286925px;}
.wsc{word-spacing:0.358656px;}
.wsb{word-spacing:0.430387px;}
.ws19{word-spacing:0.573850px;}
.ws47{word-spacing:0.717312px;}
.ws28{word-spacing:0.789043px;}
.ws14{word-spacing:1.219430px;}
.ws1b{word-spacing:1.578086px;}
.ws54{word-spacing:1.649818px;}
.ws3a{word-spacing:1.793280px;}
.ws13{word-spacing:1.865011px;}
.ws2f{word-spacing:1.936742px;}
.ws68{word-spacing:2.008474px;}
.ws39{word-spacing:2.044339px;}
.ws4b{word-spacing:2.080205px;}
.ws27{word-spacing:2.510592px;}
.ws2c{word-spacing:2.797517px;}
.ws53{word-spacing:2.869248px;}
.ws42{word-spacing:3.012710px;}
.ws5c{word-spacing:3.227904px;}
.ws3f{word-spacing:3.443098px;}
.ws2b{word-spacing:3.730022px;}
.ws4e{word-spacing:3.801754px;}
.wsd{word-spacing:3.873485px;}
.ws3c{word-spacing:3.945216px;}
.ws51{word-spacing:4.016947px;}
.wse{word-spacing:4.088678px;}
.ws49{word-spacing:4.160410px;}
.ws67{word-spacing:4.303872px;}
.ws30{word-spacing:4.375603px;}
.ws4a{word-spacing:4.447334px;}
.ws29{word-spacing:4.483200px;}
.ws10{word-spacing:4.519066px;}
.ws16{word-spacing:4.590797px;}
.ws1{word-spacing:4.648169px;}
.ws5d{word-spacing:4.805990px;}
.ws6d{word-spacing:5.092915px;}
.ws4d{word-spacing:5.236378px;}
.ws6c{word-spacing:5.379825px;}
.ws43{word-spacing:5.451571px;}
.ws2{word-spacing:5.523302px;}
.ws62{word-spacing:5.595034px;}
.ws70{word-spacing:5.666765px;}
.ws66{word-spacing:5.881958px;}
.ws3b{word-spacing:5.953690px;}
.ws46{word-spacing:6.025421px;}
.ws71{word-spacing:6.097152px;}
.ws9{word-spacing:6.168883px;}
.ws61{word-spacing:6.527539px;}
.ws6{word-spacing:6.742733px;}
.ws1a{word-spacing:6.886195px;}
.ws2d{word-spacing:6.957926px;}
.ws63{word-spacing:7.173120px;}
.ws5{word-spacing:7.746970px;}
.ws0{word-spacing:7.748437px;}
.ws12{word-spacing:8.033894px;}
.ws5a{word-spacing:8.105626px;}
.wsa{word-spacing:8.392550px;}
.ws65{word-spacing:8.536013px;}
.ws2e{word-spacing:8.679475px;}
.ws55{word-spacing:8.822938px;}
.ws6f{word-spacing:8.894669px;}
.ws56{word-spacing:9.038131px;}
.ws57{word-spacing:9.181594px;}
.ws73{word-spacing:9.253325px;}
.ws1c{word-spacing:9.325056px;}
.ws25{word-spacing:9.540250px;}
.ws21{word-spacing:9.611981px;}
.ws3d{word-spacing:9.898906px;}
.ws36{word-spacing:9.970637px;}
.ws4c{word-spacing:10.185830px;}
.ws41{word-spacing:10.544486px;}
.ws6e{word-spacing:10.616218px;}
.ws3e{word-spacing:10.687949px;}
.ws7{word-spacing:10.903142px;}
.ws69{word-spacing:10.974874px;}
.ws2a{word-spacing:11.190067px;}
.ws35{word-spacing:11.441126px;}
.ws40{word-spacing:11.476992px;}
.ws26{word-spacing:11.620454px;}
.ws6a{word-spacing:12.050842px;}
.ws59{word-spacing:12.122573px;}
.ws74{word-spacing:12.768154px;}
.ws4{word-spacing:12.839885px;}
.ws23{word-spacing:13.126810px;}
.ws52{word-spacing:13.198541px;}
.ws64{word-spacing:13.270272px;}
.ws5b{word-spacing:13.700659px;}
.ws17{word-spacing:13.915853px;}
.ws50{word-spacing:14.131046px;}
.ws24{word-spacing:14.202778px;}
.ws60{word-spacing:14.346240px;}
.ws3{word-spacing:14.848358px;}
.wsf{word-spacing:14.920090px;}
.ws32{word-spacing:15.637402px;}
.ws22{word-spacing:17.896934px;}
.ws4f{word-spacing:18.147994px;}
.ws15{word-spacing:21.476261px;}
.ws72{word-spacing:23.384371px;}
.ws75{word-spacing:25.034189px;}
._22{margin-left:-6.570578px;}
._d{margin-left:-5.451577px;}
._0{margin-left:-3.843225px;}
._1{margin-left:-2.324084px;}
._8{margin-left:-1.050397px;}
._1c{width:1.262462px;}
._2{width:2.410162px;}
._12{width:3.945216px;}
._1d{width:5.107261px;}
._17{width:15.909967px;}
._b{width:17.947140px;}
._16{width:19.356199px;}
._f{width:21.117659px;}
._c{width:22.609655px;}
._18{width:24.618128px;}
._24{width:25.894963px;}
._10{width:27.487396px;}
._5{width:28.577704px;}
._9{width:29.969296px;}
._11{width:31.102636px;}
._a{width:32.824198px;}
._1f{width:34.000589px;}
._13{width:35.937337px;}
._3{width:37.013299px;}
._19{width:38.333147px;}
._6{width:39.724739px;}
._20{width:41.101978px;}
._1e{width:43.928180px;}
._7{width:45.204996px;}
._23{width:46.496164px;}
._14{width:48.059904px;}
._1b{width:50.455720px;}
._1a{width:52.378103px;}
._15{width:53.784041px;}
._21{width:59.881193px;}
._e{width:61.760557px;}
._4{width:64.830646px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:63.168000px;}
.y1d{bottom:108.000000px;}
.y9d{bottom:108.568500px;}
.yb0{bottom:111.487500px;}
.yc2{bottom:125.646000px;}
.y1c{bottom:129.669000px;}
.y9c{bottom:130.236000px;}
.yaf{bottom:133.155000px;}
.y7c{bottom:143.238000px;}
.yc1{bottom:147.315000px;}
.y40{bottom:151.338000px;}
.y9b{bottom:151.905000px;}
.y5f{bottom:154.252500px;}
.y7b{bottom:164.907000px;}
.y9a{bottom:173.574000px;}
.y1b{bottom:178.062000px;}
.yc0{bottom:182.361000px;}
.y7a{bottom:186.576000px;}
.y3f{bottom:190.231500px;}
.y99{bottom:195.243000px;}
.y5e{bottom:196.470000px;}
.ybf{bottom:204.030000px;}
.y79{bottom:208.243500px;}
.y3e{bottom:211.899000px;}
.y98{bottom:225.877500px;}
.y78{bottom:229.912500px;}
.y3d{bottom:233.568000px;}
.ybe{bottom:239.076000px;}
.y1a{bottom:239.895000px;}
.y97{bottom:247.546500px;}
.y5d{bottom:251.706000px;}
.y3c{bottom:255.237000px;}
.y19{bottom:261.564000px;}
.y96{bottom:269.215500px;}
.y77{bottom:272.130000px;}
.y5c{bottom:273.375000px;}
.y3b{bottom:276.906000px;}
.y18{bottom:283.233000px;}
.ya7{bottom:283.465500px;}
.ybd{bottom:287.469000px;}
.y95{bottom:290.884500px;}
.y5b{bottom:295.044000px;}
.y17{bottom:304.900500px;}
.ya6{bottom:305.134500px;}
.y94{bottom:312.553500px;}
.y3a{bottom:315.799500px;}
.y5a{bottom:325.678500px;}
.y16{bottom:326.569500px;}
.y76{bottom:327.858000px;}
.y93{bottom:334.221000px;}
.y39{bottom:337.468500px;}
.ybc{bottom:341.094000px;}
.y59{bottom:347.347500px;}
.y15{bottom:348.238500px;}
.y75{bottom:349.527000px;}
.y92{bottom:364.857000px;}
.y14{bottom:369.907500px;}
.y74{bottom:371.196000px;}
.y38{bottom:379.684500px;}
.y91{bottom:386.526000px;}
.y13{bottom:391.576500px;}
.y58{bottom:393.601500px;}
.y73{bottom:401.830500px;}
.ybb{bottom:403.173000px;}
.y90{bottom:408.193500px;}
.ya9{bottom:409.869000px;}
.y57{bottom:415.269000px;}
.y72{bottom:423.499500px;}
.yba{bottom:424.842000px;}
.y8f{bottom:429.862500px;}
.ya8{bottom:431.536500px;}
.y37{bottom:433.971000px;}
.y56{bottom:436.938000px;}
.y12{bottom:439.969500px;}
.y71{bottom:445.168500px;}
.yb9{bottom:446.511000px;}
.y8e{bottom:451.531500px;}
.y36{bottom:455.640000px;}
.y55{bottom:458.607000px;}
.yac{bottom:460.773000px;}
.y70{bottom:466.837500px;}
.yb8{bottom:468.180000px;}
.y8d{bottom:473.200500px;}
.y35{bottom:477.307500px;}
.y54{bottom:480.276000px;}
.yab{bottom:482.442000px;}
.y6f{bottom:488.505000px;}
.yb7{bottom:489.849000px;}
.y34{bottom:498.976500px;}
.y11{bottom:501.802500px;}
.y53{bottom:501.945000px;}
.yaa{bottom:504.111000px;}
.y6e{bottom:510.174000px;}
.y33{bottom:520.645500px;}
.y8c{bottom:521.593500px;}
.y10{bottom:523.471500px;}
.y52{bottom:523.612500px;}
.yb6{bottom:538.242000px;}
.y32{bottom:542.314500px;}
.yf{bottom:545.140500px;}
.y51{bottom:545.281500px;}
.y6d{bottom:552.391500px;}
.y31{bottom:563.983500px;}
.ye{bottom:566.808000px;}
.yae{bottom:577.716000px;}
.y8b{bottom:584.482500px;}
.yd{bottom:588.477000px;}
.y50{bottom:591.535500px;}
.yad{bottom:599.385000px;}
.yb5{bottom:600.322500px;}
.y8a{bottom:606.151500px;}
.y30{bottom:606.199500px;}
.y6c{bottom:608.119500px;}
.yc{bottom:610.146000px;}
.y4f{bottom:613.204500px;}
.yb4{bottom:621.990000px;}
.y89{bottom:627.820500px;}
.y6b{bottom:629.788500px;}
.yb{bottom:631.815000px;}
.y88{bottom:649.489500px;}
.y6a{bottom:651.457500px;}
.ya{bottom:653.484000px;}
.y4e{bottom:655.420500px;}
.y2f{bottom:657.657000px;}
.yb3{bottom:670.384500px;}
.y87{bottom:671.158500px;}
.y9{bottom:675.151500px;}
.y69{bottom:682.092000px;}
.y86{bottom:692.827500px;}
.y8{bottom:696.820500px;}
.y68{bottom:703.761000px;}
.y4d{bottom:710.656500px;}
.y7{bottom:718.489500px;}
.y2e{bottom:719.103000px;}
.y67{bottom:725.430000px;}
.yb2{bottom:727.525500px;}
.y4c{bottom:732.325500px;}
.y85{bottom:735.043500px;}
.y6{bottom:740.158500px;}
.y2d{bottom:740.772000px;}
.y66{bottom:747.099000px;}
.yb1{bottom:749.194500px;}
.y4b{bottom:753.994500px;}
.y2c{bottom:762.441000px;}
.y65{bottom:768.766500px;}
.y2b{bottom:784.110000px;}
.y5{bottom:788.551500px;}
.y84{bottom:790.771500px;}
.y4a{bottom:800.247000px;}
.y2a{bottom:805.779000px;}
.y64{bottom:810.984000px;}
.y83{bottom:812.440500px;}
.y49{bottom:821.916000px;}
.y29{bottom:827.446500px;}
.y82{bottom:834.109500px;}
.ya5{bottom:841.545000px;}
.y48{bottom:843.585000px;}
.y28{bottom:849.115500px;}
.y81{bottom:855.778500px;}
.y63{bottom:862.441500px;}
.y4{bottom:863.127000px;}
.y47{bottom:865.254000px;}
.y80{bottom:877.447500px;}
.y27{bottom:879.751500px;}
.y46{bottom:886.923000px;}
.y3{bottom:890.025000px;}
.y7f{bottom:899.116500px;}
.y26{bottom:901.419000px;}
.ya4{bottom:904.434000px;}
.y45{bottom:908.592000px;}
.y7e{bottom:920.784000px;}
.y25{bottom:923.088000px;}
.y62{bottom:925.330500px;}
.ya3{bottom:926.101500px;}
.y24{bottom:944.757000px;}
.y61{bottom:946.998000px;}
.ya2{bottom:947.770500px;}
.y2{bottom:952.230000px;}
.y44{bottom:954.844500px;}
.y7d{bottom:963.001500px;}
.y23{bottom:966.426000px;}
.y60{bottom:968.667000px;}
.ya1{bottom:969.439500px;}
.y43{bottom:976.513500px;}
.y1{bottom:989.589000px;}
.ya0{bottom:991.108500px;}
.y22{bottom:997.060500px;}
.y42{bottom:998.182500px;}
.y9f{bottom:1012.777500px;}
.y21{bottom:1018.729500px;}
.y41{bottom:1019.850000px;}
.y20{bottom:1040.398500px;}
.y9e{bottom:1061.170500px;}
.y1f{bottom:1062.067500px;}
.h3{height:53.798400px;}
.h2{height:64.557900px;}
.h1{height:92.981250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:108.000000px;}
.x1{left:109.873500px;}
.x9{left:129.460500px;}
.x7{left:134.340000px;}
.x8{left:151.897500px;}
.x4{left:235.497000px;}
.x2{left:295.627500px;}
.x3{left:394.710000px;}
.xa{left:450.220500px;}
.x6{left:454.609500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:31.242923pt;}
.ws33{word-spacing:-3.857545pt;}
.ws37{word-spacing:-3.602500pt;}
.ws45{word-spacing:-3.506859pt;}
.ws58{word-spacing:-3.443098pt;}
.ws34{word-spacing:-3.379337pt;}
.ws38{word-spacing:-3.124292pt;}
.ws11{word-spacing:-2.996770pt;}
.ws5f{word-spacing:-2.104115pt;}
.ws6b{word-spacing:-1.785310pt;}
.ws31{word-spacing:-1.530266pt;}
.ws20{word-spacing:-1.020177pt;}
.ws1d{word-spacing:-0.701372pt;}
.ws44{word-spacing:-0.573850pt;}
.ws1e{word-spacing:-0.446327pt;}
.ws48{word-spacing:-0.382566pt;}
.ws1f{word-spacing:-0.063761pt;}
.ws18{word-spacing:0.000000pt;}
.ws8{word-spacing:0.191283pt;}
.ws5e{word-spacing:0.255044pt;}
.wsc{word-spacing:0.318805pt;}
.wsb{word-spacing:0.382566pt;}
.ws19{word-spacing:0.510089pt;}
.ws47{word-spacing:0.637611pt;}
.ws28{word-spacing:0.701372pt;}
.ws14{word-spacing:1.083938pt;}
.ws1b{word-spacing:1.402743pt;}
.ws54{word-spacing:1.466505pt;}
.ws3a{word-spacing:1.594027pt;}
.ws13{word-spacing:1.657788pt;}
.ws2f{word-spacing:1.721549pt;}
.ws68{word-spacing:1.785310pt;}
.ws39{word-spacing:1.817190pt;}
.ws4b{word-spacing:1.849071pt;}
.ws27{word-spacing:2.231637pt;}
.ws2c{word-spacing:2.486682pt;}
.ws53{word-spacing:2.550443pt;}
.ws42{word-spacing:2.677965pt;}
.ws5c{word-spacing:2.869248pt;}
.ws3f{word-spacing:3.060531pt;}
.ws2b{word-spacing:3.315575pt;}
.ws4e{word-spacing:3.379337pt;}
.wsd{word-spacing:3.443098pt;}
.ws3c{word-spacing:3.506859pt;}
.ws51{word-spacing:3.570620pt;}
.wse{word-spacing:3.634381pt;}
.ws49{word-spacing:3.698142pt;}
.ws67{word-spacing:3.825664pt;}
.ws30{word-spacing:3.889425pt;}
.ws4a{word-spacing:3.953186pt;}
.ws29{word-spacing:3.985067pt;}
.ws10{word-spacing:4.016947pt;}
.ws16{word-spacing:4.080708pt;}
.ws1{word-spacing:4.131706pt;}
.ws5d{word-spacing:4.271991pt;}
.ws6d{word-spacing:4.527036pt;}
.ws4d{word-spacing:4.654558pt;}
.ws6c{word-spacing:4.782067pt;}
.ws43{word-spacing:4.845841pt;}
.ws2{word-spacing:4.909602pt;}
.ws62{word-spacing:4.973363pt;}
.ws70{word-spacing:5.037124pt;}
.ws66{word-spacing:5.228407pt;}
.ws3b{word-spacing:5.292169pt;}
.ws46{word-spacing:5.355930pt;}
.ws71{word-spacing:5.419691pt;}
.ws9{word-spacing:5.483452pt;}
.ws61{word-spacing:5.802257pt;}
.ws6{word-spacing:5.993540pt;}
.ws1a{word-spacing:6.121062pt;}
.ws2d{word-spacing:6.184823pt;}
.ws63{word-spacing:6.376107pt;}
.ws5{word-spacing:6.886195pt;}
.ws0{word-spacing:6.887500pt;}
.ws12{word-spacing:7.141239pt;}
.ws5a{word-spacing:7.205001pt;}
.wsa{word-spacing:7.460045pt;}
.ws65{word-spacing:7.587567pt;}
.ws2e{word-spacing:7.715089pt;}
.ws55{word-spacing:7.842611pt;}
.ws6f{word-spacing:7.906372pt;}
.ws56{word-spacing:8.033894pt;}
.ws57{word-spacing:8.161417pt;}
.ws73{word-spacing:8.225178pt;}
.ws1c{word-spacing:8.288939pt;}
.ws25{word-spacing:8.480222pt;}
.ws21{word-spacing:8.543983pt;}
.ws3d{word-spacing:8.799027pt;}
.ws36{word-spacing:8.862788pt;}
.ws4c{word-spacing:9.054071pt;}
.ws41{word-spacing:9.372877pt;}
.ws6e{word-spacing:9.436638pt;}
.ws3e{word-spacing:9.500399pt;}
.ws7{word-spacing:9.691682pt;}
.ws69{word-spacing:9.755443pt;}
.ws2a{word-spacing:9.946726pt;}
.ws35{word-spacing:10.169890pt;}
.ws40{word-spacing:10.201771pt;}
.ws26{word-spacing:10.329293pt;}
.ws6a{word-spacing:10.711859pt;}
.ws59{word-spacing:10.775620pt;}
.ws74{word-spacing:11.349470pt;}
.ws4{word-spacing:11.413231pt;}
.ws23{word-spacing:11.668275pt;}
.ws52{word-spacing:11.732036pt;}
.ws64{word-spacing:11.795797pt;}
.ws5b{word-spacing:12.178364pt;}
.ws17{word-spacing:12.369647pt;}
.ws50{word-spacing:12.560930pt;}
.ws24{word-spacing:12.624691pt;}
.ws60{word-spacing:12.752213pt;}
.ws3{word-spacing:13.198541pt;}
.wsf{word-spacing:13.262302pt;}
.ws32{word-spacing:13.899913pt;}
.ws22{word-spacing:15.908386pt;}
.ws4f{word-spacing:16.131550pt;}
.ws15{word-spacing:19.090010pt;}
.ws72{word-spacing:20.786108pt;}
.ws75{word-spacing:22.252612pt;}
._22{margin-left:-5.840514pt;}
._d{margin-left:-4.845846pt;}
._0{margin-left:-3.416200pt;}
._1{margin-left:-2.065853pt;}
._8{margin-left:-0.933686pt;}
._1c{width:1.122189pt;}
._2{width:2.142366pt;}
._12{width:3.506859pt;}
._1d{width:4.539788pt;}
._17{width:14.142193pt;}
._b{width:15.953013pt;}
._16{width:17.205510pt;}
._f{width:18.771252pt;}
._c{width:20.097471pt;}
._18{width:21.882781pt;}
._24{width:23.017745pt;}
._10{width:24.433241pt;}
._5{width:25.402403pt;}
._9{width:26.639374pt;}
._11{width:27.646787pt;}
._a{width:29.177065pt;}
._1f{width:30.222746pt;}
._13{width:31.944300pt;}
._3{width:32.900710pt;}
._19{width:34.073908pt;}
._6{width:35.310879pt;}
._20{width:36.535091pt;}
._1e{width:39.047271pt;}
._7{width:40.182219pt;}
._23{width:41.329923pt;}
._14{width:42.719915pt;}
._1b{width:44.849529pt;}
._1a{width:46.558314pt;}
._15{width:47.808036pt;}
._21{width:53.227727pt;}
._e{width:54.898273pt;}
._4{width:57.627241pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:56.149333pt;}
.y1d{bottom:96.000000pt;}
.y9d{bottom:96.505333pt;}
.yb0{bottom:99.100000pt;}
.yc2{bottom:111.685333pt;}
.y1c{bottom:115.261333pt;}
.y9c{bottom:115.765333pt;}
.yaf{bottom:118.360000pt;}
.y7c{bottom:127.322667pt;}
.yc1{bottom:130.946667pt;}
.y40{bottom:134.522667pt;}
.y9b{bottom:135.026667pt;}
.y5f{bottom:137.113333pt;}
.y7b{bottom:146.584000pt;}
.y9a{bottom:154.288000pt;}
.y1b{bottom:158.277333pt;}
.yc0{bottom:162.098667pt;}
.y7a{bottom:165.845333pt;}
.y3f{bottom:169.094667pt;}
.y99{bottom:173.549333pt;}
.y5e{bottom:174.640000pt;}
.ybf{bottom:181.360000pt;}
.y79{bottom:185.105333pt;}
.y3e{bottom:188.354667pt;}
.y98{bottom:200.780000pt;}
.y78{bottom:204.366667pt;}
.y3d{bottom:207.616000pt;}
.ybe{bottom:212.512000pt;}
.y1a{bottom:213.240000pt;}
.y97{bottom:220.041333pt;}
.y5d{bottom:223.738667pt;}
.y3c{bottom:226.877333pt;}
.y19{bottom:232.501333pt;}
.y96{bottom:239.302667pt;}
.y77{bottom:241.893333pt;}
.y5c{bottom:243.000000pt;}
.y3b{bottom:246.138667pt;}
.y18{bottom:251.762667pt;}
.ya7{bottom:251.969333pt;}
.ybd{bottom:255.528000pt;}
.y95{bottom:258.564000pt;}
.y5b{bottom:262.261333pt;}
.y17{bottom:271.022667pt;}
.ya6{bottom:271.230667pt;}
.y94{bottom:277.825333pt;}
.y3a{bottom:280.710667pt;}
.y5a{bottom:289.492000pt;}
.y16{bottom:290.284000pt;}
.y76{bottom:291.429333pt;}
.y93{bottom:297.085333pt;}
.y39{bottom:299.972000pt;}
.ybc{bottom:303.194667pt;}
.y59{bottom:308.753333pt;}
.y15{bottom:309.545333pt;}
.y75{bottom:310.690667pt;}
.y92{bottom:324.317333pt;}
.y14{bottom:328.806667pt;}
.y74{bottom:329.952000pt;}
.y38{bottom:337.497333pt;}
.y91{bottom:343.578667pt;}
.y13{bottom:348.068000pt;}
.y58{bottom:349.868000pt;}
.y73{bottom:357.182667pt;}
.ybb{bottom:358.376000pt;}
.y90{bottom:362.838667pt;}
.ya9{bottom:364.328000pt;}
.y57{bottom:369.128000pt;}
.y72{bottom:376.444000pt;}
.yba{bottom:377.637333pt;}
.y8f{bottom:382.100000pt;}
.ya8{bottom:383.588000pt;}
.y37{bottom:385.752000pt;}
.y56{bottom:388.389333pt;}
.y12{bottom:391.084000pt;}
.y71{bottom:395.705333pt;}
.yb9{bottom:396.898667pt;}
.y8e{bottom:401.361333pt;}
.y36{bottom:405.013333pt;}
.y55{bottom:407.650667pt;}
.yac{bottom:409.576000pt;}
.y70{bottom:414.966667pt;}
.yb8{bottom:416.160000pt;}
.y8d{bottom:420.622667pt;}
.y35{bottom:424.273333pt;}
.y54{bottom:426.912000pt;}
.yab{bottom:428.837333pt;}
.y6f{bottom:434.226667pt;}
.yb7{bottom:435.421333pt;}
.y34{bottom:443.534667pt;}
.y11{bottom:446.046667pt;}
.y53{bottom:446.173333pt;}
.yaa{bottom:448.098667pt;}
.y6e{bottom:453.488000pt;}
.y33{bottom:462.796000pt;}
.y8c{bottom:463.638667pt;}
.y10{bottom:465.308000pt;}
.y52{bottom:465.433333pt;}
.yb6{bottom:478.437333pt;}
.y32{bottom:482.057333pt;}
.yf{bottom:484.569333pt;}
.y51{bottom:484.694667pt;}
.y6d{bottom:491.014667pt;}
.y31{bottom:501.318667pt;}
.ye{bottom:503.829333pt;}
.yae{bottom:513.525333pt;}
.y8b{bottom:519.540000pt;}
.yd{bottom:523.090667pt;}
.y50{bottom:525.809333pt;}
.yad{bottom:532.786667pt;}
.yb5{bottom:533.620000pt;}
.y8a{bottom:538.801333pt;}
.y30{bottom:538.844000pt;}
.y6c{bottom:540.550667pt;}
.yc{bottom:542.352000pt;}
.y4f{bottom:545.070667pt;}
.yb4{bottom:552.880000pt;}
.y89{bottom:558.062667pt;}
.y6b{bottom:559.812000pt;}
.yb{bottom:561.613333pt;}
.y88{bottom:577.324000pt;}
.y6a{bottom:579.073333pt;}
.ya{bottom:580.874667pt;}
.y4e{bottom:582.596000pt;}
.y2f{bottom:584.584000pt;}
.yb3{bottom:595.897333pt;}
.y87{bottom:596.585333pt;}
.y9{bottom:600.134667pt;}
.y69{bottom:606.304000pt;}
.y86{bottom:615.846667pt;}
.y8{bottom:619.396000pt;}
.y68{bottom:625.565333pt;}
.y4d{bottom:631.694667pt;}
.y7{bottom:638.657333pt;}
.y2e{bottom:639.202667pt;}
.y67{bottom:644.826667pt;}
.yb2{bottom:646.689333pt;}
.y4c{bottom:650.956000pt;}
.y85{bottom:653.372000pt;}
.y6{bottom:657.918667pt;}
.y2d{bottom:658.464000pt;}
.y66{bottom:664.088000pt;}
.yb1{bottom:665.950667pt;}
.y4b{bottom:670.217333pt;}
.y2c{bottom:677.725333pt;}
.y65{bottom:683.348000pt;}
.y2b{bottom:696.986667pt;}
.y5{bottom:700.934667pt;}
.y84{bottom:702.908000pt;}
.y4a{bottom:711.330667pt;}
.y2a{bottom:716.248000pt;}
.y64{bottom:720.874667pt;}
.y83{bottom:722.169333pt;}
.y49{bottom:730.592000pt;}
.y29{bottom:735.508000pt;}
.y82{bottom:741.430667pt;}
.ya5{bottom:748.040000pt;}
.y48{bottom:749.853333pt;}
.y28{bottom:754.769333pt;}
.y81{bottom:760.692000pt;}
.y63{bottom:766.614667pt;}
.y4{bottom:767.224000pt;}
.y47{bottom:769.114667pt;}
.y80{bottom:779.953333pt;}
.y27{bottom:782.001333pt;}
.y46{bottom:788.376000pt;}
.y3{bottom:791.133333pt;}
.y7f{bottom:799.214667pt;}
.y26{bottom:801.261333pt;}
.ya4{bottom:803.941333pt;}
.y45{bottom:807.637333pt;}
.y7e{bottom:818.474667pt;}
.y25{bottom:820.522667pt;}
.y62{bottom:822.516000pt;}
.ya3{bottom:823.201333pt;}
.y24{bottom:839.784000pt;}
.y61{bottom:841.776000pt;}
.ya2{bottom:842.462667pt;}
.y2{bottom:846.426667pt;}
.y44{bottom:848.750667pt;}
.y7d{bottom:856.001333pt;}
.y23{bottom:859.045333pt;}
.y60{bottom:861.037333pt;}
.ya1{bottom:861.724000pt;}
.y43{bottom:868.012000pt;}
.y1{bottom:879.634667pt;}
.ya0{bottom:880.985333pt;}
.y22{bottom:886.276000pt;}
.y42{bottom:887.273333pt;}
.y9f{bottom:900.246667pt;}
.y21{bottom:905.537333pt;}
.y41{bottom:906.533333pt;}
.y20{bottom:924.798667pt;}
.y9e{bottom:943.262667pt;}
.y1f{bottom:944.060000pt;}
.h3{height:47.820800pt;}
.h2{height:57.384800pt;}
.h1{height:82.650000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.000000pt;}
.x1{left:97.665333pt;}
.x9{left:115.076000pt;}
.x7{left:119.413333pt;}
.x8{left:135.020000pt;}
.x4{left:209.330667pt;}
.x2{left:262.780000pt;}
.x3{left:350.853333pt;}
.xa{left:400.196000pt;}
.x6{left:404.097333pt;}
}




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