
    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_58c611cc641415be8647e7c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.092000;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_a8c81d702a99e3fd904a2d76.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.092000;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_a46c2f211013f8b29392a1b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010000;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);}
.v1{vertical-align:-95.340000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.264000px;}
.ls6{letter-spacing:-0.219000px;}
.ls5{letter-spacing:-0.187200px;}
.ls1e{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.166800px;}
.ls22{letter-spacing:-0.120000px;}
.ls21{letter-spacing:-0.115200px;}
.ls1d{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.072600px;}
.ls13{letter-spacing:-0.059040px;}
.ls24{letter-spacing:-0.039600px;}
.ls23{letter-spacing:-0.019440px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.006060px;}
.ls10{letter-spacing:0.028800px;}
.ls16{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.112200px;}
.ls20{letter-spacing:0.165000px;}
.lsb{letter-spacing:0.171600px;}
.ls17{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.204000px;}
.ls14{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.282000px;}
.ls19{letter-spacing:0.328320px;}
.ls12{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.363600px;}
.ls15{letter-spacing:0.507600px;}
.ls0{letter-spacing:14.371200px;}
.ls1a{letter-spacing:20.324880px;}
.ls1b{letter-spacing:20.548800px;}
.ls1c{letter-spacing:21.268800px;}
.ls4{letter-spacing:93.873600px;}
.ls3{letter-spacing:93.924000px;}
.lse{letter-spacing:95.889600px;}
.lsd{letter-spacing:95.940000px;}
.ls18{letter-spacing:100.224000px;}
.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;}
}
.ws0{word-spacing:-105.966480px;}
.ws31{word-spacing:-71.280000px;}
.ws1c{word-spacing:-21.574800px;}
.wsc{word-spacing:-21.430800px;}
.ws26{word-spacing:-21.238800px;}
.wsa{word-spacing:-21.179400px;}
.ws4{word-spacing:-21.098880px;}
.ws18{word-spacing:-21.096000px;}
.ws3{word-spacing:-21.067200px;}
.ws2e{word-spacing:-21.047760px;}
.ws32{word-spacing:-21.027600px;}
.ws2a{word-spacing:-20.952000px;}
.ws20{word-spacing:-19.890000px;}
.ws11{word-spacing:-19.800000px;}
.ws23{word-spacing:-19.620000px;}
.ws10{word-spacing:-19.530000px;}
.ws21{word-spacing:-2.430000px;}
.ws1e{word-spacing:-1.890000px;}
.ws1{word-spacing:-1.853280px;}
.ws29{word-spacing:-1.455840px;}
.ws16{word-spacing:-0.927840px;}
.ws1a{word-spacing:-0.824400px;}
.ws28{word-spacing:-0.703440px;}
.ws2b{word-spacing:-0.636480px;}
.ws1b{word-spacing:-0.625680px;}
.ws15{word-spacing:-0.604800px;}
.ws19{word-spacing:-0.603360px;}
.ws17{word-spacing:-0.550800px;}
.ws2d{word-spacing:-0.276480px;}
.wsb{word-spacing:-0.252720px;}
.ws24{word-spacing:-0.216000px;}
.wse{word-spacing:-0.192000px;}
.ws1d{word-spacing:-0.191040px;}
.ws30{word-spacing:-0.151488px;}
.ws7{word-spacing:-0.101964px;}
.ws8{word-spacing:-0.095904px;}
.ws6{word-spacing:-0.095760px;}
.ws12{word-spacing:-0.032400px;}
.ws2c{word-spacing:-0.022320px;}
.ws2{word-spacing:0.000000px;}
.ws1f{word-spacing:0.144000px;}
.ws25{word-spacing:0.270000px;}
.ws2f{word-spacing:0.272160px;}
.ws14{word-spacing:0.370440px;}
.wsf{word-spacing:0.414000px;}
.wsd{word-spacing:0.612360px;}
.ws22{word-spacing:0.990000px;}
.ws13{word-spacing:1.101600px;}
.ws27{word-spacing:1.225440px;}
.ws5{word-spacing:20.782800px;}
.ws9{word-spacing:527.415840px;}
._0{margin-left:-1.728000px;}
._1{width:1.191600px;}
._2{width:2.336400px;}
._4{width:17.696400px;}
._5{width:19.476000px;}
._3{width:22.296240px;}
._6{width:1476.773760px;}
.fc3{color:rgb(192,212,253);}
.fc1{color:rgb(177,177,181);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:66.240000px;}
.fsc{font-size:77.760000px;}
.fs9{font-size:90.000000px;}
.fsa{font-size:90.144000px;}
.fs5{font-size:95.760000px;}
.fs6{font-size:95.904000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:239.760000px;}
.fse{font-size:324.000000px;}
.fsd{font-size:324.144000px;}
.fs8{font-size:360.144000px;}
.fs1{font-size:480.240000px;}
.fs0{font-size:480.384000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:2.016000px;}
.y4{bottom:12.852000px;}
.y48{bottom:41.004000px;}
.y1b{bottom:44.640000px;}
.y4f{bottom:51.264000px;}
.y6a{bottom:55.764000px;}
.y47{bottom:65.304000px;}
.y69{bottom:79.164000px;}
.y4e{bottom:80.064000px;}
.y46{bottom:89.604000px;}
.y68{bottom:102.564000px;}
.y4d{bottom:108.864000px;}
.y45{bottom:113.904000px;}
.y5a{bottom:118.404000px;}
.y3{bottom:121.212000px;}
.y6e{bottom:126.864000px;}
.y67{bottom:135.504000px;}
.y11{bottom:135.864000px;}
.y4c{bottom:137.664000px;}
.y2e{bottom:138.204000px;}
.y44{bottom:147.204000px;}
.y6d{bottom:155.670000px;}
.y66{bottom:162.540000px;}
.y10{bottom:164.700000px;}
.y4b{bottom:166.500000px;}
.y2d{bottom:167.010000px;}
.y43{bottom:171.540000px;}
.y38{bottom:173.910000px;}
.y1a{bottom:174.210000px;}
.y59{bottom:176.010000px;}
.y7b{bottom:179.745000px;}
.y6c{bottom:184.500000px;}
.yf{bottom:193.500000px;}
.y4a{bottom:195.300000px;}
.y42{bottom:195.840000px;}
.y65{bottom:198.540000px;}
.y30{bottom:202.710000px;}
.y19{bottom:203.010000px;}
.y58{bottom:204.810000px;}
.y6b{bottom:213.300000px;}
.y41{bottom:220.140000px;}
.ye{bottom:222.300000px;}
.y64{bottom:225.540000px;}
.y2f{bottom:231.510000px;}
.y18{bottom:231.810000px;}
.y49{bottom:233.100000px;}
.y57{bottom:242.610000px;}
.yd{bottom:251.100000px;}
.y63{bottom:252.540000px;}
.y40{bottom:253.440000px;}
.y37{bottom:260.310000px;}
.y17{bottom:260.610000px;}
.y56{bottom:271.410000px;}
.y3f{bottom:277.740000px;}
.yc{bottom:279.900000px;}
.y70{bottom:280.410000px;}
.y62{bottom:288.540000px;}
.y16{bottom:289.410000px;}
.y55{bottom:300.240000px;}
.y3e{bottom:302.040000px;}
.yb{bottom:308.700000px;}
.y6f{bottom:309.240000px;}
.y61{bottom:315.540000px;}
.y15{bottom:318.240000px;}
.y3d{bottom:326.340000px;}
.ya{bottom:337.500000px;}
.y54{bottom:338.040000px;}
.y60{bottom:342.540000px;}
.y8{bottom:346.530000px;}
.y14{bottom:347.040000px;}
.y3c{bottom:350.670000px;}
.y28{bottom:353.130000px;}
.y33{bottom:353.190000px;}
.y9{bottom:366.330000px;}
.y53{bottom:366.840000px;}
.y7{bottom:375.330000px;}
.y13{bottom:375.840000px;}
.y5f{bottom:378.570000px;}
.y27{bottom:381.930000px;}
.y32{bottom:381.990000px;}
.y3b{bottom:383.970000px;}
.y6{bottom:404.130000px;}
.y12{bottom:404.640000px;}
.y5e{bottom:405.570000px;}
.y3a{bottom:408.270000px;}
.y26{bottom:410.730000px;}
.y31{bottom:410.790000px;}
.y2{bottom:424.725000px;}
.y5c{bottom:473.580000px;}
.y20{bottom:475.230000px;}
.y52{bottom:487.980000px;}
.y78{bottom:488.160000px;}
.y25{bottom:489.675000px;}
.y73{bottom:489.855000px;}
.y22{bottom:502.380000px;}
.y75{bottom:502.560000px;}
.y1f{bottom:504.075000px;}
.y2c{bottom:515.340000px;}
.y36{bottom:515.415000px;}
.y51{bottom:516.780000px;}
.y77{bottom:516.990000px;}
.y24{bottom:518.475000px;}
.y72{bottom:518.655000px;}
.y21{bottom:531.180000px;}
.y74{bottom:531.360000px;}
.y1e{bottom:532.875000px;}
.y2b{bottom:544.140000px;}
.y35{bottom:544.245000px;}
.y1{bottom:544.290000px;}
.y50{bottom:545.580000px;}
.y76{bottom:545.790000px;}
.y23{bottom:547.275000px;}
.y71{bottom:547.485000px;}
.y5b{bottom:559.980000px;}
.y1d{bottom:561.675000px;}
.y34{bottom:573.045000px;}
.y7a{bottom:579.930000px;}
.y2a{bottom:596.805000px;}
.y29{bottom:625.605000px;}
.y39{bottom:653.400000px;}
.y79{bottom:660.600000px;}
.y5{bottom:677.340000px;}
.y5d{bottom:710.385000px;}
.h8{height:36.832320px;}
.he{height:47.628000px;}
.h4{height:58.423680px;}
.hf{height:68.584320px;}
.h9{height:76.608000px;}
.ha{height:76.723200px;}
.hc{height:79.380000px;}
.hd{height:79.507008px;}
.h6{height:84.460320px;}
.h7{height:84.587328px;}
.h3{height:127.008000px;}
.h5{height:211.468320px;}
.h11{height:285.768000px;}
.h10{height:285.895008px;}
.hb{height:317.647008px;}
.h2{height:423.571680px;}
.h1{height:423.698688px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:19.907979px;}
.x3{left:42.371979px;}
.x4{left:74.231979px;}
.xc{left:88.019979px;}
.xb{left:92.699979px;}
.x27{left:95.039979px;}
.xa{left:100.979979px;}
.x38{left:117.575979px;}
.x9{left:144.359979px;}
.x1{left:275.294979px;}
.x1c{left:326.804979px;}
.x1d{left:330.404979px;}
.x1f{left:345.269979px;}
.x20{left:364.169979px;}
.x1b{left:378.434979px;}
.x5{left:391.934979px;}
.x1e{left:412.229979px;}
.x6{left:423.794979px;}
.x1a{left:428.654979px;}
.x34{left:443.264979px;}
.xe{left:454.214979px;}
.x29{left:464.504979px;}
.x28{left:476.204979px;}
.xd{left:497.984979px;}
.x16{left:575.354979px;}
.x12{left:576.464979px;}
.x14{left:579.164979px;}
.x19{left:584.354979px;}
.x13{left:624.164979px;}
.x15{left:627.914979px;}
.x7{left:741.269979px;}
.x8{left:773.129979px;}
.x23{left:774.749979px;}
.x18{left:796.709979px;}
.x33{left:800.204979px;}
.x22{left:803.369979px;}
.x17{left:808.409979px;}
.x11{left:823.679979px;}
.x26{left:825.584979px;}
.x21{left:836.129979px;}
.x2b{left:845.279979px;}
.x10{left:850.859979px;}
.x2a{left:857.519979px;}
.xf{left:872.099979px;}
.x25{left:874.724979px;}
.x24{left:886.964979px;}
.x32{left:910.259979px;}
.x2c{left:1090.829979px;}
.x2d{left:1122.689979px;}
.x36{left:1148.324979px;}
.x31{left:1154.594979px;}
.x2f{left:1162.154979px;}
.x37{left:1171.904979px;}
.x30{left:1173.134979px;}
.x2e{left:1216.154979px;}
.x35{left:1219.829979px;}
@media print{
.v1{vertical-align:-84.746667pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.234667pt;}
.ls6{letter-spacing:-0.194667pt;}
.ls5{letter-spacing:-0.166400pt;}
.ls1e{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.148267pt;}
.ls22{letter-spacing:-0.106667pt;}
.ls21{letter-spacing:-0.102400pt;}
.ls1d{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.064533pt;}
.ls13{letter-spacing:-0.052480pt;}
.ls24{letter-spacing:-0.035200pt;}
.ls23{letter-spacing:-0.017280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.005387pt;}
.ls10{letter-spacing:0.025600pt;}
.ls16{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.099733pt;}
.ls20{letter-spacing:0.146667pt;}
.lsb{letter-spacing:0.152533pt;}
.ls17{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.181333pt;}
.ls14{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.250667pt;}
.ls19{letter-spacing:0.291840pt;}
.ls12{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.323200pt;}
.ls15{letter-spacing:0.451200pt;}
.ls0{letter-spacing:12.774400pt;}
.ls1a{letter-spacing:18.066560pt;}
.ls1b{letter-spacing:18.265600pt;}
.ls1c{letter-spacing:18.905600pt;}
.ls4{letter-spacing:83.443200pt;}
.ls3{letter-spacing:83.488000pt;}
.lse{letter-spacing:85.235200pt;}
.lsd{letter-spacing:85.280000pt;}
.ls18{letter-spacing:89.088000pt;}
.ws0{word-spacing:-94.192427pt;}
.ws31{word-spacing:-63.360000pt;}
.ws1c{word-spacing:-19.177600pt;}
.wsc{word-spacing:-19.049600pt;}
.ws26{word-spacing:-18.878933pt;}
.wsa{word-spacing:-18.826133pt;}
.ws4{word-spacing:-18.754560pt;}
.ws18{word-spacing:-18.752000pt;}
.ws3{word-spacing:-18.726400pt;}
.ws2e{word-spacing:-18.709120pt;}
.ws32{word-spacing:-18.691200pt;}
.ws2a{word-spacing:-18.624000pt;}
.ws20{word-spacing:-17.680000pt;}
.ws11{word-spacing:-17.600000pt;}
.ws23{word-spacing:-17.440000pt;}
.ws10{word-spacing:-17.360000pt;}
.ws21{word-spacing:-2.160000pt;}
.ws1e{word-spacing:-1.680000pt;}
.ws1{word-spacing:-1.647360pt;}
.ws29{word-spacing:-1.294080pt;}
.ws16{word-spacing:-0.824747pt;}
.ws1a{word-spacing:-0.732800pt;}
.ws28{word-spacing:-0.625280pt;}
.ws2b{word-spacing:-0.565760pt;}
.ws1b{word-spacing:-0.556160pt;}
.ws15{word-spacing:-0.537600pt;}
.ws19{word-spacing:-0.536320pt;}
.ws17{word-spacing:-0.489600pt;}
.ws2d{word-spacing:-0.245760pt;}
.wsb{word-spacing:-0.224640pt;}
.ws24{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.170667pt;}
.ws1d{word-spacing:-0.169813pt;}
.ws30{word-spacing:-0.134656pt;}
.ws7{word-spacing:-0.090635pt;}
.ws8{word-spacing:-0.085248pt;}
.ws6{word-spacing:-0.085120pt;}
.ws12{word-spacing:-0.028800pt;}
.ws2c{word-spacing:-0.019840pt;}
.ws2{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.128000pt;}
.ws25{word-spacing:0.240000pt;}
.ws2f{word-spacing:0.241920pt;}
.ws14{word-spacing:0.329280pt;}
.wsf{word-spacing:0.368000pt;}
.wsd{word-spacing:0.544320pt;}
.ws22{word-spacing:0.880000pt;}
.ws13{word-spacing:0.979200pt;}
.ws27{word-spacing:1.089280pt;}
.ws5{word-spacing:18.473600pt;}
.ws9{word-spacing:468.814080pt;}
._0{margin-left:-1.536000pt;}
._1{width:1.059200pt;}
._2{width:2.076800pt;}
._4{width:15.730133pt;}
._5{width:17.312000pt;}
._3{width:19.818880pt;}
._6{width:1312.687787pt;}
.fs7{font-size:37.120000pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:58.880000pt;}
.fsc{font-size:69.120000pt;}
.fs9{font-size:80.000000pt;}
.fsa{font-size:80.128000pt;}
.fs5{font-size:85.120000pt;}
.fs6{font-size:85.248000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:213.120000pt;}
.fse{font-size:288.000000pt;}
.fsd{font-size:288.128000pt;}
.fs8{font-size:320.128000pt;}
.fs1{font-size:426.880000pt;}
.fs0{font-size:427.008000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:1.792000pt;}
.y4{bottom:11.424000pt;}
.y48{bottom:36.448000pt;}
.y1b{bottom:39.680000pt;}
.y4f{bottom:45.568000pt;}
.y6a{bottom:49.568000pt;}
.y47{bottom:58.048000pt;}
.y69{bottom:70.368000pt;}
.y4e{bottom:71.168000pt;}
.y46{bottom:79.648000pt;}
.y68{bottom:91.168000pt;}
.y4d{bottom:96.768000pt;}
.y45{bottom:101.248000pt;}
.y5a{bottom:105.248000pt;}
.y3{bottom:107.744000pt;}
.y6e{bottom:112.768000pt;}
.y67{bottom:120.448000pt;}
.y11{bottom:120.768000pt;}
.y4c{bottom:122.368000pt;}
.y2e{bottom:122.848000pt;}
.y44{bottom:130.848000pt;}
.y6d{bottom:138.373333pt;}
.y66{bottom:144.480000pt;}
.y10{bottom:146.400000pt;}
.y4b{bottom:148.000000pt;}
.y2d{bottom:148.453333pt;}
.y43{bottom:152.480000pt;}
.y38{bottom:154.586667pt;}
.y1a{bottom:154.853333pt;}
.y59{bottom:156.453333pt;}
.y7b{bottom:159.773333pt;}
.y6c{bottom:164.000000pt;}
.yf{bottom:172.000000pt;}
.y4a{bottom:173.600000pt;}
.y42{bottom:174.080000pt;}
.y65{bottom:176.480000pt;}
.y30{bottom:180.186667pt;}
.y19{bottom:180.453333pt;}
.y58{bottom:182.053333pt;}
.y6b{bottom:189.600000pt;}
.y41{bottom:195.680000pt;}
.ye{bottom:197.600000pt;}
.y64{bottom:200.480000pt;}
.y2f{bottom:205.786667pt;}
.y18{bottom:206.053333pt;}
.y49{bottom:207.200000pt;}
.y57{bottom:215.653333pt;}
.yd{bottom:223.200000pt;}
.y63{bottom:224.480000pt;}
.y40{bottom:225.280000pt;}
.y37{bottom:231.386667pt;}
.y17{bottom:231.653333pt;}
.y56{bottom:241.253333pt;}
.y3f{bottom:246.880000pt;}
.yc{bottom:248.800000pt;}
.y70{bottom:249.253333pt;}
.y62{bottom:256.480000pt;}
.y16{bottom:257.253333pt;}
.y55{bottom:266.880000pt;}
.y3e{bottom:268.480000pt;}
.yb{bottom:274.400000pt;}
.y6f{bottom:274.880000pt;}
.y61{bottom:280.480000pt;}
.y15{bottom:282.880000pt;}
.y3d{bottom:290.080000pt;}
.ya{bottom:300.000000pt;}
.y54{bottom:300.480000pt;}
.y60{bottom:304.480000pt;}
.y8{bottom:308.026667pt;}
.y14{bottom:308.480000pt;}
.y3c{bottom:311.706667pt;}
.y28{bottom:313.893333pt;}
.y33{bottom:313.946667pt;}
.y9{bottom:325.626667pt;}
.y53{bottom:326.080000pt;}
.y7{bottom:333.626667pt;}
.y13{bottom:334.080000pt;}
.y5f{bottom:336.506667pt;}
.y27{bottom:339.493333pt;}
.y32{bottom:339.546667pt;}
.y3b{bottom:341.306667pt;}
.y6{bottom:359.226667pt;}
.y12{bottom:359.680000pt;}
.y5e{bottom:360.506667pt;}
.y3a{bottom:362.906667pt;}
.y26{bottom:365.093333pt;}
.y31{bottom:365.146667pt;}
.y2{bottom:377.533333pt;}
.y5c{bottom:420.960000pt;}
.y20{bottom:422.426667pt;}
.y52{bottom:433.760000pt;}
.y78{bottom:433.920000pt;}
.y25{bottom:435.266667pt;}
.y73{bottom:435.426667pt;}
.y22{bottom:446.560000pt;}
.y75{bottom:446.720000pt;}
.y1f{bottom:448.066667pt;}
.y2c{bottom:458.080000pt;}
.y36{bottom:458.146667pt;}
.y51{bottom:459.360000pt;}
.y77{bottom:459.546667pt;}
.y24{bottom:460.866667pt;}
.y72{bottom:461.026667pt;}
.y21{bottom:472.160000pt;}
.y74{bottom:472.320000pt;}
.y1e{bottom:473.666667pt;}
.y2b{bottom:483.680000pt;}
.y35{bottom:483.773333pt;}
.y1{bottom:483.813333pt;}
.y50{bottom:484.960000pt;}
.y76{bottom:485.146667pt;}
.y23{bottom:486.466667pt;}
.y71{bottom:486.653333pt;}
.y5b{bottom:497.760000pt;}
.y1d{bottom:499.266667pt;}
.y34{bottom:509.373333pt;}
.y7a{bottom:515.493333pt;}
.y2a{bottom:530.493333pt;}
.y29{bottom:556.093333pt;}
.y39{bottom:580.800000pt;}
.y79{bottom:587.200000pt;}
.y5{bottom:602.080000pt;}
.y5d{bottom:631.453333pt;}
.h8{height:32.739840pt;}
.he{height:42.336000pt;}
.h4{height:51.932160pt;}
.hf{height:60.963840pt;}
.h9{height:68.096000pt;}
.ha{height:68.198400pt;}
.hc{height:70.560000pt;}
.hd{height:70.672896pt;}
.h6{height:75.075840pt;}
.h7{height:75.188736pt;}
.h3{height:112.896000pt;}
.h5{height:187.971840pt;}
.h11{height:254.016000pt;}
.h10{height:254.128896pt;}
.hb{height:282.352896pt;}
.h2{height:376.508160pt;}
.h1{height:376.621056pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:17.695981pt;}
.x3{left:37.663981pt;}
.x4{left:65.983981pt;}
.xc{left:78.239981pt;}
.xb{left:82.399981pt;}
.x27{left:84.479981pt;}
.xa{left:89.759981pt;}
.x38{left:104.511981pt;}
.x9{left:128.319981pt;}
.x1{left:244.706648pt;}
.x1c{left:290.493314pt;}
.x1d{left:293.693314pt;}
.x1f{left:306.906648pt;}
.x20{left:323.706648pt;}
.x1b{left:336.386648pt;}
.x5{left:348.386648pt;}
.x1e{left:366.426648pt;}
.x6{left:376.706648pt;}
.x1a{left:381.026648pt;}
.x34{left:394.013314pt;}
.xe{left:403.746648pt;}
.x29{left:412.893314pt;}
.x28{left:423.293314pt;}
.xd{left:442.653314pt;}
.x16{left:511.426648pt;}
.x12{left:512.413314pt;}
.x14{left:514.813314pt;}
.x19{left:519.426648pt;}
.x13{left:554.813314pt;}
.x15{left:558.146648pt;}
.x7{left:658.906648pt;}
.x8{left:687.226648pt;}
.x23{left:688.666648pt;}
.x18{left:708.186648pt;}
.x33{left:711.293314pt;}
.x22{left:714.106648pt;}
.x17{left:718.586648pt;}
.x11{left:732.159981pt;}
.x26{left:733.853314pt;}
.x21{left:743.226648pt;}
.x2b{left:751.359981pt;}
.x10{left:756.319981pt;}
.x2a{left:762.239981pt;}
.xf{left:775.199981pt;}
.x25{left:777.533314pt;}
.x24{left:788.413314pt;}
.x32{left:809.119981pt;}
.x2c{left:969.626648pt;}
.x2d{left:997.946648pt;}
.x36{left:1020.733314pt;}
.x31{left:1026.306648pt;}
.x2f{left:1033.026648pt;}
.x37{left:1041.693314pt;}
.x30{left:1042.786648pt;}
.x2e{left:1081.026648pt;}
.x35{left:1084.293314pt;}
}




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