
    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_473c3473e5699d6491c61537.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_6140a070c1c0239e5e8c6b2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_9bf9bfa35cae95474727bb02.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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);}
.v1{vertical-align:-110.400000px;}
.va{vertical-align:-69.000000px;}
.ve{vertical-align:-46.200000px;}
.v4{vertical-align:-42.600000px;}
.v9{vertical-align:-40.800000px;}
.v3{vertical-align:-38.400000px;}
.v2{vertical-align:-36.600000px;}
.v7{vertical-align:-31.200000px;}
.v5{vertical-align:-28.200000px;}
.vc{vertical-align:-27.000000px;}
.v8{vertical-align:-21.600000px;}
.v6{vertical-align:-19.200000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:37.800000px;}
.vb{vertical-align:41.400000px;}
.vf{vertical-align:42.600000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.033600px;}
.ls1{letter-spacing:0.132000px;}
.ls4{letter-spacing:0.149400px;}
.ls14{letter-spacing:0.161400px;}
.ls12{letter-spacing:0.166800px;}
.ls0{letter-spacing:0.192000px;}
.ls10{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.513600px;}
.ls11{letter-spacing:0.852000px;}
.ls8{letter-spacing:50.829600px;}
.ls9{letter-spacing:56.865600px;}
.ls3{letter-spacing:66.043200px;}
.lsd{letter-spacing:70.614000px;}
.ls6{letter-spacing:70.984800px;}
.ls13{letter-spacing:72.784800px;}
.lsf{letter-spacing:73.650000px;}
.lsc{letter-spacing:75.220800px;}
.ls15{letter-spacing:77.020800px;}
.ls7{letter-spacing:78.220800px;}
.lse{letter-spacing:84.398400px;}
.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;}
}
.ws14{word-spacing:-73.128000px;}
.ws10{word-spacing:-53.184000px;}
.ws5{word-spacing:-48.364200px;}
.wsa{word-spacing:-47.367000px;}
.ws13{word-spacing:-46.370400px;}
.ws11{word-spacing:-46.203600px;}
.ws16{word-spacing:-44.869200px;}
.ws4{word-spacing:-44.209200px;}
.wse{word-spacing:-43.544400px;}
.ws2{word-spacing:-42.381000px;}
.ws1{word-spacing:-41.383800px;}
.ws9{word-spacing:-36.080400px;}
.ws6{word-spacing:-31.910400px;}
.ws3{word-spacing:-29.916000px;}
.wsc{word-spacing:-27.423000px;}
.ws15{word-spacing:-25.927200px;}
.wsf{word-spacing:-25.761000px;}
.wsd{word-spacing:-25.262400px;}
.ws8{word-spacing:-18.448200px;}
.wsb{word-spacing:-0.171000px;}
.ws7{word-spacing:-0.115200px;}
.ws12{word-spacing:-0.096600px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-18.333000px;}
._4{margin-left:-13.728000px;}
._8{margin-left:-12.396600px;}
._3{margin-left:-10.944000px;}
._5{margin-left:-8.424000px;}
._6{margin-left:-6.156000px;}
._c{margin-left:-4.224000px;}
._b{margin-left:-2.188800px;}
._2{margin-left:-1.152000px;}
._1{width:1.320000px;}
._a{width:2.604600px;}
._7{width:5.112000px;}
._0{width:2113.800000px;}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(126,43,210);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:51.600000px;}
.fse{font-size:57.600000px;}
.fsd{font-size:66.600000px;}
.fs4{font-size:67.200000px;}
.fs13{font-size:69.000000px;}
.fs7{font-size:70.800000px;}
.fs10{font-size:74.400000px;}
.fs19{font-size:75.000000px;}
.fs9{font-size:76.800000px;}
.fs0{font-size:84.000000px;}
.fs17{font-size:86.400000px;}
.fs15{font-size:91.200000px;}
.fs16{font-size:93.000000px;}
.fs1d{font-size:93.600000px;}
.fs1b{font-size:96.600000px;}
.fs12{font-size:99.000000px;}
.fs18{font-size:103.200000px;}
.fs6{font-size:108.000000px;}
.fsc{font-size:115.200000px;}
.fsf{font-size:128.400000px;}
.fs5{font-size:149.400000px;}
.fs2{font-size:153.000000px;}
.fs14{font-size:157.200000px;}
.fs8{font-size:159.600000px;}
.fs1c{font-size:161.400000px;}
.fs1a{font-size:166.800000px;}
.fs11{font-size:171.000000px;}
.fs1e{font-size:172.800000px;}
.fsa{font-size:174.600000px;}
.fs3{font-size:192.000000px;}
.fs1{font-size:264.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:10.500000px;}
.y2d{bottom:40.350000px;}
.y22{bottom:58.200000px;}
.y1{bottom:60.300000px;}
.y2c{bottom:70.350000px;}
.y21{bottom:88.050000px;}
.y2b{bottom:100.200000px;}
.y20{bottom:117.900000px;}
.y86{bottom:129.300000px;}
.y2a{bottom:130.050000px;}
.y99{bottom:140.100000px;}
.y1f{bottom:147.900000px;}
.y7b{bottom:150.150000px;}
.y29{bottom:159.900000px;}
.y73{bottom:177.000000px;}
.y1e{bottom:177.900000px;}
.y38{bottom:178.200000px;}
.y14{bottom:182.400000px;}
.y60{bottom:183.600000px;}
.y8f{bottom:186.150000px;}
.y4d{bottom:188.100000px;}
.y85{bottom:188.550000px;}
.y69{bottom:189.450000px;}
.y28{bottom:189.900000px;}
.y58{bottom:205.650000px;}
.y1d{bottom:207.750000px;}
.y98{bottom:211.050000px;}
.y27{bottom:219.750000px;}
.y5f{bottom:221.250000px;}
.ya1{bottom:222.600000px;}
.y13{bottom:224.250000px;}
.y7a{bottom:224.850000px;}
.y4c{bottom:225.750000px;}
.y72{bottom:230.550000px;}
.y37{bottom:232.200000px;}
.y40{bottom:237.150000px;}
.y1c{bottom:237.750000px;}
.y8e{bottom:242.850000px;}
.y84{bottom:245.850000px;}
.y26{bottom:249.600000px;}
.y57{bottom:251.700000px;}
.y5e{bottom:260.250000px;}
.y68{bottom:262.350000px;}
.y4b{bottom:264.600000px;}
.y97{bottom:265.650000px;}
.y1b{bottom:267.600000px;}
.y12{bottom:274.950000px;}
.ya0{bottom:279.450000px;}
.y25{bottom:279.600000px;}
.y71{bottom:282.300000px;}
.y36{bottom:284.400000px;}
.y79{bottom:287.850000px;}
.y3f{bottom:294.450000px;}
.y56{bottom:296.400000px;}
.y8d{bottom:297.900000px;}
.y4a{bottom:302.250000px;}
.y5d{bottom:304.800000px;}
.y83{bottom:305.100000px;}
.y24{bottom:309.450000px;}
.y96{bottom:318.600000px;}
.y67{bottom:321.900000px;}
.y11{bottom:324.300000px;}
.y35{bottom:328.800000px;}
.y9f{bottom:337.950000px;}
.y7d{bottom:338.400000px;}
.y70{bottom:338.850000px;}
.y23{bottom:339.300000px;}
.y55{bottom:340.200000px;}
.y49{bottom:341.100000px;}
.y5c{bottom:349.500000px;}
.y8{bottom:349.800000px;}
.y78{bottom:352.950000px;}
.y3e{bottom:353.700000px;}
.y8c{bottom:354.600000px;}
.y19{bottom:356.700000px;}
.y1a{bottom:361.200000px;}
.y95{bottom:363.450000px;}
.y10{bottom:366.000000px;}
.y82{bottom:373.050000px;}
.y66{bottom:379.650000px;}
.y54{bottom:382.350000px;}
.y34{bottom:382.800000px;}
.y18{bottom:386.700000px;}
.y48{bottom:388.050000px;}
.y7c{bottom:390.750000px;}
.y6f{bottom:393.450000px;}
.y5b{bottom:394.200000px;}
.y7{bottom:403.200000px;}
.y9e{bottom:405.150000px;}
.y8b{bottom:409.650000px;}
.y3d{bottom:411.000000px;}
.yf{bottom:416.850000px;}
.y94{bottom:418.050000px;}
.y53{bottom:426.000000px;}
.y77{bottom:427.650000px;}
.y81{bottom:430.350000px;}
.y47{bottom:435.000000px;}
.y65{bottom:435.900000px;}
.y33{bottom:444.750000px;}
.y6e{bottom:447.000000px;}
.y6{bottom:456.750000px;}
.y5a{bottom:459.150000px;}
.ye{bottom:466.050000px;}
.y8a{bottom:469.500000px;}
.y3c{bottom:470.250000px;}
.y9d{bottom:472.350000px;}
.y46{bottom:472.650000px;}
.y52{bottom:476.100000px;}
.y93{bottom:477.000000px;}
.y80{bottom:478.950000px;}
.y64{bottom:493.650000px;}
.y32{bottom:496.950000px;}
.y76{bottom:502.350000px;}
.y6d{bottom:508.350000px;}
.y5{bottom:510.150000px;}
.y45{bottom:511.500000px;}
.yd{bottom:516.900000px;}
.y51{bottom:518.400000px;}
.y3b{bottom:527.550000px;}
.y89{bottom:527.700000px;}
.y92{bottom:531.600000px;}
.y7f{bottom:538.200000px;}
.y9c{bottom:539.700000px;}
.y44{bottom:549.150000px;}
.y63{bottom:549.900000px;}
.y31{bottom:550.950000px;}
.y6c{bottom:560.100000px;}
.y50{bottom:562.050000px;}
.y4{bottom:563.550000px;}
.yc{bottom:566.250000px;}
.y75{bottom:577.050000px;}
.y88{bottom:584.400000px;}
.y3a{bottom:586.800000px;}
.y43{bottom:588.150000px;}
.y91{bottom:594.300000px;}
.y7e{bottom:595.500000px;}
.y9b{bottom:596.400000px;}
.y62{bottom:597.450000px;}
.y30{bottom:603.300000px;}
.y6b{bottom:604.050000px;}
.yb{bottom:607.950000px;}
.y4f{bottom:612.150000px;}
.y42{bottom:625.800000px;}
.y59{bottom:633.300000px;}
.y17{bottom:637.350000px;}
.y74{bottom:651.750000px;}
.y87{bottom:652.650000px;}
.y39{bottom:654.750000px;}
.y9a{bottom:654.900000px;}
.y61{bottom:655.200000px;}
.y90{bottom:657.000000px;}
.y2f{bottom:657.150000px;}
.y6a{bottom:657.600000px;}
.ya{bottom:658.800000px;}
.y4e{bottom:662.250000px;}
.y41{bottom:664.650000px;}
.y16{bottom:667.200000px;}
.y3{bottom:733.500000px;}
.y9{bottom:759.450000px;}
.y15{bottom:770.400000px;}
.y2{bottom:807.150000px;}
.hd{height:55.275000px;}
.hf{height:55.875000px;}
.h1{height:55.986328px;}
.h13{height:61.239844px;}
.h11{height:61.839844px;}
.h10{height:64.275000px;}
.h14{height:71.439844px;}
.h4{height:71.656641px;}
.h6{height:72.256641px;}
.h18{height:75.508594px;}
.ha{height:76.647656px;}
.h8{height:77.247656px;}
.h20{height:77.951953px;}
.h7{height:78.257812px;}
.h1e{height:80.664844px;}
.h15{height:83.108203px;}
.h24{height:83.212500px;}
.he{height:83.475000px;}
.h22{height:83.812500px;}
.hb{height:83.916797px;}
.h1a{height:86.908594px;}
.h1c{height:92.325000px;}
.h1b{height:92.925000px;}
.h12{height:93.039844px;}
.h1d{height:93.264844px;}
.h17{height:96.308203px;}
.h5{height:108.256641px;}
.h19{height:113.908594px;}
.h9{height:115.647656px;}
.h21{height:116.951953px;}
.h1f{height:120.864844px;}
.h16{height:123.908203px;}
.h23{height:125.212500px;}
.hc{height:126.516797px;}
.h3{height:139.125000px;}
.h2{height:191.296875px;}
.h0{height:892.500000px;}
.w1{width:1190.400000px;}
.w0{width:1191.000000px;}
.x0{left:0.000000px;}
.xe{left:27.600000px;}
.x1{left:59.550000px;}
.x19{left:67.200000px;}
.xa{left:69.450000px;}
.x16{left:71.100000px;}
.x22{left:72.300000px;}
.x2{left:88.350000px;}
.x1a{left:90.150000px;}
.x1c{left:93.750000px;}
.xd{left:95.700000px;}
.xb{left:99.300000px;}
.x14{left:101.850000px;}
.x17{left:105.900000px;}
.x23{left:110.550000px;}
.x11{left:112.650000px;}
.x24{left:145.350000px;}
.x8{left:172.350000px;}
.x15{left:198.900000px;}
.xc{left:221.100000px;}
.x18{left:266.550000px;}
.x27{left:286.650000px;}
.x1f{left:288.600000px;}
.x1b{left:306.750000px;}
.x21{left:327.000000px;}
.x3{left:333.150000px;}
.x6{left:339.150000px;}
.x13{left:358.350000px;}
.x20{left:388.200000px;}
.x4{left:391.050000px;}
.x9{left:402.450000px;}
.x7{left:415.200000px;}
.x2a{left:418.800000px;}
.x28{left:426.300000px;}
.x5{left:547.350000px;}
.x12{left:605.850000px;}
.x25{left:619.200000px;}
.x26{left:651.000000px;}
.x29{left:652.950000px;}
.x2b{left:690.900000px;}
.x1e{left:810.000000px;}
.xf{left:878.100000px;}
.x10{left:912.000000px;}
.x1d{left:1022.550000px;}
@media print{
.v1{vertical-align:-98.133333pt;}
.va{vertical-align:-61.333333pt;}
.ve{vertical-align:-41.066667pt;}
.v4{vertical-align:-37.866667pt;}
.v9{vertical-align:-36.266667pt;}
.v3{vertical-align:-34.133333pt;}
.v2{vertical-align:-32.533333pt;}
.v7{vertical-align:-27.733333pt;}
.v5{vertical-align:-25.066667pt;}
.vc{vertical-align:-24.000000pt;}
.v8{vertical-align:-19.200000pt;}
.v6{vertical-align:-17.066667pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:33.600000pt;}
.vb{vertical-align:36.800000pt;}
.vf{vertical-align:37.866667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.029867pt;}
.ls1{letter-spacing:0.117333pt;}
.ls4{letter-spacing:0.132800pt;}
.ls14{letter-spacing:0.143467pt;}
.ls12{letter-spacing:0.148267pt;}
.ls0{letter-spacing:0.170667pt;}
.ls10{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.456533pt;}
.ls11{letter-spacing:0.757333pt;}
.ls8{letter-spacing:45.181867pt;}
.ls9{letter-spacing:50.547200pt;}
.ls3{letter-spacing:58.705067pt;}
.lsd{letter-spacing:62.768000pt;}
.ls6{letter-spacing:63.097600pt;}
.ls13{letter-spacing:64.697600pt;}
.lsf{letter-spacing:65.466667pt;}
.lsc{letter-spacing:66.862933pt;}
.ls15{letter-spacing:68.462933pt;}
.ls7{letter-spacing:69.529600pt;}
.lse{letter-spacing:75.020800pt;}
.ws14{word-spacing:-65.002667pt;}
.ws10{word-spacing:-47.274667pt;}
.ws5{word-spacing:-42.990400pt;}
.wsa{word-spacing:-42.104000pt;}
.ws13{word-spacing:-41.218133pt;}
.ws11{word-spacing:-41.069867pt;}
.ws16{word-spacing:-39.883733pt;}
.ws4{word-spacing:-39.297067pt;}
.wse{word-spacing:-38.706133pt;}
.ws2{word-spacing:-37.672000pt;}
.ws1{word-spacing:-36.785600pt;}
.ws9{word-spacing:-32.071467pt;}
.ws6{word-spacing:-28.364800pt;}
.ws3{word-spacing:-26.592000pt;}
.wsc{word-spacing:-24.376000pt;}
.ws15{word-spacing:-23.046400pt;}
.wsf{word-spacing:-22.898667pt;}
.wsd{word-spacing:-22.455467pt;}
.ws8{word-spacing:-16.398400pt;}
.wsb{word-spacing:-0.152000pt;}
.ws7{word-spacing:-0.102400pt;}
.ws12{word-spacing:-0.085867pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-16.296000pt;}
._4{margin-left:-12.202667pt;}
._8{margin-left:-11.019200pt;}
._3{margin-left:-9.728000pt;}
._5{margin-left:-7.488000pt;}
._6{margin-left:-5.472000pt;}
._c{margin-left:-3.754667pt;}
._b{margin-left:-1.945600pt;}
._2{margin-left:-1.024000pt;}
._1{width:1.173333pt;}
._a{width:2.315200pt;}
._7{width:4.544000pt;}
._0{width:1878.933333pt;}
.fsb{font-size:45.866667pt;}
.fse{font-size:51.200000pt;}
.fsd{font-size:59.200000pt;}
.fs4{font-size:59.733333pt;}
.fs13{font-size:61.333333pt;}
.fs7{font-size:62.933333pt;}
.fs10{font-size:66.133333pt;}
.fs19{font-size:66.666667pt;}
.fs9{font-size:68.266667pt;}
.fs0{font-size:74.666667pt;}
.fs17{font-size:76.800000pt;}
.fs15{font-size:81.066667pt;}
.fs16{font-size:82.666667pt;}
.fs1d{font-size:83.200000pt;}
.fs1b{font-size:85.866667pt;}
.fs12{font-size:88.000000pt;}
.fs18{font-size:91.733333pt;}
.fs6{font-size:96.000000pt;}
.fsc{font-size:102.400000pt;}
.fsf{font-size:114.133333pt;}
.fs5{font-size:132.800000pt;}
.fs2{font-size:136.000000pt;}
.fs14{font-size:139.733333pt;}
.fs8{font-size:141.866667pt;}
.fs1c{font-size:143.466667pt;}
.fs1a{font-size:148.266667pt;}
.fs11{font-size:152.000000pt;}
.fs1e{font-size:153.600000pt;}
.fsa{font-size:155.200000pt;}
.fs3{font-size:170.666667pt;}
.fs1{font-size:234.666667pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:9.333333pt;}
.y2d{bottom:35.866667pt;}
.y22{bottom:51.733333pt;}
.y1{bottom:53.600000pt;}
.y2c{bottom:62.533333pt;}
.y21{bottom:78.266667pt;}
.y2b{bottom:89.066667pt;}
.y20{bottom:104.800000pt;}
.y86{bottom:114.933333pt;}
.y2a{bottom:115.600000pt;}
.y99{bottom:124.533333pt;}
.y1f{bottom:131.466667pt;}
.y7b{bottom:133.466667pt;}
.y29{bottom:142.133333pt;}
.y73{bottom:157.333333pt;}
.y1e{bottom:158.133333pt;}
.y38{bottom:158.400000pt;}
.y14{bottom:162.133333pt;}
.y60{bottom:163.200000pt;}
.y8f{bottom:165.466667pt;}
.y4d{bottom:167.200000pt;}
.y85{bottom:167.600000pt;}
.y69{bottom:168.400000pt;}
.y28{bottom:168.800000pt;}
.y58{bottom:182.800000pt;}
.y1d{bottom:184.666667pt;}
.y98{bottom:187.600000pt;}
.y27{bottom:195.333333pt;}
.y5f{bottom:196.666667pt;}
.ya1{bottom:197.866667pt;}
.y13{bottom:199.333333pt;}
.y7a{bottom:199.866667pt;}
.y4c{bottom:200.666667pt;}
.y72{bottom:204.933333pt;}
.y37{bottom:206.400000pt;}
.y40{bottom:210.800000pt;}
.y1c{bottom:211.333333pt;}
.y8e{bottom:215.866667pt;}
.y84{bottom:218.533333pt;}
.y26{bottom:221.866667pt;}
.y57{bottom:223.733333pt;}
.y5e{bottom:231.333333pt;}
.y68{bottom:233.200000pt;}
.y4b{bottom:235.200000pt;}
.y97{bottom:236.133333pt;}
.y1b{bottom:237.866667pt;}
.y12{bottom:244.400000pt;}
.ya0{bottom:248.400000pt;}
.y25{bottom:248.533333pt;}
.y71{bottom:250.933333pt;}
.y36{bottom:252.800000pt;}
.y79{bottom:255.866667pt;}
.y3f{bottom:261.733333pt;}
.y56{bottom:263.466667pt;}
.y8d{bottom:264.800000pt;}
.y4a{bottom:268.666667pt;}
.y5d{bottom:270.933333pt;}
.y83{bottom:271.200000pt;}
.y24{bottom:275.066667pt;}
.y96{bottom:283.200000pt;}
.y67{bottom:286.133333pt;}
.y11{bottom:288.266667pt;}
.y35{bottom:292.266667pt;}
.y9f{bottom:300.400000pt;}
.y7d{bottom:300.800000pt;}
.y70{bottom:301.200000pt;}
.y23{bottom:301.600000pt;}
.y55{bottom:302.400000pt;}
.y49{bottom:303.200000pt;}
.y5c{bottom:310.666667pt;}
.y8{bottom:310.933333pt;}
.y78{bottom:313.733333pt;}
.y3e{bottom:314.400000pt;}
.y8c{bottom:315.200000pt;}
.y19{bottom:317.066667pt;}
.y1a{bottom:321.066667pt;}
.y95{bottom:323.066667pt;}
.y10{bottom:325.333333pt;}
.y82{bottom:331.600000pt;}
.y66{bottom:337.466667pt;}
.y54{bottom:339.866667pt;}
.y34{bottom:340.266667pt;}
.y18{bottom:343.733333pt;}
.y48{bottom:344.933333pt;}
.y7c{bottom:347.333333pt;}
.y6f{bottom:349.733333pt;}
.y5b{bottom:350.400000pt;}
.y7{bottom:358.400000pt;}
.y9e{bottom:360.133333pt;}
.y8b{bottom:364.133333pt;}
.y3d{bottom:365.333333pt;}
.yf{bottom:370.533333pt;}
.y94{bottom:371.600000pt;}
.y53{bottom:378.666667pt;}
.y77{bottom:380.133333pt;}
.y81{bottom:382.533333pt;}
.y47{bottom:386.666667pt;}
.y65{bottom:387.466667pt;}
.y33{bottom:395.333333pt;}
.y6e{bottom:397.333333pt;}
.y6{bottom:406.000000pt;}
.y5a{bottom:408.133333pt;}
.ye{bottom:414.266667pt;}
.y8a{bottom:417.333333pt;}
.y3c{bottom:418.000000pt;}
.y9d{bottom:419.866667pt;}
.y46{bottom:420.133333pt;}
.y52{bottom:423.200000pt;}
.y93{bottom:424.000000pt;}
.y80{bottom:425.733333pt;}
.y64{bottom:438.800000pt;}
.y32{bottom:441.733333pt;}
.y76{bottom:446.533333pt;}
.y6d{bottom:451.866667pt;}
.y5{bottom:453.466667pt;}
.y45{bottom:454.666667pt;}
.yd{bottom:459.466667pt;}
.y51{bottom:460.800000pt;}
.y3b{bottom:468.933333pt;}
.y89{bottom:469.066667pt;}
.y92{bottom:472.533333pt;}
.y7f{bottom:478.400000pt;}
.y9c{bottom:479.733333pt;}
.y44{bottom:488.133333pt;}
.y63{bottom:488.800000pt;}
.y31{bottom:489.733333pt;}
.y6c{bottom:497.866667pt;}
.y50{bottom:499.600000pt;}
.y4{bottom:500.933333pt;}
.yc{bottom:503.333333pt;}
.y75{bottom:512.933333pt;}
.y88{bottom:519.466667pt;}
.y3a{bottom:521.600000pt;}
.y43{bottom:522.800000pt;}
.y91{bottom:528.266667pt;}
.y7e{bottom:529.333333pt;}
.y9b{bottom:530.133333pt;}
.y62{bottom:531.066667pt;}
.y30{bottom:536.266667pt;}
.y6b{bottom:536.933333pt;}
.yb{bottom:540.400000pt;}
.y4f{bottom:544.133333pt;}
.y42{bottom:556.266667pt;}
.y59{bottom:562.933333pt;}
.y17{bottom:566.533333pt;}
.y74{bottom:579.333333pt;}
.y87{bottom:580.133333pt;}
.y39{bottom:582.000000pt;}
.y9a{bottom:582.133333pt;}
.y61{bottom:582.400000pt;}
.y90{bottom:584.000000pt;}
.y2f{bottom:584.133333pt;}
.y6a{bottom:584.533333pt;}
.ya{bottom:585.600000pt;}
.y4e{bottom:588.666667pt;}
.y41{bottom:590.800000pt;}
.y16{bottom:593.066667pt;}
.y3{bottom:652.000000pt;}
.y9{bottom:675.066667pt;}
.y15{bottom:684.800000pt;}
.y2{bottom:717.466667pt;}
.hd{height:49.133333pt;}
.hf{height:49.666667pt;}
.h1{height:49.765625pt;}
.h13{height:54.435417pt;}
.h11{height:54.968750pt;}
.h10{height:57.133333pt;}
.h14{height:63.502083pt;}
.h4{height:63.694792pt;}
.h6{height:64.228125pt;}
.h18{height:67.118750pt;}
.ha{height:68.131250pt;}
.h8{height:68.664583pt;}
.h20{height:69.290625pt;}
.h7{height:69.562500pt;}
.h1e{height:71.702083pt;}
.h15{height:73.873958pt;}
.h24{height:73.966667pt;}
.he{height:74.200000pt;}
.h22{height:74.500000pt;}
.hb{height:74.592708pt;}
.h1a{height:77.252083pt;}
.h1c{height:82.066667pt;}
.h1b{height:82.600000pt;}
.h12{height:82.702083pt;}
.h1d{height:82.902083pt;}
.h17{height:85.607292pt;}
.h5{height:96.228125pt;}
.h19{height:101.252083pt;}
.h9{height:102.797917pt;}
.h21{height:103.957292pt;}
.h1f{height:107.435417pt;}
.h16{height:110.140625pt;}
.h23{height:111.300000pt;}
.hc{height:112.459375pt;}
.h3{height:123.666667pt;}
.h2{height:170.041667pt;}
.h0{height:793.333333pt;}
.w1{width:1058.133333pt;}
.w0{width:1058.666667pt;}
.x0{left:0.000000pt;}
.xe{left:24.533333pt;}
.x1{left:52.933333pt;}
.x19{left:59.733333pt;}
.xa{left:61.733333pt;}
.x16{left:63.200000pt;}
.x22{left:64.266667pt;}
.x2{left:78.533333pt;}
.x1a{left:80.133333pt;}
.x1c{left:83.333333pt;}
.xd{left:85.066667pt;}
.xb{left:88.266667pt;}
.x14{left:90.533333pt;}
.x17{left:94.133333pt;}
.x23{left:98.266667pt;}
.x11{left:100.133333pt;}
.x24{left:129.200000pt;}
.x8{left:153.200000pt;}
.x15{left:176.800000pt;}
.xc{left:196.533333pt;}
.x18{left:236.933333pt;}
.x27{left:254.800000pt;}
.x1f{left:256.533333pt;}
.x1b{left:272.666667pt;}
.x21{left:290.666667pt;}
.x3{left:296.133333pt;}
.x6{left:301.466667pt;}
.x13{left:318.533333pt;}
.x20{left:345.066667pt;}
.x4{left:347.600000pt;}
.x9{left:357.733333pt;}
.x7{left:369.066667pt;}
.x2a{left:372.266667pt;}
.x28{left:378.933333pt;}
.x5{left:486.533333pt;}
.x12{left:538.533333pt;}
.x25{left:550.400000pt;}
.x26{left:578.666667pt;}
.x29{left:580.400000pt;}
.x2b{left:614.133333pt;}
.x1e{left:720.000000pt;}
.xf{left:780.533333pt;}
.x10{left:810.666667pt;}
.x1d{left:908.933333pt;}
}




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