
    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_bdb9bb8084911991cfa48719.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_4d1b0f813d7a92608eef49ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_00000ccaa5eda4c9cf3b6378.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_95a38d1a3cf08c1fe2e559d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966797;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_709e149b6ca09680734f9d0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.072000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:136.620000px;}
.v2{vertical-align:176.100000px;}
.ls12{letter-spacing:-0.319800px;}
.ls9{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.280200px;}
.ls14{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.230400px;}
.lsc{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.132000px;}
.ls15{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.175800px;}
.lsb{letter-spacing:20.448000px;}
.lse{letter-spacing:46.325376px;}
.lsa{letter-spacing:47.165376px;}
.ls2{letter-spacing:57.600000px;}
.ls3{letter-spacing:65.877600px;}
.ls5{letter-spacing:65.916000px;}
.ls4{letter-spacing:65.928000px;}
.ls6{letter-spacing:70.161600px;}
.ls10{letter-spacing:70.200000px;}
.ls7{letter-spacing:70.212000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-115.430400px;}
.ws18{word-spacing:-115.344000px;}
.wsf{word-spacing:-46.677312px;}
.wse{word-spacing:-40.072032px;}
.ws3{word-spacing:-40.032000px;}
.ws4{word-spacing:-36.669312px;}
.wsa{word-spacing:-33.466752px;}
.ws2{word-spacing:-33.426720px;}
.ws10{word-spacing:-33.146520px;}
.ws13{word-spacing:-30.064032px;}
.ws7{word-spacing:-30.024000px;}
.ws14{word-spacing:-29.932032px;}
.ws12{word-spacing:-29.744232px;}
.ws9{word-spacing:-28.422720px;}
.ws0{word-spacing:-26.658720px;}
.wsb{word-spacing:-20.176032px;}
.wsc{word-spacing:-20.056032px;}
.ws8{word-spacing:-20.016000px;}
.ws16{word-spacing:-16.613280px;}
.ws15{word-spacing:-16.353480px;}
.ws11{word-spacing:-2.280240px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:329.184000px;}
.ws5{word-spacing:410.237280px;}
.ws6{word-spacing:432.371520px;}
._5{margin-left:-15.961824px;}
._a{margin-left:-13.998672px;}
._b{margin-left:-12.166560px;}
._1{margin-left:-11.012400px;}
._7{margin-left:-7.683840px;}
._4{margin-left:-5.937120px;}
._3{margin-left:-3.926160px;}
._6{margin-left:-2.738736px;}
._2{margin-left:-1.532160px;}
._0{width:1.915200px;}
._8{width:3.914064px;}
._f{width:30.216720px;}
._9{width:31.944720px;}
._c{width:32.954736px;}
._d{width:39.012000px;}
._10{width:41.352000px;}
._e{width:531.728400px;}
.fc6{color:transparent;}
.fc5{color:rgb(26,102,23);}
.fc4{color:rgb(0,176,240);}
.fc3{color:rgb(104,104,104);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs13{font-size:59.760000px;}
.fsc{font-size:72.000000px;}
.fs10{font-size:72.144000px;}
.fs0{font-size:95.760000px;}
.fse{font-size:102.240000px;}
.fsf{font-size:102.384000px;}
.fsb{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs6{font-size:120.240000px;}
.fs5{font-size:120.384000px;}
.fs8{font-size:131.760000px;}
.fs9{font-size:131.904000px;}
.fs4{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fsd{font-size:167.760000px;}
.fs3{font-size:167.904000px;}
.fs16{font-size:192.240000px;}
.fs15{font-size:192.384000px;}
.fs14{font-size:239.904000px;}
.fs2{font-size:288.000000px;}
.fs1{font-size:288.144000px;}
.fs12{font-size:352.080000px;}
.fs11{font-size:352.224000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:16.344000px;}
.y89{bottom:16.668000px;}
.y88{bottom:34.668000px;}
.y61{bottom:36.504000px;}
.y56{bottom:51.372000px;}
.y60{bottom:58.140000px;}
.y6e{bottom:58.572000px;}
.y47{bottom:69.444000px;}
.y8e{bottom:75.276000px;}
.y5f{bottom:79.740000px;}
.y17{bottom:91.692000px;}
.y55{bottom:92.772000px;}
.y6d{bottom:99.972000px;}
.y46{bottom:100.044000px;}
.y11{bottom:112.356000px;}
.y30{bottom:114.372000px;}
.y80{bottom:118.152000px;}
.y54{bottom:125.172000px;}
.y16{bottom:127.692000px;}
.y45{bottom:130.644000px;}
.y1d{bottom:131.256000px;}
.y8d{bottom:141.876000px;}
.y6c{bottom:142.092000px;}
.y62{bottom:145.548000px;}
.y2f{bottom:146.772000px;}
.y10{bottom:155.595000px;}
.y44{bottom:161.250000px;}
.y7f{bottom:161.355000px;}
.y5{bottom:170.310000px;}
.y4b{bottom:176.250000px;}
.y53{bottom:176.295000px;}
.y15{bottom:181.695000px;}
.y5d{bottom:185.430000px;}
.y2e{bottom:188.175000px;}
.y43{bottom:191.850000px;}
.y35{bottom:192.060000px;}
.y6b{bottom:192.240000px;}
.yf{bottom:198.795000px;}
.y4{bottom:203.610000px;}
.y8c{bottom:208.515000px;}
.y34{bottom:213.660000px;}
.y2d{bottom:220.605000px;}
.y7e{bottom:221.325000px;}
.y42{bottom:222.480000px;}
.y25{bottom:226.695000px;}
.y5c{bottom:228.630000px;}
.y33{bottom:235.260000px;}
.y6a{bottom:235.440000px;}
.y3{bottom:236.910000px;}
.y52{bottom:238.605000px;}
.y70{bottom:240.300000px;}
.y14{bottom:245.985000px;}
.y41{bottom:253.080000px;}
.y32{bottom:256.860000px;}
.y7d{bottom:257.325000px;}
.ye{bottom:259.995000px;}
.y2c{bottom:262.005000px;}
.y67{bottom:268.560000px;}
.y24{bottom:269.895000px;}
.y2{bottom:270.210000px;}
.y51{bottom:271.005000px;}
.y5b{bottom:271.875000px;}
.y31{bottom:278.460000px;}
.y69{bottom:278.670000px;}
.y6f{bottom:283.530000px;}
.y40{bottom:283.680000px;}
.y1c{bottom:292.890000px;}
.y7c{bottom:302.325000px;}
.y66{bottom:304.590000px;}
.y1f{bottom:309.810000px;}
.y50{bottom:312.405000px;}
.y23{bottom:313.125000px;}
.y5a{bottom:315.075000px;}
.y68{bottom:321.870000px;}
.y1b{bottom:326.910000px;}
.y1a{bottom:326.955000px;}
.y3f{bottom:332.280000px;}
.y1{bottom:332.355000px;}
.y65{bottom:340.590000px;}
.y1e{bottom:344.055000px;}
.y4f{bottom:344.805000px;}
.y7b{bottom:347.325000px;}
.y4a{bottom:350.355000px;}
.y13{bottom:350.925000px;}
.y85{bottom:353.850000px;}
.y22{bottom:356.325000px;}
.y59{bottom:358.275000px;}
.y3e{bottom:362.880000px;}
.y63{bottom:368.565000px;}
.y64{bottom:376.590000px;}
.y77{bottom:381.630000px;}
.y2b{bottom:384.450000px;}
.y84{bottom:386.250000px;}
.yd{bottom:386.970000px;}
.y4e{bottom:395.970000px;}
.y21{bottom:399.525000px;}
.y58{bottom:401.505000px;}
.y7a{bottom:402.630000px;}
.y74{bottom:403.230000px;}
.y3d{bottom:411.510000px;}
.y2a{bottom:416.850000px;}
.y7{bottom:420.270000px;}
.yc{bottom:422.970000px;}
.y76{bottom:424.830000px;}
.y83{bottom:436.650000px;}
.y12{bottom:440.970000px;}
.y3c{bottom:442.110000px;}
.y20{bottom:442.770000px;}
.y57{bottom:444.705000px;}
.y73{bottom:446.430000px;}
.y29{bottom:458.250000px;}
.y79{bottom:463.830000px;}
.y75{bottom:468.030000px;}
.y3b{bottom:472.710000px;}
.yb{bottom:476.970000px;}
.y82{bottom:487.050000px;}
.y28{bottom:490.650000px;}
.y49{bottom:491.220000px;}
.y8b{bottom:497.415000px;}
.y6{bottom:498.060000px;}
.y4d{bottom:499.650000px;}
.y3a{bottom:503.310000px;}
.y19{bottom:505.545000px;}
.y78{bottom:507.030000px;}
.ya{bottom:513.000000px;}
.y27{bottom:532.080000px;}
.y39{bottom:533.955000px;}
.y5e{bottom:534.060000px;}
.y18{bottom:539.745000px;}
.y81{bottom:547.200000px;}
.y72{bottom:549.465000px;}
.y38{bottom:564.555000px;}
.y9{bottom:577.260000px;}
.y26{bottom:583.200000px;}
.y71{bottom:592.665000px;}
.y87{bottom:605.265000px;}
.y48{bottom:617.580000px;}
.y37{bottom:622.155000px;}
.y36{bottom:684.000000px;}
.y8a{bottom:703.650000px;}
.y86{bottom:710.970000px;}
.y8{bottom:729.390000px;}
.h1a{height:62.327813px;}
.h13{height:74.733047px;}
.h12{height:74.838305px;}
.hf{height:75.093750px;}
.h15{height:75.243937px;}
.h9{height:87.890273px;}
.h1{height:99.874688px;}
.h11{height:106.633125px;}
.h14{height:106.783312px;}
.h17{height:108.281250px;}
.he{height:112.640625px;}
.hd{height:112.790813px;}
.h7{height:125.406562px;}
.h6{height:125.556750px;}
.ha{height:137.421562px;}
.hb{height:137.571750px;}
.h5{height:150.187500px;}
.h8{height:150.337688px;}
.h1d{height:167.633280px;}
.h1c{height:167.758848px;}
.h10{height:174.968437px;}
.h4{height:175.118625px;}
.h1b{height:250.212375px;}
.hc{height:274.041562px;}
.h3{height:300.375000px;}
.h2{height:300.525188px;}
.h16{height:301.506563px;}
.h19{height:367.208438px;}
.h18{height:367.358625px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3b{left:52.235979px;}
.x3{left:92.951979px;}
.x18{left:94.895979px;}
.x40{left:109.871979px;}
.x25{left:119.951979px;}
.x4{left:146.951979px;}
.x8{left:152.204979px;}
.x6{left:160.019979px;}
.x5{left:173.954979px;}
.x29{left:175.529979px;}
.x36{left:178.409979px;}
.x37{left:188.489979px;}
.x2{left:195.629979px;}
.x1{left:200.954979px;}
.xb{left:301.529979px;}
.x3c{left:304.994979px;}
.x3f{left:351.074979px;}
.x2a{left:361.334979px;}
.x1d{left:375.329979px;}
.x26{left:377.459979px;}
.x7{left:426.029979px;}
.xa{left:438.809979px;}
.x28{left:449.099979px;}
.x9{left:450.869979px;}
.x3e{left:527.939979px;}
.x27{left:533.909979px;}
.x33{left:591.914979px;}
.x32{left:601.094979px;}
.x34{left:604.004979px;}
.x35{left:605.264979px;}
.x2b{left:665.429979px;}
.x2d{left:686.309979px;}
.xd{left:692.609979px;}
.xc{left:704.489979px;}
.x2c{left:746.069979px;}
.x38{left:927.284979px;}
.x3a{left:955.364979px;}
.x39{left:970.484979px;}
.x10{left:980.429979px;}
.xe{left:986.189979px;}
.x11{left:1033.529979px;}
.xf{left:1053.359979px;}
.x12{left:1072.259979px;}
.x22{left:1085.114979px;}
.x1f{left:1087.994979px;}
.x20{left:1089.974979px;}
.x1e{left:1102.034979px;}
.x23{left:1105.994979px;}
.x2f{left:1114.049979px;}
.x2e{left:1117.829979px;}
.x21{left:1123.094979px;}
.x31{left:1135.829979px;}
.x30{left:1140.149979px;}
.x3d{left:1142.069979px;}
.x19{left:1144.004979px;}
.x1a{left:1157.324979px;}
.x24{left:1158.914979px;}
.x1b{left:1177.124979px;}
.x1c{left:1182.164979px;}
.x14{left:1183.529979px;}
.x13{left:1190.909979px;}
.x17{left:1214.669979px;}
.x15{left:1216.469979px;}
.x16{left:1244.009979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:121.440000pt;}
.v2{vertical-align:156.533333pt;}
.ls12{letter-spacing:-0.284267pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.249067pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.204800pt;}
.lsc{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.117333pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.156267pt;}
.lsb{letter-spacing:18.176000pt;}
.lse{letter-spacing:41.178112pt;}
.lsa{letter-spacing:41.924779pt;}
.ls2{letter-spacing:51.200000pt;}
.ls3{letter-spacing:58.557867pt;}
.ls5{letter-spacing:58.592000pt;}
.ls4{letter-spacing:58.602667pt;}
.ls6{letter-spacing:62.365867pt;}
.ls10{letter-spacing:62.400000pt;}
.ls7{letter-spacing:62.410667pt;}
.ws17{word-spacing:-102.604800pt;}
.ws18{word-spacing:-102.528000pt;}
.wsf{word-spacing:-41.490944pt;}
.wse{word-spacing:-35.619584pt;}
.ws3{word-spacing:-35.584000pt;}
.ws4{word-spacing:-32.594944pt;}
.wsa{word-spacing:-29.748224pt;}
.ws2{word-spacing:-29.712640pt;}
.ws10{word-spacing:-29.463573pt;}
.ws13{word-spacing:-26.723584pt;}
.ws7{word-spacing:-26.688000pt;}
.ws14{word-spacing:-26.606251pt;}
.ws12{word-spacing:-26.439317pt;}
.ws9{word-spacing:-25.264640pt;}
.ws0{word-spacing:-23.696640pt;}
.wsb{word-spacing:-17.934251pt;}
.wsc{word-spacing:-17.827584pt;}
.ws8{word-spacing:-17.792000pt;}
.ws16{word-spacing:-14.767360pt;}
.ws15{word-spacing:-14.536427pt;}
.ws11{word-spacing:-2.026880pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:292.608000pt;}
.ws5{word-spacing:364.655360pt;}
.ws6{word-spacing:384.330240pt;}
._5{margin-left:-14.188288pt;}
._a{margin-left:-12.443264pt;}
._b{margin-left:-10.814720pt;}
._1{margin-left:-9.788800pt;}
._7{margin-left:-6.830080pt;}
._4{margin-left:-5.277440pt;}
._3{margin-left:-3.489920pt;}
._6{margin-left:-2.434432pt;}
._2{margin-left:-1.361920pt;}
._0{width:1.702400pt;}
._8{width:3.479168pt;}
._f{width:26.859307pt;}
._9{width:28.395307pt;}
._c{width:29.293099pt;}
._d{width:34.677333pt;}
._10{width:36.757333pt;}
._e{width:472.647467pt;}
.fs13{font-size:53.120000pt;}
.fsc{font-size:64.000000pt;}
.fs10{font-size:64.128000pt;}
.fs0{font-size:85.120000pt;}
.fse{font-size:90.880000pt;}
.fsf{font-size:91.008000pt;}
.fsb{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs6{font-size:106.880000pt;}
.fs5{font-size:107.008000pt;}
.fs8{font-size:117.120000pt;}
.fs9{font-size:117.248000pt;}
.fs4{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fsd{font-size:149.120000pt;}
.fs3{font-size:149.248000pt;}
.fs16{font-size:170.880000pt;}
.fs15{font-size:171.008000pt;}
.fs14{font-size:213.248000pt;}
.fs2{font-size:256.000000pt;}
.fs1{font-size:256.128000pt;}
.fs12{font-size:312.960000pt;}
.fs11{font-size:313.088000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:14.528000pt;}
.y89{bottom:14.816000pt;}
.y88{bottom:30.816000pt;}
.y61{bottom:32.448000pt;}
.y56{bottom:45.664000pt;}
.y60{bottom:51.680000pt;}
.y6e{bottom:52.064000pt;}
.y47{bottom:61.728000pt;}
.y8e{bottom:66.912000pt;}
.y5f{bottom:70.880000pt;}
.y17{bottom:81.504000pt;}
.y55{bottom:82.464000pt;}
.y6d{bottom:88.864000pt;}
.y46{bottom:88.928000pt;}
.y11{bottom:99.872000pt;}
.y30{bottom:101.664000pt;}
.y80{bottom:105.024000pt;}
.y54{bottom:111.264000pt;}
.y16{bottom:113.504000pt;}
.y45{bottom:116.128000pt;}
.y1d{bottom:116.672000pt;}
.y8d{bottom:126.112000pt;}
.y6c{bottom:126.304000pt;}
.y62{bottom:129.376000pt;}
.y2f{bottom:130.464000pt;}
.y10{bottom:138.306667pt;}
.y44{bottom:143.333333pt;}
.y7f{bottom:143.426667pt;}
.y5{bottom:151.386667pt;}
.y4b{bottom:156.666667pt;}
.y53{bottom:156.706667pt;}
.y15{bottom:161.506667pt;}
.y5d{bottom:164.826667pt;}
.y2e{bottom:167.266667pt;}
.y43{bottom:170.533333pt;}
.y35{bottom:170.720000pt;}
.y6b{bottom:170.880000pt;}
.yf{bottom:176.706667pt;}
.y4{bottom:180.986667pt;}
.y8c{bottom:185.346667pt;}
.y34{bottom:189.920000pt;}
.y2d{bottom:196.093333pt;}
.y7e{bottom:196.733333pt;}
.y42{bottom:197.760000pt;}
.y25{bottom:201.506667pt;}
.y5c{bottom:203.226667pt;}
.y33{bottom:209.120000pt;}
.y6a{bottom:209.280000pt;}
.y3{bottom:210.586667pt;}
.y52{bottom:212.093333pt;}
.y70{bottom:213.600000pt;}
.y14{bottom:218.653333pt;}
.y41{bottom:224.960000pt;}
.y32{bottom:228.320000pt;}
.y7d{bottom:228.733333pt;}
.ye{bottom:231.106667pt;}
.y2c{bottom:232.893333pt;}
.y67{bottom:238.720000pt;}
.y24{bottom:239.906667pt;}
.y2{bottom:240.186667pt;}
.y51{bottom:240.893333pt;}
.y5b{bottom:241.666667pt;}
.y31{bottom:247.520000pt;}
.y69{bottom:247.706667pt;}
.y6f{bottom:252.026667pt;}
.y40{bottom:252.160000pt;}
.y1c{bottom:260.346667pt;}
.y7c{bottom:268.733333pt;}
.y66{bottom:270.746667pt;}
.y1f{bottom:275.386667pt;}
.y50{bottom:277.693333pt;}
.y23{bottom:278.333333pt;}
.y5a{bottom:280.066667pt;}
.y68{bottom:286.106667pt;}
.y1b{bottom:290.586667pt;}
.y1a{bottom:290.626667pt;}
.y3f{bottom:295.360000pt;}
.y1{bottom:295.426667pt;}
.y65{bottom:302.746667pt;}
.y1e{bottom:305.826667pt;}
.y4f{bottom:306.493333pt;}
.y7b{bottom:308.733333pt;}
.y4a{bottom:311.426667pt;}
.y13{bottom:311.933333pt;}
.y85{bottom:314.533333pt;}
.y22{bottom:316.733333pt;}
.y59{bottom:318.466667pt;}
.y3e{bottom:322.560000pt;}
.y63{bottom:327.613333pt;}
.y64{bottom:334.746667pt;}
.y77{bottom:339.226667pt;}
.y2b{bottom:341.733333pt;}
.y84{bottom:343.333333pt;}
.yd{bottom:343.973333pt;}
.y4e{bottom:351.973333pt;}
.y21{bottom:355.133333pt;}
.y58{bottom:356.893333pt;}
.y7a{bottom:357.893333pt;}
.y74{bottom:358.426667pt;}
.y3d{bottom:365.786667pt;}
.y2a{bottom:370.533333pt;}
.y7{bottom:373.573333pt;}
.yc{bottom:375.973333pt;}
.y76{bottom:377.626667pt;}
.y83{bottom:388.133333pt;}
.y12{bottom:391.973333pt;}
.y3c{bottom:392.986667pt;}
.y20{bottom:393.573333pt;}
.y57{bottom:395.293333pt;}
.y73{bottom:396.826667pt;}
.y29{bottom:407.333333pt;}
.y79{bottom:412.293333pt;}
.y75{bottom:416.026667pt;}
.y3b{bottom:420.186667pt;}
.yb{bottom:423.973333pt;}
.y82{bottom:432.933333pt;}
.y28{bottom:436.133333pt;}
.y49{bottom:436.640000pt;}
.y8b{bottom:442.146667pt;}
.y6{bottom:442.720000pt;}
.y4d{bottom:444.133333pt;}
.y3a{bottom:447.386667pt;}
.y19{bottom:449.373333pt;}
.y78{bottom:450.693333pt;}
.ya{bottom:456.000000pt;}
.y27{bottom:472.960000pt;}
.y39{bottom:474.626667pt;}
.y5e{bottom:474.720000pt;}
.y18{bottom:479.773333pt;}
.y81{bottom:486.400000pt;}
.y72{bottom:488.413333pt;}
.y38{bottom:501.826667pt;}
.y9{bottom:513.120000pt;}
.y26{bottom:518.400000pt;}
.y71{bottom:526.813333pt;}
.y87{bottom:538.013333pt;}
.y48{bottom:548.960000pt;}
.y37{bottom:553.026667pt;}
.y36{bottom:608.000000pt;}
.y8a{bottom:625.466667pt;}
.y86{bottom:631.973333pt;}
.y8{bottom:648.346667pt;}
.h1a{height:55.402500pt;}
.h13{height:66.429375pt;}
.h12{height:66.522937pt;}
.hf{height:66.750000pt;}
.h15{height:66.883500pt;}
.h9{height:78.124687pt;}
.h1{height:88.777500pt;}
.h11{height:94.785000pt;}
.h14{height:94.918500pt;}
.h17{height:96.250000pt;}
.he{height:100.125000pt;}
.hd{height:100.258500pt;}
.h7{height:111.472500pt;}
.h6{height:111.606000pt;}
.ha{height:122.152500pt;}
.hb{height:122.286000pt;}
.h5{height:133.500000pt;}
.h8{height:133.633500pt;}
.h1d{height:149.007360pt;}
.h1c{height:149.118976pt;}
.h10{height:155.527500pt;}
.h4{height:155.661000pt;}
.h1b{height:222.411000pt;}
.hc{height:243.592500pt;}
.h3{height:267.000000pt;}
.h2{height:267.133500pt;}
.h16{height:268.005833pt;}
.h19{height:326.407500pt;}
.h18{height:326.541000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:46.431981pt;}
.x3{left:82.623981pt;}
.x18{left:84.351981pt;}
.x40{left:97.663981pt;}
.x25{left:106.623981pt;}
.x4{left:130.623981pt;}
.x8{left:135.293314pt;}
.x6{left:142.239981pt;}
.x5{left:154.626648pt;}
.x29{left:156.026648pt;}
.x36{left:158.586648pt;}
.x37{left:167.546648pt;}
.x2{left:173.893314pt;}
.x1{left:178.626648pt;}
.xb{left:268.026648pt;}
.x3c{left:271.106648pt;}
.x3f{left:312.066648pt;}
.x2a{left:321.186648pt;}
.x1d{left:333.626648pt;}
.x26{left:335.519981pt;}
.x7{left:378.693314pt;}
.xa{left:390.053314pt;}
.x28{left:399.199981pt;}
.x9{left:400.773314pt;}
.x3e{left:469.279981pt;}
.x27{left:474.586648pt;}
.x33{left:526.146648pt;}
.x32{left:534.306648pt;}
.x34{left:536.893314pt;}
.x35{left:538.013314pt;}
.x2b{left:591.493314pt;}
.x2d{left:610.053314pt;}
.xd{left:615.653314pt;}
.xc{left:626.213314pt;}
.x2c{left:663.173314pt;}
.x38{left:824.253314pt;}
.x3a{left:849.213314pt;}
.x39{left:862.653314pt;}
.x10{left:871.493314pt;}
.xe{left:876.613314pt;}
.x11{left:918.693314pt;}
.xf{left:936.319981pt;}
.x12{left:953.119981pt;}
.x22{left:964.546648pt;}
.x1f{left:967.106648pt;}
.x20{left:968.866648pt;}
.x1e{left:979.586648pt;}
.x23{left:983.106648pt;}
.x2f{left:990.266648pt;}
.x2e{left:993.626648pt;}
.x21{left:998.306648pt;}
.x31{left:1009.626648pt;}
.x30{left:1013.466648pt;}
.x3d{left:1015.173314pt;}
.x19{left:1016.893314pt;}
.x1a{left:1028.733314pt;}
.x24{left:1030.146648pt;}
.x1b{left:1046.333314pt;}
.x1c{left:1050.813314pt;}
.x14{left:1052.026648pt;}
.x13{left:1058.586648pt;}
.x17{left:1079.706648pt;}
.x15{left:1081.306648pt;}
.x16{left:1105.786648pt;}
}




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