
    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_5cf5b8b38994a366970ec3aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_71cf2b02123c83b5e27327b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.816406;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_4a2a4be0c8827171f7521772.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_46f5f95b515dacbb97ab4445.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_07545075eda7a2819bbf195d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.717285;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);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.060000px;}
.lsc{letter-spacing:-0.057600px;}
.ls9{letter-spacing:-0.054000px;}
.ls1b{letter-spacing:-0.048000px;}
.ls11{letter-spacing:-0.043200px;}
.ls25{letter-spacing:-0.036000px;}
.ls8{letter-spacing:-0.028800px;}
.lsd{letter-spacing:-0.024000px;}
.ls12{letter-spacing:-0.021600px;}
.ls17{letter-spacing:-0.016800px;}
.ls24{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000180px;}
.ls21{letter-spacing:0.000300px;}
.ls14{letter-spacing:0.008202px;}
.lsf{letter-spacing:0.010548px;}
.ls10{letter-spacing:0.010800px;}
.ls1a{letter-spacing:0.011718px;}
.ls23{letter-spacing:0.012000px;}
.ls20{letter-spacing:0.014064px;}
.ls6{letter-spacing:0.014400px;}
.ls1f{letter-spacing:0.018282px;}
.ls13{letter-spacing:0.021600px;}
.ls3{letter-spacing:0.024000px;}
.ls7{letter-spacing:0.028800px;}
.ls5{letter-spacing:0.043200px;}
.lsa{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.060000px;}
.ls1d{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.108000px;}
.lse{letter-spacing:0.696000px;}
.ls18{letter-spacing:1.789200px;}
.ls16{letter-spacing:3.679200px;}
.ls15{letter-spacing:3.704400px;}
.lsb{letter-spacing:4.560000px;}
.ls19{letter-spacing:42.907200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-144.000000px;}
.ws24{word-spacing:-42.991200px;}
.ws1f{word-spacing:-3.763200px;}
.ws23{word-spacing:-1.873200px;}
.ws7{word-spacing:-0.288000px;}
.ws6{word-spacing:-0.234000px;}
.ws2a{word-spacing:-0.192000px;}
.ws1{word-spacing:-0.187200px;}
.ws29{word-spacing:-0.180000px;}
.ws9{word-spacing:-0.168000px;}
.ws1d{word-spacing:-0.162000px;}
.ws3{word-spacing:-0.158400px;}
.ws0{word-spacing:-0.144000px;}
.ws2d{word-spacing:-0.132000px;}
.ws5{word-spacing:-0.126000px;}
.ws8{word-spacing:-0.120000px;}
.ws18{word-spacing:-0.118800px;}
.ws4{word-spacing:-0.115200px;}
.ws14{word-spacing:-0.108000px;}
.wsc{word-spacing:-0.096000px;}
.wsb{word-spacing:-0.086400px;}
.ws1e{word-spacing:-0.084000px;}
.ws2c{word-spacing:-0.072000px;}
.ws21{word-spacing:-0.067200px;}
.ws17{word-spacing:-0.064800px;}
.ws2b{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.ws25{word-spacing:14.053200px;}
.ws22{word-spacing:14.674800px;}
.ws1b{word-spacing:17.247600px;}
.ws1c{word-spacing:17.269200px;}
.ws27{word-spacing:20.151600px;}
.wse{word-spacing:21.228000px;}
.ws28{word-spacing:27.014400px;}
.ws26{word-spacing:28.686000px;}
.ws16{word-spacing:30.844800px;}
.ws15{word-spacing:30.877200px;}
.ws20{word-spacing:36.363600px;}
.ws13{word-spacing:38.304000px;}
.ws12{word-spacing:38.387160px;}
.ws1a{word-spacing:40.230000px;}
.ws19{word-spacing:40.338000px;}
.wsf{word-spacing:45.060000px;}
.ws10{word-spacing:53.040000px;}
.ws11{word-spacing:58.824000px;}
.wsd{word-spacing:61.296000px;}
._f{margin-left:-41.833320px;}
._e{margin-left:-40.697340px;}
._13{margin-left:-20.016000px;}
._12{margin-left:-16.680000px;}
._a{margin-left:-15.012000px;}
._b{margin-left:-11.676000px;}
._9{margin-left:-5.040000px;}
._c{margin-left:-3.672300px;}
._8{margin-left:-2.160000px;}
._1{margin-left:-1.080000px;}
._0{width:1.080000px;}
._6{width:2.820000px;}
._7{width:3.840000px;}
._11{width:7.839840px;}
._2{width:9.231120px;}
._d{width:10.443840px;}
._10{width:12.104400px;}
._3{width:14.232000px;}
._5{width:15.452400px;}
._4{width:17.355120px;}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.ya5{bottom:21.224950px;}
.y62{bottom:29.662390px;}
.y34{bottom:29.662405px;}
.y75{bottom:45.599980px;}
.ya4{bottom:57.224965px;}
.y33{bottom:62.662435px;}
.y61{bottom:65.662405px;}
.y85{bottom:67.724980px;}
.y4e{bottom:71.662420px;}
.y1e{bottom:74.287405px;}
.y74{bottom:81.599995px;}
.y91{bottom:92.662375px;}
.ya3{bottom:93.224980px;}
.y32{bottom:94.162405px;}
.y4d{bottom:97.162420px;}
.y60{bottom:101.662420px;}
.y84{bottom:103.724935px;}
.y1d{bottom:110.287420px;}
.y73{bottom:117.599950px;}
.y4c{bottom:122.662420px;}
.y31{bottom:127.162315px;}
.ya2{bottom:129.224965px;}
.y90{bottom:136.162465px;}
.y5f{bottom:137.662315px;}
.y83{bottom:139.724965px;}
.y1c{bottom:146.287315px;}
.y4b{bottom:146.662315px;}
.y72{bottom:153.599965px;}
.y30{bottom:158.662465px;}
.ya1{bottom:165.224965px;}
.y4a{bottom:172.162315px;}
.y5e{bottom:173.662315px;}
.y82{bottom:175.724965px;}
.y8f{bottom:178.162465px;}
.y1b{bottom:182.287315px;}
.y71{bottom:189.599965px;}
.y2f{bottom:191.662315px;}
.y49{bottom:197.662315px;}
.ya0{bottom:201.224965px;}
.y5d{bottom:209.662465px;}
.y81{bottom:211.724965px;}
.y1a{bottom:218.287465px;}
.y8e{bottom:221.662315px;}
.y48{bottom:223.162315px;}
.y2e{bottom:224.662465px;}
.y70{bottom:225.599965px;}
.y9f{bottom:237.224965px;}
.y5c{bottom:245.662315px;}
.y47{bottom:247.162315px;}
.y80{bottom:247.724965px;}
.y19{bottom:254.287315px;}
.y2d{bottom:256.162315px;}
.yc{bottom:259.462330px;}
.y6f{bottom:261.599965px;}
.y8d{bottom:265.162315px;}
.y46{bottom:272.662315px;}
.y9e{bottom:273.224965px;}
.y5b{bottom:281.662315px;}
.y7f{bottom:283.724965px;}
.y2c{bottom:289.162315px;}
.y18{bottom:290.287315px;}
.y6e{bottom:297.599965px;}
.y45{bottom:298.162315px;}
.yb{bottom:299.962330px;}
.y8c{bottom:308.662315px;}
.y9d{bottom:309.224965px;}
.y5a{bottom:317.662315px;}
.y7e{bottom:319.724965px;}
.y2b{bottom:320.662315px;}
.y44{bottom:323.662315px;}
.y17{bottom:326.287315px;}
.y6d{bottom:333.599965px;}
.ya{bottom:338.962330px;}
.y9c{bottom:345.224965px;}
.y43{bottom:349.162315px;}
.y8b{bottom:352.162315px;}
.y2a{bottom:353.662315px;}
.y7d{bottom:355.724965px;}
.y16{bottom:362.287315px;}
.y6c{bottom:369.599965px;}
.y42{bottom:373.162315px;}
.y9b{bottom:381.224965px;}
.y9{bottom:382.162315px;}
.y29{bottom:386.662315px;}
.y59{bottom:389.662315px;}
.y7c{bottom:391.724965px;}
.y8a{bottom:394.162315px;}
.y15{bottom:398.287315px;}
.y41{bottom:398.662315px;}
.y6b{bottom:405.599965px;}
.y9a{bottom:417.224965px;}
.y28{bottom:418.162315px;}
.y40{bottom:424.162315px;}
.y58{bottom:425.662315px;}
.y7b{bottom:427.724965px;}
.y8{bottom:430.162315px;}
.y14{bottom:434.287315px;}
.y89{bottom:437.662315px;}
.y6a{bottom:441.599965px;}
.y3f{bottom:449.662315px;}
.y27{bottom:451.162315px;}
.y99{bottom:453.224965px;}
.y57{bottom:461.662315px;}
.y7a{bottom:463.724965px;}
.y13{bottom:470.287315px;}
.y3e{bottom:475.162315px;}
.y69{bottom:477.599965px;}
.y7{bottom:478.162315px;}
.y88{bottom:481.162315px;}
.y26{bottom:484.162315px;}
.y98{bottom:489.224965px;}
.y56{bottom:497.662315px;}
.y3d{bottom:499.162315px;}
.y79{bottom:499.724965px;}
.y12{bottom:506.287315px;}
.y68{bottom:513.599965px;}
.y25{bottom:515.662315px;}
.y6{bottom:517.124815px;}
.y3c{bottom:524.662315px;}
.y97{bottom:525.224965px;}
.y55{bottom:533.662315px;}
.y78{bottom:535.724965px;}
.y11{bottom:542.287315px;}
.y24{bottom:548.662315px;}
.y67{bottom:549.599965px;}
.y3b{bottom:550.162315px;}
.y5{bottom:560.624965px;}
.y96{bottom:561.224965px;}
.y87{bottom:568.162315px;}
.y54{bottom:569.662315px;}
.y77{bottom:571.724965px;}
.y3a{bottom:575.662315px;}
.y10{bottom:578.287315px;}
.y23{bottom:580.162315px;}
.y66{bottom:585.599965px;}
.y95{bottom:597.224965px;}
.y39{bottom:601.162315px;}
.y4{bottom:604.124965px;}
.y53{bottom:605.662315px;}
.y76{bottom:607.724965px;}
.y86{bottom:610.162315px;}
.y22{bottom:613.162315px;}
.yf{bottom:614.287315px;}
.y38{bottom:625.162315px;}
.y94{bottom:633.224965px;}
.y52{bottom:641.662315px;}
.y21{bottom:644.662315px;}
.y3{bottom:647.624965px;}
.ye{bottom:650.287315px;}
.y65{bottom:680.156065px;}
.y37{bottom:684.374815px;}
.y51{bottom:688.687315px;}
.y2{bottom:689.624815px;}
.y20{bottom:710.906065px;}
.y64{bottom:716.156065px;}
.y36{bottom:720.374815px;}
.y93{bottom:721.443565px;}
.y50{bottom:724.687315px;}
.yd{bottom:732.224965px;}
.ya6{bottom:734.193565px;}
.y92{bottom:743.568565px;}
.y1f{bottom:746.906065px;}
.y63{bottom:752.156065px;}
.y35{bottom:756.374815px;}
.y4f{bottom:760.687315px;}
.h7{height:60.251953px;}
.h8{height:69.275391px;}
.h9{height:83.437500px;}
.h6{height:89.068359px;}
.h4{height:98.964844px;}
.h5{height:100.125000px;}
.ha{height:115.312500px;}
.h2{height:118.757812px;}
.h3{height:125.156250px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xc{left:31.987560px;}
.xd{left:40.425000px;}
.xe{left:42.663342px;}
.x14{left:52.536390px;}
.x10{left:57.890280px;}
.x16{left:78.874203px;}
.x19{left:82.750260px;}
.x11{left:87.839010px;}
.x6{left:133.388325px;}
.x13{left:158.495865px;}
.x7{left:193.142955px;}
.x2{left:227.781450px;}
.x1a{left:267.039285px;}
.xa{left:319.372185px;}
.x1b{left:322.410300px;}
.x9{left:340.927335px;}
.xb{left:364.621185px;}
.x17{left:374.333235px;}
.x3{left:378.487545px;}
.x18{left:396.891810px;}
.x12{left:397.902450px;}
.x15{left:404.450460px;}
.x8{left:408.606885px;}
.x1{left:425.825445px;}
.x4{left:438.209145px;}
.xf{left:469.035360px;}
.x5{left:532.067595px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.053333pt;}
.lsc{letter-spacing:-0.051200pt;}
.ls9{letter-spacing:-0.048000pt;}
.ls1b{letter-spacing:-0.042667pt;}
.ls11{letter-spacing:-0.038400pt;}
.ls25{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:-0.025600pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls12{letter-spacing:-0.019200pt;}
.ls17{letter-spacing:-0.014933pt;}
.ls24{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000160pt;}
.ls21{letter-spacing:0.000267pt;}
.ls14{letter-spacing:0.007291pt;}
.lsf{letter-spacing:0.009376pt;}
.ls10{letter-spacing:0.009600pt;}
.ls1a{letter-spacing:0.010416pt;}
.ls23{letter-spacing:0.010667pt;}
.ls20{letter-spacing:0.012501pt;}
.ls6{letter-spacing:0.012800pt;}
.ls1f{letter-spacing:0.016251pt;}
.ls13{letter-spacing:0.019200pt;}
.ls3{letter-spacing:0.021333pt;}
.ls7{letter-spacing:0.025600pt;}
.ls5{letter-spacing:0.038400pt;}
.lsa{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.053333pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.618667pt;}
.ls18{letter-spacing:1.590400pt;}
.ls16{letter-spacing:3.270400pt;}
.ls15{letter-spacing:3.292800pt;}
.lsb{letter-spacing:4.053333pt;}
.ls19{letter-spacing:38.139733pt;}
.ws2{word-spacing:-128.000000pt;}
.ws24{word-spacing:-38.214400pt;}
.ws1f{word-spacing:-3.345067pt;}
.ws23{word-spacing:-1.665067pt;}
.ws7{word-spacing:-0.256000pt;}
.ws6{word-spacing:-0.208000pt;}
.ws2a{word-spacing:-0.170667pt;}
.ws1{word-spacing:-0.166400pt;}
.ws29{word-spacing:-0.160000pt;}
.ws9{word-spacing:-0.149333pt;}
.ws1d{word-spacing:-0.144000pt;}
.ws3{word-spacing:-0.140800pt;}
.ws0{word-spacing:-0.128000pt;}
.ws2d{word-spacing:-0.117333pt;}
.ws5{word-spacing:-0.112000pt;}
.ws8{word-spacing:-0.106667pt;}
.ws18{word-spacing:-0.105600pt;}
.ws4{word-spacing:-0.102400pt;}
.ws14{word-spacing:-0.096000pt;}
.wsc{word-spacing:-0.085333pt;}
.wsb{word-spacing:-0.076800pt;}
.ws1e{word-spacing:-0.074667pt;}
.ws2c{word-spacing:-0.064000pt;}
.ws21{word-spacing:-0.059733pt;}
.ws17{word-spacing:-0.057600pt;}
.ws2b{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.ws25{word-spacing:12.491733pt;}
.ws22{word-spacing:13.044267pt;}
.ws1b{word-spacing:15.331200pt;}
.ws1c{word-spacing:15.350400pt;}
.ws27{word-spacing:17.912533pt;}
.wse{word-spacing:18.869333pt;}
.ws28{word-spacing:24.012800pt;}
.ws26{word-spacing:25.498667pt;}
.ws16{word-spacing:27.417600pt;}
.ws15{word-spacing:27.446400pt;}
.ws20{word-spacing:32.323200pt;}
.ws13{word-spacing:34.048000pt;}
.ws12{word-spacing:34.121920pt;}
.ws1a{word-spacing:35.760000pt;}
.ws19{word-spacing:35.856000pt;}
.wsf{word-spacing:40.053333pt;}
.ws10{word-spacing:47.146667pt;}
.ws11{word-spacing:52.288000pt;}
.wsd{word-spacing:54.485333pt;}
._f{margin-left:-37.185173pt;}
._e{margin-left:-36.175413pt;}
._13{margin-left:-17.792000pt;}
._12{margin-left:-14.826667pt;}
._a{margin-left:-13.344000pt;}
._b{margin-left:-10.378667pt;}
._9{margin-left:-4.480000pt;}
._c{margin-left:-3.264267pt;}
._8{margin-left:-1.920000pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.960000pt;}
._6{width:2.506667pt;}
._7{width:3.413333pt;}
._11{width:6.968747pt;}
._2{width:8.205440pt;}
._d{width:9.283413pt;}
._10{width:10.759467pt;}
._3{width:12.650667pt;}
._5{width:13.735467pt;}
._4{width:15.426773pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.ya5{bottom:18.866622pt;}
.y62{bottom:26.366569pt;}
.y34{bottom:26.366582pt;}
.y75{bottom:40.533316pt;}
.ya4{bottom:50.866636pt;}
.y33{bottom:55.699942pt;}
.y61{bottom:58.366582pt;}
.y85{bottom:60.199982pt;}
.y4e{bottom:63.699929pt;}
.y1e{bottom:66.033249pt;}
.y74{bottom:72.533329pt;}
.y91{bottom:82.366556pt;}
.ya3{bottom:82.866649pt;}
.y32{bottom:83.699916pt;}
.y4d{bottom:86.366596pt;}
.y60{bottom:90.366596pt;}
.y84{bottom:92.199942pt;}
.y1d{bottom:98.033262pt;}
.y73{bottom:104.533289pt;}
.y4c{bottom:109.033262pt;}
.y31{bottom:113.033169pt;}
.ya2{bottom:114.866636pt;}
.y90{bottom:121.033302pt;}
.y5f{bottom:122.366502pt;}
.y83{bottom:124.199969pt;}
.y1c{bottom:130.033169pt;}
.y4b{bottom:130.366502pt;}
.y72{bottom:136.533302pt;}
.y30{bottom:141.033302pt;}
.ya1{bottom:146.866636pt;}
.y4a{bottom:153.033169pt;}
.y5e{bottom:154.366502pt;}
.y82{bottom:156.199969pt;}
.y8f{bottom:158.366636pt;}
.y1b{bottom:162.033169pt;}
.y71{bottom:168.533302pt;}
.y2f{bottom:170.366502pt;}
.y49{bottom:175.699836pt;}
.ya0{bottom:178.866636pt;}
.y5d{bottom:186.366636pt;}
.y81{bottom:188.199969pt;}
.y1a{bottom:194.033302pt;}
.y8e{bottom:197.033169pt;}
.y48{bottom:198.366502pt;}
.y2e{bottom:199.699969pt;}
.y70{bottom:200.533302pt;}
.y9f{bottom:210.866636pt;}
.y5c{bottom:218.366502pt;}
.y47{bottom:219.699836pt;}
.y80{bottom:220.199969pt;}
.y19{bottom:226.033169pt;}
.y2d{bottom:227.699836pt;}
.yc{bottom:230.633182pt;}
.y6f{bottom:232.533302pt;}
.y8d{bottom:235.699836pt;}
.y46{bottom:242.366502pt;}
.y9e{bottom:242.866636pt;}
.y5b{bottom:250.366502pt;}
.y7f{bottom:252.199969pt;}
.y2c{bottom:257.033169pt;}
.y18{bottom:258.033169pt;}
.y6e{bottom:264.533302pt;}
.y45{bottom:265.033169pt;}
.yb{bottom:266.633182pt;}
.y8c{bottom:274.366502pt;}
.y9d{bottom:274.866636pt;}
.y5a{bottom:282.366502pt;}
.y7e{bottom:284.199969pt;}
.y2b{bottom:285.033169pt;}
.y44{bottom:287.699836pt;}
.y17{bottom:290.033169pt;}
.y6d{bottom:296.533302pt;}
.ya{bottom:301.299849pt;}
.y9c{bottom:306.866636pt;}
.y43{bottom:310.366502pt;}
.y8b{bottom:313.033169pt;}
.y2a{bottom:314.366502pt;}
.y7d{bottom:316.199969pt;}
.y16{bottom:322.033169pt;}
.y6c{bottom:328.533302pt;}
.y42{bottom:331.699836pt;}
.y9b{bottom:338.866636pt;}
.y9{bottom:339.699836pt;}
.y29{bottom:343.699836pt;}
.y59{bottom:346.366502pt;}
.y7c{bottom:348.199969pt;}
.y8a{bottom:350.366502pt;}
.y15{bottom:354.033169pt;}
.y41{bottom:354.366502pt;}
.y6b{bottom:360.533302pt;}
.y9a{bottom:370.866636pt;}
.y28{bottom:371.699836pt;}
.y40{bottom:377.033169pt;}
.y58{bottom:378.366502pt;}
.y7b{bottom:380.199969pt;}
.y8{bottom:382.366502pt;}
.y14{bottom:386.033169pt;}
.y89{bottom:389.033169pt;}
.y6a{bottom:392.533302pt;}
.y3f{bottom:399.699836pt;}
.y27{bottom:401.033169pt;}
.y99{bottom:402.866636pt;}
.y57{bottom:410.366502pt;}
.y7a{bottom:412.199969pt;}
.y13{bottom:418.033169pt;}
.y3e{bottom:422.366502pt;}
.y69{bottom:424.533302pt;}
.y7{bottom:425.033169pt;}
.y88{bottom:427.699836pt;}
.y26{bottom:430.366502pt;}
.y98{bottom:434.866636pt;}
.y56{bottom:442.366502pt;}
.y3d{bottom:443.699836pt;}
.y79{bottom:444.199969pt;}
.y12{bottom:450.033169pt;}
.y68{bottom:456.533302pt;}
.y25{bottom:458.366502pt;}
.y6{bottom:459.666502pt;}
.y3c{bottom:466.366502pt;}
.y97{bottom:466.866636pt;}
.y55{bottom:474.366502pt;}
.y78{bottom:476.199969pt;}
.y11{bottom:482.033169pt;}
.y24{bottom:487.699836pt;}
.y67{bottom:488.533302pt;}
.y3b{bottom:489.033169pt;}
.y5{bottom:498.333302pt;}
.y96{bottom:498.866636pt;}
.y87{bottom:505.033169pt;}
.y54{bottom:506.366502pt;}
.y77{bottom:508.199969pt;}
.y3a{bottom:511.699836pt;}
.y10{bottom:514.033169pt;}
.y23{bottom:515.699836pt;}
.y66{bottom:520.533302pt;}
.y95{bottom:530.866636pt;}
.y39{bottom:534.366502pt;}
.y4{bottom:536.999969pt;}
.y53{bottom:538.366502pt;}
.y76{bottom:540.199969pt;}
.y86{bottom:542.366502pt;}
.y22{bottom:545.033169pt;}
.yf{bottom:546.033169pt;}
.y38{bottom:555.699836pt;}
.y94{bottom:562.866636pt;}
.y52{bottom:570.366502pt;}
.y21{bottom:573.033169pt;}
.y3{bottom:575.666636pt;}
.ye{bottom:578.033169pt;}
.y65{bottom:604.583169pt;}
.y37{bottom:608.333169pt;}
.y51{bottom:612.166502pt;}
.y2{bottom:612.999836pt;}
.y20{bottom:631.916502pt;}
.y64{bottom:636.583169pt;}
.y36{bottom:640.333169pt;}
.y93{bottom:641.283169pt;}
.y50{bottom:644.166502pt;}
.yd{bottom:650.866636pt;}
.ya6{bottom:652.616502pt;}
.y92{bottom:660.949836pt;}
.y1f{bottom:663.916502pt;}
.y63{bottom:668.583169pt;}
.y35{bottom:672.333169pt;}
.y4f{bottom:676.166502pt;}
.h7{height:53.557292pt;}
.h8{height:61.578125pt;}
.h9{height:74.166667pt;}
.h6{height:79.171875pt;}
.h4{height:87.968750pt;}
.h5{height:89.000000pt;}
.ha{height:102.500000pt;}
.h2{height:105.562500pt;}
.h3{height:111.250000pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xc{left:28.433387pt;}
.xd{left:35.933333pt;}
.xe{left:37.922971pt;}
.x14{left:46.699013pt;}
.x10{left:51.458027pt;}
.x16{left:70.110403pt;}
.x19{left:73.555787pt;}
.x11{left:78.079120pt;}
.x6{left:118.567400pt;}
.x13{left:140.885213pt;}
.x7{left:171.682627pt;}
.x2{left:202.472400pt;}
.x1a{left:237.368253pt;}
.xa{left:283.886387pt;}
.x1b{left:286.586933pt;}
.x9{left:303.046520pt;}
.xb{left:324.107720pt;}
.x17{left:332.740653pt;}
.x3{left:336.433373pt;}
.x18{left:352.792720pt;}
.x12{left:353.691067pt;}
.x15{left:359.511520pt;}
.x8{left:363.206120pt;}
.x1{left:378.511507pt;}
.x4{left:389.519240pt;}
.xf{left:416.920320pt;}
.x5{left:472.948973pt;}
}




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