
    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_4e692246895ed87a2179bfd7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_fd4ed11c8dd48fbe6dfa1adb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_c826133fc92e30517c018e2d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_4ddd6cc67627bcf7f05121f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056641;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_35222f76b4879b1ceae56229.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.109000;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);}
.v4{vertical-align:-21.653894px;}
.v5{vertical-align:-19.548004px;}
.v2{vertical-align:-2.918335px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.918884px;}
.v1{vertical-align:21.653915px;}
.ls12{letter-spacing:-0.025405px;}
.ls15{letter-spacing:-0.023910px;}
.ls10{letter-spacing:-0.020324px;}
.lsd{letter-spacing:-0.017933px;}
.lsb{letter-spacing:-0.011955px;}
.ls16{letter-spacing:-0.010760px;}
.ls11{letter-spacing:-0.010162px;}
.ls9{letter-spacing:-0.008608px;}
.lsc{letter-spacing:-0.005978px;}
.lse{letter-spacing:-0.005380px;}
.lsa{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.005380px;}
.ls13{letter-spacing:0.007173px;}
.ls14{letter-spacing:0.017933px;}
.ls8{letter-spacing:0.533999px;}
.ls0{letter-spacing:3.097212px;}
.ls7{letter-spacing:62.065185px;}
.ls1{letter-spacing:62.091885px;}
.ls6{letter-spacing:62.119278px;}
.ls2{letter-spacing:62.173065px;}
.ls3{letter-spacing:62.227239px;}
.ls5{letter-spacing:62.335068px;}
.ls4{letter-spacing:62.335234px;}
.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:-0.065873px;}
.ws2{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.048419px;}
.ws0{word-spacing:-0.045430px;}
.ws8{word-spacing:-0.041843px;}
.ws3{word-spacing:-0.040647px;}
.ws7{word-spacing:-0.035865px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:13.406562px;}
.ws6{word-spacing:13.449600px;}
._5{margin-left:-7.135355px;}
._3{margin-left:-5.440077px;}
._11{margin-left:-4.335303px;}
._8{margin-left:-3.249423px;}
._1{margin-left:-1.523566px;}
._16{width:7.640836px;}
._d{width:8.884261px;}
._b{width:9.947324px;}
._c{width:11.029744px;}
._a{width:12.034702px;}
._7{width:13.508779px;}
._4{width:14.955855px;}
._e{width:16.795861px;}
._10{width:18.680957px;}
._13{width:19.735023px;}
._0{width:20.744605px;}
._2{width:22.190702px;}
._6{width:23.941207px;}
._14{width:25.151411px;}
._17{width:28.254568px;}
._9{width:29.901111px;}
._18{width:41.849777px;}
._15{width:49.852849px;}
._f{width:59.765937px;}
._12{width:168.367478px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:44.832000px;}
.fs2{font-size:45.429600px;}
.fs6{font-size:50.809198px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775599px;}
.fs3{font-size:65.872799px;}
.fs5{font-size:71.730600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y26{bottom:49.418959px;}
.y25{bottom:64.363753px;}
.y24{bottom:79.307997px;}
.y51{bottom:94.022808px;}
.yb9{bottom:103.188691px;}
.y79{bottom:104.687809px;}
.y23{bottom:111.032988px;}
.y50{bottom:111.950611px;}
.y92{bottom:111.950653px;}
.yb8{bottom:119.632172px;}
.y78{bottom:122.616006px;}
.y22{bottom:128.973571px;}
.y4f{bottom:129.878807px;}
.y91{bottom:129.878850px;}
.yb7{bottom:136.075653px;}
.y77{bottom:140.557652px;}
.y21{bottom:146.901793px;}
.y4e{bottom:147.820453px;}
.y90{bottom:147.820496px;}
.y76{bottom:158.485168px;}
.y20{bottom:164.829970px;}
.y4d{bottom:165.747811px;}
.y8f{bottom:165.748119px;}
.yb6{bottom:170.445571px;}
.y75{bottom:176.413365px;}
.y1f{bottom:182.771605px;}
.y4c{bottom:183.689457px;}
.y8e{bottom:183.689765px;}
.yb5{bottom:188.373768px;}
.y74{bottom:194.354458px;}
.y1e{bottom:200.699828px;}
.y4b{bottom:201.617653px;}
.y8d{bottom:201.617961px;}
.yb4{bottom:206.301964px;}
.y73{bottom:212.282655px;}
.y1d{bottom:218.628005px;}
.y8c{bottom:219.545277px;}
.y4a{bottom:219.545850px;}
.yb3{bottom:224.243610px;}
.y72{bottom:230.210851px;}
.y1c{bottom:236.569640px;}
.y8b{bottom:237.486922px;}
.y49{bottom:237.487496px;}
.yb2{bottom:242.171806px;}
.y71{bottom:248.152497px;}
.y8a{bottom:255.415119px;}
.ydd{bottom:258.613511px;}
.yb1{bottom:260.100003px;}
.y48{bottom:269.145149px;}
.y1b{bottom:272.425490px;}
.y89{bottom:273.343315px;}
.ydc{bottom:275.043543px;}
.y70{bottom:278.041649px;}
.y88{bottom:291.284961px;}
.ydb{bottom:291.487024px;}
.yb0{bottom:295.968909px;}
.yda{bottom:307.930504px;}
.y47{bottom:308.562515px;}
.y87{bottom:309.213157px;}
.yaf{bottom:313.897105px;}
.y6f{bottom:322.873737px;}
.yd9{bottom:324.359513px;}
.y46{bottom:326.504161px;}
.yae{bottom:331.838751px;}
.y1a{bottom:335.996962px;}
.y86{bottom:337.279496px;}
.y6e{bottom:340.801933px;}
.yd8{bottom:340.802994px;}
.y45{bottom:344.432357px;}
.yad{bottom:349.766948px;}
.yd7{bottom:357.245475px;}
.y6d{bottom:358.730130px;}
.y44{bottom:362.360554px;}
.yac{bottom:367.695144px;}
.y19{bottom:368.863501px;}
.yd6{bottom:373.675506px;}
.y6c{bottom:376.671775px;}
.y43{bottom:380.302200px;}
.y85{bottom:380.303260px;}
.y18{bottom:385.307013px;}
.yab{bottom:385.634540px;}
.yd5{bottom:390.118515px;}
.y6b{bottom:394.599972px;}
.y42{bottom:398.230396px;}
.y84{bottom:398.231457px;}
.y17{bottom:401.750479px;}
.yaa{bottom:403.562737px;}
.yd4{bottom:406.561478px;}
.y6a{bottom:412.528168px;}
.y41{bottom:416.158592px;}
.y83{bottom:416.159653px;}
.y16{bottom:418.180487px;}
.ya9{bottom:421.490933px;}
.yd3{bottom:422.990510px;}
.y69{bottom:430.469814px;}
.y40{bottom:434.100238px;}
.y82{bottom:434.101299px;}
.y15{bottom:434.623999px;}
.ya8{bottom:439.432579px;}
.yd2{bottom:439.433991px;}
.y68{bottom:448.398010px;}
.y14{bottom:451.053984px;}
.y3f{bottom:452.028435px;}
.y81{bottom:452.029496px;}
.yd1{bottom:455.862550px;}
.ya7{bottom:457.360775px;}
.y67{bottom:466.325791px;}
.y13{bottom:467.497496px;}
.y3e{bottom:469.956631px;}
.yd0{bottom:472.306031px;}
.ya6{bottom:475.302421px;}
.y12{bottom:483.940963px;}
.y66{bottom:484.267437px;}
.y3d{bottom:487.898277px;}
.ycf{bottom:488.749512px;}
.ya5{bottom:493.230618px;}
.y11{bottom:500.370970px;}
.y65{bottom:502.194637px;}
.yce{bottom:505.178498px;}
.y3c{bottom:505.826473px;}
.ya4{bottom:511.158814px;}
.y10{bottom:516.814482px;}
.y64{bottom:520.122833px;}
.ycd{bottom:521.621979px;}
.y3b{bottom:523.768119px;}
.ya3{bottom:529.100460px;}
.yf{bottom:533.257949px;}
.y63{bottom:538.064479px;}
.ycc{bottom:538.064598px;}
.y3a{bottom:541.696316px;}
.ya2{bottom:547.028656px;}
.ye{bottom:549.688002px;}
.ycb{bottom:554.494629px;}
.y62{bottom:555.992676px;}
.y39{bottom:559.624512px;}
.ya1{bottom:564.956853px;}
.yd{bottom:566.131468px;}
.yca{bottom:570.936501px;}
.y61{bottom:573.920872px;}
.y38{bottom:577.565051px;}
.ya0{bottom:582.898498px;}
.yc9{bottom:587.379982px;}
.y60{bottom:591.861964px;}
.y37{bottom:595.493247px;}
.yc8{bottom:603.810013px;}
.y5f{bottom:609.790161px;}
.y36{bottom:613.421443px;}
.y9f{bottom:618.754669px;}
.yc7{bottom:620.252686px;}
.y5e{bottom:627.731807px;}
.y35{bottom:631.363089px;}
.yc{bottom:632.227462px;}
.yc6{bottom:636.696166px;}
.y5d{bottom:645.659248px;}
.y34{bottom:649.291286px;}
.yb{bottom:650.155507px;}
.yc5{bottom:653.125016px;}
.y5c{bottom:663.587445px;}
.y9e{bottom:666.584265px;}
.ya{bottom:666.598464px;}
.y33{bottom:667.219482px;}
.yc4{bottom:669.568497px;}
.y9{bottom:678.154479px;}
.y5b{bottom:681.529091px;}
.y9d{bottom:684.512461px;}
.yc3{bottom:686.010978px;}
.y80{bottom:695.299484px;}
.y32{bottom:698.890641px;}
.y5a{bottom:699.457287px;}
.y8{bottom:699.470979px;}
.y9c{bottom:702.440658px;}
.yc2{bottom:702.441009px;}
.y59{bottom:717.385483px;}
.yc1{bottom:718.883500px;}
.y9b{bottom:720.382304px;}
.y7{bottom:724.634930px;}
.yc0{bottom:735.326980px;}
.y7f{bottom:738.309441px;}
.y31{bottom:738.309597px;}
.y9a{bottom:738.310500px;}
.y6{bottom:742.563029px;}
.y58{bottom:747.274521px;}
.ye6{bottom:751.754517px;}
.ybf{bottom:751.756485px;}
.y99{bottom:756.237388px;}
.y7e{bottom:756.237637px;}
.y30{bottom:756.237793px;}
.y5{bottom:760.504666px;}
.ye5{bottom:768.198029px;}
.ybe{bottom:768.198976px;}
.y98{bottom:774.179034px;}
.y7d{bottom:774.179283px;}
.y2f{bottom:774.179439px;}
.ye4{bottom:784.641541px;}
.ybd{bottom:784.642457px;}
.y57{bottom:792.107109px;}
.y97{bottom:792.107230px;}
.y7c{bottom:792.107479px;}
.y2e{bottom:792.107635px;}
.ye3{bottom:801.071503px;}
.y56{bottom:810.035305px;}
.y96{bottom:810.035427px;}
.y7b{bottom:810.035676px;}
.y2d{bottom:810.035832px;}
.ye2{bottom:817.515015px;}
.ybc{bottom:819.013458px;}
.y4{bottom:819.026387px;}
.y55{bottom:827.976951px;}
.y95{bottom:827.977073px;}
.y7a{bottom:827.977322px;}
.y2c{bottom:827.977478px;}
.ye1{bottom:833.956512px;}
.y2b{bottom:845.904964px;}
.y54{bottom:845.905147px;}
.y94{bottom:845.905269px;}
.y3{bottom:845.931996px;}
.ye0{bottom:850.386566px;}
.y2a{bottom:863.833161px;}
.y53{bottom:863.833344px;}
.y93{bottom:863.833466px;}
.ybb{bottom:866.829674px;}
.ydf{bottom:866.829987px;}
.y2{bottom:872.824594px;}
.y29{bottom:881.774807px;}
.y52{bottom:881.774990px;}
.yde{bottom:883.273132px;}
.yba{bottom:883.273155px;}
.y28{bottom:899.703186px;}
.y1{bottom:899.730200px;}
.y27{bottom:934.519684px;}
.h6{height:31.255565px;}
.hd{height:34.956728px;}
.h9{height:37.013299px;}
.h18{height:37.014764px;}
.h8{height:37.336090px;}
.hb{height:41.125612px;}
.h17{height:41.127015px;}
.h15{height:41.127094px;}
.hf{height:41.127184px;}
.h12{height:41.127826px;}
.h14{height:41.128372px;}
.he{height:41.128966px;}
.h16{height:41.129136px;}
.h11{height:41.129182px;}
.h13{height:41.129598px;}
.hc{height:41.129823px;}
.h10{height:41.484265px;}
.h7{height:43.395975px;}
.ha{height:49.781036px;}
.h4{height:52.963446px;}
.h5{height:52.963868px;}
.h2{height:59.737577px;}
.h3{height:77.954677px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.xc{left:59.103000px;}
.x10{left:65.825998px;}
.x6{left:80.367055px;}
.xd{left:81.512999px;}
.x11{left:83.389498px;}
.xa{left:97.753493px;}
.xf{left:102.775497px;}
.xb{left:122.877016px;}
.x5{left:135.054016px;}
.x1{left:148.648499px;}
.x2{left:157.396088px;}
.x3{left:163.565643px;}
.xe{left:168.831000px;}
.x8{left:184.410010px;}
.x7{left:213.071657px;}
.x9{left:246.928511px;}
.x4{left:288.319496px;}
@media print{
.v4{vertical-align:-19.247906pt;}
.v5{vertical-align:-17.376004pt;}
.v2{vertical-align:-2.594076pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.594564pt;}
.v1{vertical-align:19.247925pt;}
.ls12{letter-spacing:-0.022582pt;}
.ls15{letter-spacing:-0.021254pt;}
.ls10{letter-spacing:-0.018065pt;}
.lsd{letter-spacing:-0.015940pt;}
.lsb{letter-spacing:-0.010627pt;}
.ls16{letter-spacing:-0.009564pt;}
.ls11{letter-spacing:-0.009033pt;}
.ls9{letter-spacing:-0.007651pt;}
.lsc{letter-spacing:-0.005313pt;}
.lse{letter-spacing:-0.004782pt;}
.lsa{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.004782pt;}
.ls13{letter-spacing:0.006376pt;}
.ls14{letter-spacing:0.015940pt;}
.ls8{letter-spacing:0.474666pt;}
.ls0{letter-spacing:2.753077pt;}
.ls7{letter-spacing:55.169053pt;}
.ls1{letter-spacing:55.192786pt;}
.ls6{letter-spacing:55.217136pt;}
.ls2{letter-spacing:55.264947pt;}
.ls3{letter-spacing:55.313102pt;}
.ls5{letter-spacing:55.408949pt;}
.ls4{letter-spacing:55.409097pt;}
.ws1{word-spacing:-0.058554pt;}
.ws2{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.043039pt;}
.ws0{word-spacing:-0.040382pt;}
.ws8{word-spacing:-0.037194pt;}
.ws3{word-spacing:-0.036131pt;}
.ws7{word-spacing:-0.031880pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:11.916944pt;}
.ws6{word-spacing:11.955200pt;}
._5{margin-left:-6.342538pt;}
._3{margin-left:-4.835624pt;}
._11{margin-left:-3.853603pt;}
._8{margin-left:-2.888376pt;}
._1{margin-left:-1.354281pt;}
._16{width:6.791854pt;}
._d{width:7.897121pt;}
._b{width:8.842066pt;}
._c{width:9.804217pt;}
._a{width:10.697513pt;}
._7{width:12.007803pt;}
._4{width:13.294093pt;}
._e{width:14.929654pt;}
._10{width:16.605295pt;}
._13{width:17.542242pt;}
._0{width:18.439649pt;}
._2{width:19.725069pt;}
._6{width:21.281073pt;}
._14{width:22.356810pt;}
._17{width:25.115172pt;}
._9{width:26.578766pt;}
._18{width:37.199801pt;}
._15{width:44.313644pt;}
._f{width:53.125277pt;}
._12{width:149.659980pt;}
.fs7{font-size:39.850667pt;}
.fs2{font-size:40.381867pt;}
.fs6{font-size:45.163732pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133865pt;}
.fs3{font-size:58.553599pt;}
.fs5{font-size:63.760533pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:43.927964pt;}
.y25{bottom:57.212225pt;}
.y24{bottom:70.495998pt;}
.y51{bottom:83.575829pt;}
.yb9{bottom:91.723281pt;}
.y79{bottom:93.055830pt;}
.y23{bottom:98.695990pt;}
.y50{bottom:99.511654pt;}
.y92{bottom:99.511692pt;}
.yb8{bottom:106.339709pt;}
.y78{bottom:108.992005pt;}
.y22{bottom:114.643174pt;}
.y4f{bottom:115.447829pt;}
.y91{bottom:115.447866pt;}
.yb7{bottom:120.956136pt;}
.y77{bottom:124.940135pt;}
.y21{bottom:130.579372pt;}
.y4e{bottom:131.395958pt;}
.y90{bottom:131.395996pt;}
.y76{bottom:140.875705pt;}
.y20{bottom:146.515529pt;}
.y4d{bottom:147.331387pt;}
.y8f{bottom:147.331661pt;}
.yb6{bottom:151.507174pt;}
.y75{bottom:156.811880pt;}
.y1f{bottom:162.463649pt;}
.y4c{bottom:163.279517pt;}
.y8e{bottom:163.279791pt;}
.yb5{bottom:167.443349pt;}
.y74{bottom:172.759519pt;}
.y1e{bottom:178.399847pt;}
.y4b{bottom:179.215692pt;}
.y8d{bottom:179.215965pt;}
.yb4{bottom:183.379523pt;}
.y73{bottom:188.695693pt;}
.y1d{bottom:194.336004pt;}
.y8c{bottom:195.151357pt;}
.y4a{bottom:195.151866pt;}
.yb3{bottom:199.327653pt;}
.y72{bottom:204.631868pt;}
.y1c{bottom:210.284124pt;}
.y8b{bottom:211.099487pt;}
.y49{bottom:211.099996pt;}
.yb2{bottom:215.263828pt;}
.y71{bottom:220.579997pt;}
.y8a{bottom:227.035661pt;}
.ydd{bottom:229.878677pt;}
.yb1{bottom:231.200002pt;}
.y48{bottom:239.240132pt;}
.y1b{bottom:242.155991pt;}
.y89{bottom:242.971836pt;}
.ydc{bottom:244.483149pt;}
.y70{bottom:247.148132pt;}
.y88{bottom:258.919965pt;}
.ydb{bottom:259.099576pt;}
.yb0{bottom:263.083475pt;}
.yda{bottom:273.716004pt;}
.y47{bottom:274.277791pt;}
.y87{bottom:274.856140pt;}
.yaf{bottom:279.019649pt;}
.y6f{bottom:286.998877pt;}
.yd9{bottom:288.319567pt;}
.y46{bottom:290.225921pt;}
.yae{bottom:294.967779pt;}
.y1a{bottom:298.663966pt;}
.y86{bottom:299.803996pt;}
.y6e{bottom:302.935052pt;}
.yd8{bottom:302.935995pt;}
.y45{bottom:306.162095pt;}
.yad{bottom:310.903953pt;}
.yd7{bottom:317.551533pt;}
.y6d{bottom:318.871226pt;}
.y44{bottom:322.098270pt;}
.yac{bottom:326.840128pt;}
.y19{bottom:327.878668pt;}
.yd6{bottom:332.156005pt;}
.y6c{bottom:334.819356pt;}
.y43{bottom:338.046400pt;}
.y85{bottom:338.047343pt;}
.y18{bottom:342.495123pt;}
.yab{bottom:342.786258pt;}
.yd5{bottom:346.772013pt;}
.y6b{bottom:350.755531pt;}
.y42{bottom:353.982574pt;}
.y84{bottom:353.983517pt;}
.y17{bottom:357.111537pt;}
.yaa{bottom:358.722433pt;}
.yd4{bottom:361.387980pt;}
.y6a{bottom:366.691705pt;}
.y41{bottom:369.918749pt;}
.y83{bottom:369.919692pt;}
.y16{bottom:371.715989pt;}
.ya9{bottom:374.658607pt;}
.yd3{bottom:375.991564pt;}
.y69{bottom:382.639835pt;}
.y40{bottom:385.866878pt;}
.y82{bottom:385.867821pt;}
.y15{bottom:386.332444pt;}
.ya8{bottom:390.606737pt;}
.yd2{bottom:390.607992pt;}
.y68{bottom:398.576009pt;}
.y14{bottom:400.936875pt;}
.y3f{bottom:401.803053pt;}
.y81{bottom:401.803996pt;}
.yd1{bottom:405.211156pt;}
.ya7{bottom:406.542911pt;}
.y67{bottom:414.511814pt;}
.y13{bottom:415.553330pt;}
.y3e{bottom:417.739228pt;}
.yd0{bottom:419.827583pt;}
.ya6{bottom:422.491041pt;}
.y12{bottom:430.169744pt;}
.y66{bottom:430.459944pt;}
.y3d{bottom:433.687357pt;}
.ycf{bottom:434.444011pt;}
.ya5{bottom:438.427216pt;}
.y11{bottom:444.774196pt;}
.y65{bottom:446.395233pt;}
.yce{bottom:449.047554pt;}
.y3c{bottom:449.623532pt;}
.ya4{bottom:454.363390pt;}
.y10{bottom:459.390651pt;}
.y64{bottom:462.331407pt;}
.ycd{bottom:463.663981pt;}
.y3b{bottom:465.571662pt;}
.ya3{bottom:470.311520pt;}
.yf{bottom:474.007065pt;}
.y63{bottom:478.279537pt;}
.ycc{bottom:478.279642pt;}
.y3a{bottom:481.507836pt;}
.ya2{bottom:486.247694pt;}
.ye{bottom:488.611558pt;}
.ycb{bottom:492.884115pt;}
.y62{bottom:494.215712pt;}
.y39{bottom:497.444011pt;}
.ya1{bottom:502.183869pt;}
.yd{bottom:503.227972pt;}
.yca{bottom:507.499112pt;}
.y61{bottom:510.151886pt;}
.y38{bottom:513.391156pt;}
.ya0{bottom:518.131999pt;}
.yc9{bottom:522.115540pt;}
.y60{bottom:526.099524pt;}
.y37{bottom:529.327331pt;}
.yc8{bottom:536.720012pt;}
.y5f{bottom:542.035698pt;}
.y36{bottom:545.263505pt;}
.y9f{bottom:550.004151pt;}
.yc7{bottom:551.335720pt;}
.y5e{bottom:557.983828pt;}
.y35{bottom:561.211635pt;}
.yc{bottom:561.979966pt;}
.yc6{bottom:565.952148pt;}
.y5d{bottom:573.919332pt;}
.y34{bottom:577.147809pt;}
.yb{bottom:577.916006pt;}
.yc5{bottom:580.555570pt;}
.y5c{bottom:589.855507pt;}
.y9e{bottom:592.519347pt;}
.ya{bottom:592.531968pt;}
.y33{bottom:593.083984pt;}
.yc4{bottom:595.171997pt;}
.y9{bottom:602.803981pt;}
.y5b{bottom:605.803636pt;}
.y9d{bottom:608.455521pt;}
.yc3{bottom:609.787536pt;}
.y80{bottom:618.043986pt;}
.y32{bottom:621.236125pt;}
.y5a{bottom:621.739811pt;}
.y8{bottom:621.751982pt;}
.y9c{bottom:624.391696pt;}
.yc2{bottom:624.392008pt;}
.y59{bottom:637.675985pt;}
.yc1{bottom:639.007555pt;}
.y9b{bottom:640.339825pt;}
.y7{bottom:644.119938pt;}
.yc0{bottom:653.623983pt;}
.y7f{bottom:656.275058pt;}
.y31{bottom:656.275197pt;}
.y9a{bottom:656.276000pt;}
.y6{bottom:660.056026pt;}
.y58{bottom:664.244019pt;}
.ye6{bottom:668.226237pt;}
.ybf{bottom:668.227987pt;}
.y99{bottom:672.211012pt;}
.y7e{bottom:672.211233pt;}
.y30{bottom:672.211371pt;}
.y5{bottom:676.004148pt;}
.ye5{bottom:682.842692pt;}
.ybe{bottom:682.843534pt;}
.y98{bottom:688.159141pt;}
.y7d{bottom:688.159363pt;}
.y2f{bottom:688.159501pt;}
.ye4{bottom:697.459147pt;}
.ybd{bottom:697.459961pt;}
.y57{bottom:704.095208pt;}
.y97{bottom:704.095316pt;}
.y7c{bottom:704.095537pt;}
.y2e{bottom:704.095676pt;}
.ye3{bottom:712.063558pt;}
.y56{bottom:720.031382pt;}
.y96{bottom:720.031491pt;}
.y7b{bottom:720.031712pt;}
.y2d{bottom:720.031850pt;}
.ye2{bottom:726.680013pt;}
.ybc{bottom:728.011963pt;}
.y4{bottom:728.023455pt;}
.y55{bottom:735.979512pt;}
.y95{bottom:735.979620pt;}
.y7a{bottom:735.979841pt;}
.y2c{bottom:735.979980pt;}
.ye1{bottom:741.294678pt;}
.y2b{bottom:751.915524pt;}
.y54{bottom:751.915687pt;}
.y94{bottom:751.915795pt;}
.y3{bottom:751.939552pt;}
.ye0{bottom:755.899170pt;}
.y2a{bottom:767.851698pt;}
.y53{bottom:767.851861pt;}
.y93{bottom:767.851969pt;}
.ybb{bottom:770.515265pt;}
.ydf{bottom:770.515544pt;}
.y2{bottom:775.844083pt;}
.y29{bottom:783.799828pt;}
.y52{bottom:783.799991pt;}
.yde{bottom:785.131673pt;}
.yba{bottom:785.131693pt;}
.y28{bottom:799.736165pt;}
.y1{bottom:799.760178pt;}
.y27{bottom:830.684164pt;}
.h6{height:27.782724pt;}
.hd{height:31.072648pt;}
.h9{height:32.900710pt;}
.h18{height:32.902012pt;}
.h8{height:33.187635pt;}
.hb{height:36.556099pt;}
.h17{height:36.557346pt;}
.h15{height:36.557417pt;}
.hf{height:36.557497pt;}
.h12{height:36.558068pt;}
.h14{height:36.558553pt;}
.he{height:36.559081pt;}
.h16{height:36.559232pt;}
.h11{height:36.559273pt;}
.h13{height:36.559642pt;}
.hc{height:36.559843pt;}
.h10{height:36.874903pt;}
.h7{height:38.574200pt;}
.ha{height:44.249810pt;}
.h4{height:47.078619pt;}
.h5{height:47.078994pt;}
.h2{height:53.100068pt;}
.h3{height:69.293047pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.xc{left:52.536000pt;}
.x10{left:58.511998pt;}
.x6{left:71.437382pt;}
.xd{left:72.455999pt;}
.x11{left:74.123998pt;}
.xa{left:86.891993pt;}
.xf{left:91.355998pt;}
.xb{left:109.224015pt;}
.x5{left:120.048014pt;}
.x1{left:132.131999pt;}
.x2{left:139.907633pt;}
.x3{left:145.391683pt;}
.xe{left:150.072000pt;}
.x8{left:163.920009pt;}
.x7{left:189.397028pt;}
.x9{left:219.492010pt;}
.x4{left:256.283997pt;}
}




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