
    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_dfa15c69b2d9b8e560884c8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_04c04768b4ae3c61143ad900.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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;}
.m1{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m14{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-24.000000px;}
.ws0{word-spacing:-12.272336px;}
.ws6{word-spacing:-12.000000px;}
.ws2{word-spacing:-6.000000px;}
.ws3{word-spacing:-0.252551px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:18.000000px;}
.ws7{word-spacing:48.000000px;}
._0{margin-left:-33.600000px;}
._1{width:3.840000px;}
._2{width:8.640000px;}
.fc0{color:transparent;}
.fs0{font-size:48.000000px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:232.996050px;}
.y39{bottom:238.996050px;}
.y3a{bottom:240.496050px;}
.y3c{bottom:241.996050px;}
.y3d{bottom:243.496050px;}
.y3e{bottom:244.996050px;}
.y3f{bottom:246.496050px;}
.y33{bottom:288.496050px;}
.y32{bottom:289.996050px;}
.y34{bottom:291.496050px;}
.y35{bottom:292.996050px;}
.y36{bottom:294.496050px;}
.y37{bottom:295.996050px;}
.y38{bottom:297.496050px;}
.y2c{bottom:310.996050px;}
.y2d{bottom:312.496050px;}
.y2e{bottom:313.996050px;}
.y2f{bottom:315.496050px;}
.y30{bottom:316.996050px;}
.y31{bottom:318.496050px;}
.y2a{bottom:366.496050px;}
.y27{bottom:369.496050px;}
.y28{bottom:370.996050px;}
.y29{bottom:372.496050px;}
.y23{bottom:382.996050px;}
.y25{bottom:385.996050px;}
.y26{bottom:405.496050px;}
.y22{bottom:426.496050px;}
.y21{bottom:459.496050px;}
.y1c{bottom:480.496050px;}
.y1d{bottom:481.996050px;}
.y1e{bottom:483.496050px;}
.y1f{bottom:486.496050px;}
.y20{bottom:487.996050px;}
.y15{bottom:501.496050px;}
.y16{bottom:502.996050px;}
.y17{bottom:504.496050px;}
.y18{bottom:505.996050px;}
.y19{bottom:507.496050px;}
.y1a{bottom:508.996050px;}
.y1b{bottom:510.496050px;}
.yf{bottom:523.996050px;}
.y10{bottom:525.496050px;}
.y11{bottom:526.996050px;}
.y12{bottom:528.496050px;}
.y13{bottom:529.996050px;}
.y14{bottom:531.496050px;}
.y9{bottom:546.496050px;}
.ya{bottom:547.996050px;}
.yb{bottom:549.496050px;}
.yc{bottom:550.996050px;}
.yd{bottom:552.496050px;}
.ye{bottom:553.996050px;}
.y8{bottom:613.996050px;}
.y5{bottom:661.996050px;}
.y6{bottom:663.496050px;}
.y7{bottom:664.996050px;}
.y4{bottom:705.496050px;}
.y2{bottom:739.996050px;}
.y3{bottom:741.496050px;}
.y1{bottom:762.496050px;}
.y2b{bottom:778.996050px;}
.y24{bottom:840.496050px;}
.h2{height:49.336436px;}
.h3{height:55.336436px;}
.h4{height:67.837600px;}
.h0{height:836.243535px;}
.h1{height:836.250000px;}
.w1{width:563.250000px;}
.w0{width:563.492115px;}
.x3d{left:-17.007885px;}
.x0{left:0.000000px;}
.x1{left:36.992115px;}
.x8{left:45.992115px;}
.x11{left:48.992115px;}
.x22{left:50.492115px;}
.x4f{left:53.492115px;}
.x5a{left:54.992115px;}
.x44{left:56.492115px;}
.x6{left:60.992115px;}
.x2{left:62.492115px;}
.x5b{left:72.992115px;}
.x3{left:74.492115px;}
.x7{left:75.992115px;}
.x2a{left:81.992115px;}
.x12{left:87.992115px;}
.x45{left:90.992115px;}
.x50{left:93.992115px;}
.x23{left:95.492115px;}
.x4{left:99.992115px;}
.x5{left:111.992115px;}
.x2b{left:117.992115px;}
.x46{left:122.492115px;}
.x9{left:123.992115px;}
.x13{left:125.492115px;}
.x2c{left:141.992115px;}
.x47{left:143.492115px;}
.x5c{left:144.992115px;}
.x14{left:147.992115px;}
.x2d{left:156.992115px;}
.x39{left:158.492115px;}
.x31{left:164.492115px;}
.x51{left:167.492115px;}
.xa{left:168.992115px;}
.x48{left:174.992115px;}
.x15{left:177.992115px;}
.xf{left:179.492115px;}
.x3f{left:180.992115px;}
.x52{left:182.492115px;}
.xb{left:183.992115px;}
.x32{left:186.992115px;}
.x3a{left:189.992115px;}
.x5d{left:191.492115px;}
.x10{left:192.992115px;}
.x33{left:195.992115px;}
.xc{left:198.992115px;}
.x16{left:200.492115px;}
.x53{left:204.992115px;}
.x34{left:207.992115px;}
.x24{left:209.492115px;}
.x17{left:215.492115px;}
.x49{left:219.992115px;}
.x3b{left:225.992115px;}
.x25{left:231.992115px;}
.xd{left:236.492115px;}
.x18{left:239.492115px;}
.x5e{left:252.992115px;}
.x3c{left:263.492115px;}
.x40{left:264.992115px;}
.x19{left:269.492115px;}
.x35{left:270.992115px;}
.x5f{left:273.992115px;}
.xe{left:275.492115px;}
.x54{left:279.992115px;}
.x60{left:284.492115px;}
.x3e{left:288.992115px;}
.x41{left:297.992115px;}
.x1a{left:300.992115px;}
.x61{left:303.992115px;}
.x42{left:309.992115px;}
.x1b{left:314.492115px;}
.x26{left:315.992115px;}
.x4a{left:317.492115px;}
.x62{left:320.492115px;}
.x63{left:329.492115px;}
.x55{left:333.992115px;}
.x4b{left:336.992115px;}
.x1c{left:338.492115px;}
.x64{left:341.492115px;}
.x2e{left:345.992115px;}
.x1d{left:351.992115px;}
.x56{left:357.992115px;}
.x1e{left:360.992115px;}
.x4c{left:363.992115px;}
.x65{left:366.992115px;}
.x2f{left:368.492115px;}
.x36{left:369.992115px;}
.x27{left:375.992115px;}
.x57{left:380.492115px;}
.x1f{left:392.492115px;}
.x37{left:399.992115px;}
.x20{left:407.492115px;}
.x58{left:423.992115px;}
.x4d{left:431.492115px;}
.x59{left:438.992115px;}
.x30{left:443.492115px;}
.x38{left:450.992115px;}
.x28{left:458.492115px;}
.x21{left:465.992115px;}
.x66{left:489.992115px;}
.x29{left:495.992115px;}
.x4e{left:500.492115px;}
.x43{left:504.992115px;}
.x67{left:516.992115px;}
@media print{
.v2{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-21.333333pt;}
.ws0{word-spacing:-10.908743pt;}
.ws6{word-spacing:-10.666667pt;}
.ws2{word-spacing:-5.333333pt;}
.ws3{word-spacing:-0.224490pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:16.000000pt;}
.ws7{word-spacing:42.666667pt;}
._0{margin-left:-29.866667pt;}
._1{width:3.413333pt;}
._2{width:7.680000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:207.107600pt;}
.y39{bottom:212.440933pt;}
.y3a{bottom:213.774267pt;}
.y3c{bottom:215.107600pt;}
.y3d{bottom:216.440933pt;}
.y3e{bottom:217.774267pt;}
.y3f{bottom:219.107600pt;}
.y33{bottom:256.440933pt;}
.y32{bottom:257.774267pt;}
.y34{bottom:259.107600pt;}
.y35{bottom:260.440933pt;}
.y36{bottom:261.774267pt;}
.y37{bottom:263.107600pt;}
.y38{bottom:264.440933pt;}
.y2c{bottom:276.440933pt;}
.y2d{bottom:277.774267pt;}
.y2e{bottom:279.107600pt;}
.y2f{bottom:280.440933pt;}
.y30{bottom:281.774267pt;}
.y31{bottom:283.107600pt;}
.y2a{bottom:325.774267pt;}
.y27{bottom:328.440933pt;}
.y28{bottom:329.774267pt;}
.y29{bottom:331.107600pt;}
.y23{bottom:340.440933pt;}
.y25{bottom:343.107600pt;}
.y26{bottom:360.440933pt;}
.y22{bottom:379.107600pt;}
.y21{bottom:408.440933pt;}
.y1c{bottom:427.107600pt;}
.y1d{bottom:428.440933pt;}
.y1e{bottom:429.774267pt;}
.y1f{bottom:432.440933pt;}
.y20{bottom:433.774267pt;}
.y15{bottom:445.774267pt;}
.y16{bottom:447.107600pt;}
.y17{bottom:448.440933pt;}
.y18{bottom:449.774267pt;}
.y19{bottom:451.107600pt;}
.y1a{bottom:452.440933pt;}
.y1b{bottom:453.774267pt;}
.yf{bottom:465.774267pt;}
.y10{bottom:467.107600pt;}
.y11{bottom:468.440933pt;}
.y12{bottom:469.774267pt;}
.y13{bottom:471.107600pt;}
.y14{bottom:472.440933pt;}
.y9{bottom:485.774267pt;}
.ya{bottom:487.107600pt;}
.yb{bottom:488.440933pt;}
.yc{bottom:489.774267pt;}
.yd{bottom:491.107600pt;}
.ye{bottom:492.440933pt;}
.y8{bottom:545.774267pt;}
.y5{bottom:588.440933pt;}
.y6{bottom:589.774267pt;}
.y7{bottom:591.107600pt;}
.y4{bottom:627.107600pt;}
.y2{bottom:657.774267pt;}
.y3{bottom:659.107600pt;}
.y1{bottom:677.774267pt;}
.y2b{bottom:692.440933pt;}
.y24{bottom:747.107600pt;}
.h2{height:43.854610pt;}
.h3{height:49.187943pt;}
.h4{height:60.300089pt;}
.h0{height:743.327587pt;}
.h1{height:743.333333pt;}
.w1{width:500.666667pt;}
.w0{width:500.881880pt;}
.x3d{left:-15.118120pt;}
.x0{left:0.000000pt;}
.x1{left:32.881880pt;}
.x8{left:40.881880pt;}
.x11{left:43.548547pt;}
.x22{left:44.881880pt;}
.x4f{left:47.548547pt;}
.x5a{left:48.881880pt;}
.x44{left:50.215213pt;}
.x6{left:54.215213pt;}
.x2{left:55.548547pt;}
.x5b{left:64.881880pt;}
.x3{left:66.215213pt;}
.x7{left:67.548547pt;}
.x2a{left:72.881880pt;}
.x12{left:78.215213pt;}
.x45{left:80.881880pt;}
.x50{left:83.548547pt;}
.x23{left:84.881880pt;}
.x4{left:88.881880pt;}
.x5{left:99.548547pt;}
.x2b{left:104.881880pt;}
.x46{left:108.881880pt;}
.x9{left:110.215213pt;}
.x13{left:111.548547pt;}
.x2c{left:126.215213pt;}
.x47{left:127.548547pt;}
.x5c{left:128.881880pt;}
.x14{left:131.548547pt;}
.x2d{left:139.548547pt;}
.x39{left:140.881880pt;}
.x31{left:146.215213pt;}
.x51{left:148.881880pt;}
.xa{left:150.215213pt;}
.x48{left:155.548547pt;}
.x15{left:158.215213pt;}
.xf{left:159.548547pt;}
.x3f{left:160.881880pt;}
.x52{left:162.215213pt;}
.xb{left:163.548547pt;}
.x32{left:166.215213pt;}
.x3a{left:168.881880pt;}
.x5d{left:170.215213pt;}
.x10{left:171.548547pt;}
.x33{left:174.215213pt;}
.xc{left:176.881880pt;}
.x16{left:178.215213pt;}
.x53{left:182.215213pt;}
.x34{left:184.881880pt;}
.x24{left:186.215213pt;}
.x17{left:191.548547pt;}
.x49{left:195.548547pt;}
.x3b{left:200.881880pt;}
.x25{left:206.215213pt;}
.xd{left:210.215213pt;}
.x18{left:212.881880pt;}
.x5e{left:224.881880pt;}
.x3c{left:234.215213pt;}
.x40{left:235.548547pt;}
.x19{left:239.548547pt;}
.x35{left:240.881880pt;}
.x5f{left:243.548547pt;}
.xe{left:244.881880pt;}
.x54{left:248.881880pt;}
.x60{left:252.881880pt;}
.x3e{left:256.881880pt;}
.x41{left:264.881880pt;}
.x1a{left:267.548547pt;}
.x61{left:270.215213pt;}
.x42{left:275.548547pt;}
.x1b{left:279.548547pt;}
.x26{left:280.881880pt;}
.x4a{left:282.215213pt;}
.x62{left:284.881880pt;}
.x63{left:292.881880pt;}
.x55{left:296.881880pt;}
.x4b{left:299.548547pt;}
.x1c{left:300.881880pt;}
.x64{left:303.548547pt;}
.x2e{left:307.548547pt;}
.x1d{left:312.881880pt;}
.x56{left:318.215213pt;}
.x1e{left:320.881880pt;}
.x4c{left:323.548547pt;}
.x65{left:326.215213pt;}
.x2f{left:327.548547pt;}
.x36{left:328.881880pt;}
.x27{left:334.215213pt;}
.x57{left:338.215213pt;}
.x1f{left:348.881880pt;}
.x37{left:355.548547pt;}
.x20{left:362.215213pt;}
.x58{left:376.881880pt;}
.x4d{left:383.548547pt;}
.x59{left:390.215213pt;}
.x30{left:394.215213pt;}
.x38{left:400.881880pt;}
.x28{left:407.548547pt;}
.x21{left:414.215213pt;}
.x66{left:435.548547pt;}
.x29{left:440.881880pt;}
.x4e{left:444.881880pt;}
.x43{left:448.881880pt;}
.x67{left:459.548547pt;}
}




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