
    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_38139fb86c15cab2c1677b68.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.144000;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_65d47cb1c7aa25fac1f74fcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_2e3a6cd77bf8d1368cbac55d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.732000;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_635fa2ef7591271ce883b20c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.111000;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:ff6;src:url('chunks/assets/font_555f22140ceb30b1d32ba98b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.732000;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:ff7;src:url('chunks/assets/font_555f22140ceb30b1d32ba98b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.732000;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:ff8;src:url('chunks/assets/font_c41530a163df58b57fc0f334.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.111000;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:ff9;src:url('chunks/assets/font_d99ebf69b9c99711efd3f1a8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.730000;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:ffa;src:url('chunks/assets/font_132786fa03973e8bd28bf841.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.924000;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:ffb;src:url('chunks/assets/font_9e318c3ab2def4f60aff0ad5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.927000;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);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,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;}
.ls1{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.714000px;}
.ls7{letter-spacing:0.768000px;}
.lse{letter-spacing:0.840000px;}
.lsc{letter-spacing:0.972000px;}
.lsd{letter-spacing:1.080000px;}
.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;}
}
.ws58{word-spacing:-7.722000px;}
.ws44{word-spacing:-3.996000px;}
.ws50{word-spacing:-3.240000px;}
.ws25{word-spacing:-3.132000px;}
.ws3a{word-spacing:-3.078000px;}
.ws4a{word-spacing:-2.862000px;}
.ws26{word-spacing:-2.754000px;}
.ws39{word-spacing:-2.604000px;}
.ws4c{word-spacing:-2.592000px;}
.ws13{word-spacing:-2.538000px;}
.ws36{word-spacing:-2.112000px;}
.ws5b{word-spacing:-2.016000px;}
.ws35{word-spacing:-1.944000px;}
.ws9{word-spacing:-1.890000px;}
.ws7{word-spacing:-1.806000px;}
.ws2d{word-spacing:-1.782000px;}
.ws38{word-spacing:-1.620000px;}
.ws51{word-spacing:-1.566000px;}
.ws27{word-spacing:-1.512000px;}
.ws37{word-spacing:-1.344000px;}
.ws12{word-spacing:-1.296000px;}
.ws4{word-spacing:-1.176000px;}
.ws54{word-spacing:-1.080000px;}
.ws14{word-spacing:-1.026000px;}
.ws3d{word-spacing:-0.864000px;}
.ws4f{word-spacing:-0.810000px;}
.ws2{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.648000px;}
.ws45{word-spacing:-0.594000px;}
.ws42{word-spacing:-0.378000px;}
.ws5a{word-spacing:-0.162000px;}
.ws3{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws3e{word-spacing:0.054000px;}
.ws20{word-spacing:0.162000px;}
.ws1b{word-spacing:0.216000px;}
.ws33{word-spacing:0.432000px;}
.ws23{word-spacing:0.486000px;}
.ws1e{word-spacing:0.594000px;}
.ws56{word-spacing:0.756000px;}
.ws43{word-spacing:0.810000px;}
.ws4e{word-spacing:0.864000px;}
.ws59{word-spacing:0.918000px;}
.ws1{word-spacing:1.020000px;}
.ws10{word-spacing:1.242000px;}
.ws57{word-spacing:1.458000px;}
.wsa{word-spacing:2.052000px;}
.ws3c{word-spacing:2.160000px;}
.ws4d{word-spacing:2.268000px;}
.ws31{word-spacing:2.376000px;}
.ws53{word-spacing:2.592000px;}
.ws1a{word-spacing:2.808000px;}
.ws2c{word-spacing:3.240000px;}
.ws17{word-spacing:3.672000px;}
.ws21{word-spacing:4.320000px;}
.ws52{word-spacing:4.428000px;}
.ws1f{word-spacing:4.806000px;}
.ws55{word-spacing:5.022000px;}
.ws6{word-spacing:5.292000px;}
.ws1c{word-spacing:5.454000px;}
.ws32{word-spacing:5.508000px;}
.wse{word-spacing:5.562000px;}
.ws49{word-spacing:5.616000px;}
.ws28{word-spacing:6.318000px;}
.ws46{word-spacing:6.426000px;}
.ws19{word-spacing:6.480000px;}
.wsf{word-spacing:6.588000px;}
.ws18{word-spacing:6.642000px;}
.ws3b{word-spacing:6.696000px;}
.ws24{word-spacing:6.804000px;}
.ws11{word-spacing:7.236000px;}
.ws15{word-spacing:7.290000px;}
.ws4b{word-spacing:7.722000px;}
.wsc{word-spacing:7.884000px;}
.ws1d{word-spacing:8.478000px;}
.ws5{word-spacing:8.652000px;}
.wsd{word-spacing:8.910000px;}
.ws48{word-spacing:9.180000px;}
.ws47{word-spacing:9.234000px;}
.ws3f{word-spacing:9.288000px;}
.ws34{word-spacing:9.450000px;}
.ws41{word-spacing:9.612000px;}
.ws40{word-spacing:9.882000px;}
.wsb{word-spacing:9.936000px;}
.ws30{word-spacing:10.152000px;}
.ws16{word-spacing:10.368000px;}
.ws8{word-spacing:11.256000px;}
.ws2e{word-spacing:12.042000px;}
.ws2a{word-spacing:13.014000px;}
.ws2b{word-spacing:13.608000px;}
.ws29{word-spacing:16.524000px;}
.ws2f{word-spacing:16.578000px;}
._7{margin-left:-18.225000px;}
._8{margin-left:-16.848000px;}
._9{margin-left:-15.012000px;}
._e{margin-left:-13.878000px;}
._a{margin-left:-9.018000px;}
._d{margin-left:-7.771200px;}
._c{margin-left:-6.493200px;}
._6{margin-left:-4.995000px;}
._b{margin-left:-3.844800px;}
._4{margin-left:-2.790600px;}
._1{margin-left:-1.614000px;}
._0{width:1.296000px;}
._3{width:2.592000px;}
._2{width:14.112000px;}
._5{width:45.108000px;}
.fc3{color:rgb(23,111,192);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:16.511850px;}
.y1e{bottom:29.763750px;}
.y5b{bottom:95.244150px;}
.y26{bottom:96.033450px;}
.y4{bottom:97.125005px;}
.y25{bottom:109.536450px;}
.y5a{bottom:113.244150px;}
.y24{bottom:130.473450px;}
.y1d{bottom:139.264499px;}
.y23{bottom:143.976450px;}
.y59{bottom:149.455650px;}
.y22{bottom:157.479450px;}
.y58{bottom:167.451150px;}
.y57{bottom:185.446650px;}
.y14{bottom:196.933500px;}
.y87{bottom:203.253150px;}
.y56{bottom:203.442150px;}
.y1c{bottom:209.518500px;}
.y13{bottom:209.533503px;}
.y86{bottom:221.248650px;}
.y55{bottom:221.437650px;}
.y1b{bottom:222.118502px;}
.y12{bottom:222.133505px;}
.y1a{bottom:234.718504px;}
.y11{bottom:234.733496px;}
.y85{bottom:239.244150px;}
.y84{bottom:239.248650px;}
.y54{bottom:239.433150px;}
.y83{bottom:257.244150px;}
.y53{bottom:257.428650px;}
.y19{bottom:259.918497px;}
.y10{bottom:259.933500px;}
.y18{bottom:272.518500px;}
.yf{bottom:272.533503px;}
.y82{bottom:275.244150px;}
.y52{bottom:275.424150px;}
.y17{bottom:285.118502px;}
.ye{bottom:285.133499px;}
.y81{bottom:293.244150px;}
.y51{bottom:293.419650px;}
.y16{bottom:310.318501px;}
.yd{bottom:310.333501px;}
.y80{bottom:311.244150px;}
.y50{bottom:311.415150px;}
.y15{bottom:322.918500px;}
.yc{bottom:322.933500px;}
.y7f{bottom:329.248650px;}
.y4f{bottom:329.410650px;}
.y7e{bottom:347.244150px;}
.y4e{bottom:347.406150px;}
.yb{bottom:348.133500px;}
.y7d{bottom:365.244150px;}
.y4d{bottom:365.401650px;}
.y7c{bottom:383.248650px;}
.y4c{bottom:383.397150px;}
.ya{bottom:386.785499px;}
.y7b{bottom:401.244150px;}
.y4b{bottom:401.392650px;}
.y9{bottom:408.044999px;}
.y4a{bottom:419.388150px;}
.y7a{bottom:437.311650px;}
.y49{bottom:437.383650px;}
.y79{bottom:455.307150px;}
.y48{bottom:455.379150px;}
.y78{bottom:473.302650px;}
.y77{bottom:491.298150px;}
.y47{bottom:491.383650px;}
.y76{bottom:509.293650px;}
.y46{bottom:509.379150px;}
.y8{bottom:520.864502px;}
.y75{bottom:527.289150px;}
.y45{bottom:527.374650px;}
.y7{bottom:538.864499px;}
.y74{bottom:545.284650px;}
.y44{bottom:545.370150px;}
.y6{bottom:556.864499px;}
.y73{bottom:563.280150px;}
.y43{bottom:563.365650px;}
.y72{bottom:581.275650px;}
.y42{bottom:581.361150px;}
.y71{bottom:599.271150px;}
.y41{bottom:599.356650px;}
.y70{bottom:617.266650px;}
.y40{bottom:617.352150px;}
.y6f{bottom:635.262150px;}
.y3f{bottom:635.347650px;}
.y6e{bottom:653.257650px;}
.y3e{bottom:653.343150px;}
.y6d{bottom:671.253150px;}
.y3d{bottom:671.338650px;}
.y6c{bottom:689.248650px;}
.y3c{bottom:689.334150px;}
.y6b{bottom:707.244150px;}
.y3b{bottom:707.329650px;}
.y3a{bottom:725.325150px;}
.y5{bottom:726.298500px;}
.y6a{bottom:743.257650px;}
.y39{bottom:743.320650px;}
.y3{bottom:752.599495px;}
.y69{bottom:761.253150px;}
.y38{bottom:761.316150px;}
.y68{bottom:779.248650px;}
.y37{bottom:779.311650px;}
.y67{bottom:797.244150px;}
.y36{bottom:797.307150px;}
.y66{bottom:815.257650px;}
.y35{bottom:815.302650px;}
.y65{bottom:833.253150px;}
.y34{bottom:833.298150px;}
.y64{bottom:851.248650px;}
.y33{bottom:851.293650px;}
.y63{bottom:869.244150px;}
.y32{bottom:869.289150px;}
.y2{bottom:879.369000px;}
.y62{bottom:887.262150px;}
.y31{bottom:887.284650px;}
.y61{bottom:905.257650px;}
.y30{bottom:905.280150px;}
.y60{bottom:923.253150px;}
.y2f{bottom:923.275650px;}
.y5f{bottom:941.248650px;}
.y2e{bottom:941.271150px;}
.y5e{bottom:959.244150px;}
.y2d{bottom:959.266650px;}
.y1{bottom:966.726000px;}
.y5d{bottom:977.244150px;}
.y2c{bottom:977.262150px;}
.y2b{bottom:995.257650px;}
.y5c{bottom:1013.244150px;}
.y2a{bottom:1013.253150px;}
.y29{bottom:1031.248650px;}
.y28{bottom:1049.244150px;}
.y27{bottom:1098.982950px;}
.y21{bottom:1117.511850px;}
.y20{bottom:1143.779550px;}
.h8{height:32.130000px;}
.hf{height:34.464000px;}
.he{height:37.674000px;}
.h9{height:37.968000px;}
.hd{height:43.080000px;}
.h3{height:48.195000px;}
.hc{height:48.438000px;}
.h7{height:54.240000px;}
.h6{height:56.952000px;}
.h10{height:61.404000px;}
.h2{height:65.088000px;}
.h5{height:92.208000px;}
.h4{height:119.055004px;}
.hb{height:1177.500000px;}
.ha{height:1177.795500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:34.015800px;}
.x7{left:97.796100px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x8{left:114.806100px;}
.xe{left:145.561200px;}
.x4{left:203.484001px;}
.xd{left:215.501100px;}
.xf{left:356.910000px;}
.x10{left:372.367500px;}
.x3{left:454.959000px;}
.xa{left:480.472350px;}
.xc{left:631.757400px;}
.x5{left:667.999650px;}
.x11{left:692.910750px;}
.x9{left:743.168100px;}
.xb{left:759.521400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.634667pt;}
.ls7{letter-spacing:0.682667pt;}
.lse{letter-spacing:0.746667pt;}
.lsc{letter-spacing:0.864000pt;}
.lsd{letter-spacing:0.960000pt;}
.ws58{word-spacing:-6.864000pt;}
.ws44{word-spacing:-3.552000pt;}
.ws50{word-spacing:-2.880000pt;}
.ws25{word-spacing:-2.784000pt;}
.ws3a{word-spacing:-2.736000pt;}
.ws4a{word-spacing:-2.544000pt;}
.ws26{word-spacing:-2.448000pt;}
.ws39{word-spacing:-2.314667pt;}
.ws4c{word-spacing:-2.304000pt;}
.ws13{word-spacing:-2.256000pt;}
.ws36{word-spacing:-1.877333pt;}
.ws5b{word-spacing:-1.792000pt;}
.ws35{word-spacing:-1.728000pt;}
.ws9{word-spacing:-1.680000pt;}
.ws7{word-spacing:-1.605333pt;}
.ws2d{word-spacing:-1.584000pt;}
.ws38{word-spacing:-1.440000pt;}
.ws51{word-spacing:-1.392000pt;}
.ws27{word-spacing:-1.344000pt;}
.ws37{word-spacing:-1.194667pt;}
.ws12{word-spacing:-1.152000pt;}
.ws4{word-spacing:-1.045333pt;}
.ws54{word-spacing:-0.960000pt;}
.ws14{word-spacing:-0.912000pt;}
.ws3d{word-spacing:-0.768000pt;}
.ws4f{word-spacing:-0.720000pt;}
.ws2{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.576000pt;}
.ws45{word-spacing:-0.528000pt;}
.ws42{word-spacing:-0.336000pt;}
.ws5a{word-spacing:-0.144000pt;}
.ws3{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.048000pt;}
.ws20{word-spacing:0.144000pt;}
.ws1b{word-spacing:0.192000pt;}
.ws33{word-spacing:0.384000pt;}
.ws23{word-spacing:0.432000pt;}
.ws1e{word-spacing:0.528000pt;}
.ws56{word-spacing:0.672000pt;}
.ws43{word-spacing:0.720000pt;}
.ws4e{word-spacing:0.768000pt;}
.ws59{word-spacing:0.816000pt;}
.ws1{word-spacing:0.906667pt;}
.ws10{word-spacing:1.104000pt;}
.ws57{word-spacing:1.296000pt;}
.wsa{word-spacing:1.824000pt;}
.ws3c{word-spacing:1.920000pt;}
.ws4d{word-spacing:2.016000pt;}
.ws31{word-spacing:2.112000pt;}
.ws53{word-spacing:2.304000pt;}
.ws1a{word-spacing:2.496000pt;}
.ws2c{word-spacing:2.880000pt;}
.ws17{word-spacing:3.264000pt;}
.ws21{word-spacing:3.840000pt;}
.ws52{word-spacing:3.936000pt;}
.ws1f{word-spacing:4.272000pt;}
.ws55{word-spacing:4.464000pt;}
.ws6{word-spacing:4.704000pt;}
.ws1c{word-spacing:4.848000pt;}
.ws32{word-spacing:4.896000pt;}
.wse{word-spacing:4.944000pt;}
.ws49{word-spacing:4.992000pt;}
.ws28{word-spacing:5.616000pt;}
.ws46{word-spacing:5.712000pt;}
.ws19{word-spacing:5.760000pt;}
.wsf{word-spacing:5.856000pt;}
.ws18{word-spacing:5.904000pt;}
.ws3b{word-spacing:5.952000pt;}
.ws24{word-spacing:6.048000pt;}
.ws11{word-spacing:6.432000pt;}
.ws15{word-spacing:6.480000pt;}
.ws4b{word-spacing:6.864000pt;}
.wsc{word-spacing:7.008000pt;}
.ws1d{word-spacing:7.536000pt;}
.ws5{word-spacing:7.690667pt;}
.wsd{word-spacing:7.920000pt;}
.ws48{word-spacing:8.160000pt;}
.ws47{word-spacing:8.208000pt;}
.ws3f{word-spacing:8.256000pt;}
.ws34{word-spacing:8.400000pt;}
.ws41{word-spacing:8.544000pt;}
.ws40{word-spacing:8.784000pt;}
.wsb{word-spacing:8.832000pt;}
.ws30{word-spacing:9.024000pt;}
.ws16{word-spacing:9.216000pt;}
.ws8{word-spacing:10.005333pt;}
.ws2e{word-spacing:10.704000pt;}
.ws2a{word-spacing:11.568000pt;}
.ws2b{word-spacing:12.096000pt;}
.ws29{word-spacing:14.688000pt;}
.ws2f{word-spacing:14.736000pt;}
._7{margin-left:-16.200000pt;}
._8{margin-left:-14.976000pt;}
._9{margin-left:-13.344000pt;}
._e{margin-left:-12.336000pt;}
._a{margin-left:-8.016000pt;}
._d{margin-left:-6.907733pt;}
._c{margin-left:-5.771733pt;}
._6{margin-left:-4.440000pt;}
._b{margin-left:-3.417600pt;}
._4{margin-left:-2.480533pt;}
._1{margin-left:-1.434667pt;}
._0{width:1.152000pt;}
._3{width:2.304000pt;}
._2{width:12.544000pt;}
._5{width:40.096000pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:14.677200pt;}
.y1e{bottom:26.456667pt;}
.y5b{bottom:84.661467pt;}
.y26{bottom:85.363067pt;}
.y4{bottom:86.333337pt;}
.y25{bottom:97.365733pt;}
.y5a{bottom:100.661467pt;}
.y24{bottom:115.976400pt;}
.y1d{bottom:123.790666pt;}
.y23{bottom:127.979067pt;}
.y59{bottom:132.849467pt;}
.y22{bottom:139.981733pt;}
.y58{bottom:148.845467pt;}
.y57{bottom:164.841467pt;}
.y14{bottom:175.052000pt;}
.y87{bottom:180.669467pt;}
.y56{bottom:180.837467pt;}
.y1c{bottom:186.238666pt;}
.y13{bottom:186.252002pt;}
.y86{bottom:196.665467pt;}
.y55{bottom:196.833467pt;}
.y1b{bottom:197.438668pt;}
.y12{bottom:197.452004pt;}
.y1a{bottom:208.638670pt;}
.y11{bottom:208.651996pt;}
.y85{bottom:212.661467pt;}
.y84{bottom:212.665467pt;}
.y54{bottom:212.829467pt;}
.y83{bottom:228.661467pt;}
.y53{bottom:228.825467pt;}
.y19{bottom:231.038664pt;}
.y10{bottom:231.052000pt;}
.y18{bottom:242.238666pt;}
.yf{bottom:242.252002pt;}
.y82{bottom:244.661467pt;}
.y52{bottom:244.821467pt;}
.y17{bottom:253.438668pt;}
.ye{bottom:253.451999pt;}
.y81{bottom:260.661467pt;}
.y51{bottom:260.817467pt;}
.y16{bottom:275.838667pt;}
.yd{bottom:275.852001pt;}
.y80{bottom:276.661467pt;}
.y50{bottom:276.813467pt;}
.y15{bottom:287.038667pt;}
.yc{bottom:287.052000pt;}
.y7f{bottom:292.665467pt;}
.y4f{bottom:292.809467pt;}
.y7e{bottom:308.661467pt;}
.y4e{bottom:308.805467pt;}
.yb{bottom:309.452000pt;}
.y7d{bottom:324.661467pt;}
.y4d{bottom:324.801467pt;}
.y7c{bottom:340.665467pt;}
.y4c{bottom:340.797467pt;}
.ya{bottom:343.809333pt;}
.y7b{bottom:356.661467pt;}
.y4b{bottom:356.793467pt;}
.y9{bottom:362.706666pt;}
.y4a{bottom:372.789467pt;}
.y7a{bottom:388.721467pt;}
.y49{bottom:388.785467pt;}
.y79{bottom:404.717467pt;}
.y48{bottom:404.781467pt;}
.y78{bottom:420.713467pt;}
.y77{bottom:436.709467pt;}
.y47{bottom:436.785467pt;}
.y76{bottom:452.705467pt;}
.y46{bottom:452.781467pt;}
.y8{bottom:462.990669pt;}
.y75{bottom:468.701467pt;}
.y45{bottom:468.777467pt;}
.y7{bottom:478.990666pt;}
.y74{bottom:484.697467pt;}
.y44{bottom:484.773467pt;}
.y6{bottom:494.990666pt;}
.y73{bottom:500.693467pt;}
.y43{bottom:500.769467pt;}
.y72{bottom:516.689467pt;}
.y42{bottom:516.765467pt;}
.y71{bottom:532.685467pt;}
.y41{bottom:532.761467pt;}
.y70{bottom:548.681467pt;}
.y40{bottom:548.757467pt;}
.y6f{bottom:564.677467pt;}
.y3f{bottom:564.753467pt;}
.y6e{bottom:580.673467pt;}
.y3e{bottom:580.749467pt;}
.y6d{bottom:596.669467pt;}
.y3d{bottom:596.745467pt;}
.y6c{bottom:612.665467pt;}
.y3c{bottom:612.741467pt;}
.y6b{bottom:628.661467pt;}
.y3b{bottom:628.737467pt;}
.y3a{bottom:644.733467pt;}
.y5{bottom:645.598667pt;}
.y6a{bottom:660.673467pt;}
.y39{bottom:660.729467pt;}
.y3{bottom:668.977329pt;}
.y69{bottom:676.669467pt;}
.y38{bottom:676.725467pt;}
.y68{bottom:692.665467pt;}
.y37{bottom:692.721467pt;}
.y67{bottom:708.661467pt;}
.y36{bottom:708.717467pt;}
.y66{bottom:724.673467pt;}
.y35{bottom:724.713467pt;}
.y65{bottom:740.669467pt;}
.y34{bottom:740.709467pt;}
.y64{bottom:756.665467pt;}
.y33{bottom:756.705467pt;}
.y63{bottom:772.661467pt;}
.y32{bottom:772.701467pt;}
.y2{bottom:781.661334pt;}
.y62{bottom:788.677467pt;}
.y31{bottom:788.697467pt;}
.y61{bottom:804.673467pt;}
.y30{bottom:804.693467pt;}
.y60{bottom:820.669467pt;}
.y2f{bottom:820.689467pt;}
.y5f{bottom:836.665467pt;}
.y2e{bottom:836.685467pt;}
.y5e{bottom:852.661467pt;}
.y2d{bottom:852.681467pt;}
.y1{bottom:859.312000pt;}
.y5d{bottom:868.661467pt;}
.y2c{bottom:868.677467pt;}
.y2b{bottom:884.673467pt;}
.y5c{bottom:900.661467pt;}
.y2a{bottom:900.669467pt;}
.y29{bottom:916.665467pt;}
.y28{bottom:932.661467pt;}
.y27{bottom:976.873733pt;}
.y21{bottom:993.343867pt;}
.y20{bottom:1016.692933pt;}
.h8{height:28.560000pt;}
.hf{height:30.634667pt;}
.he{height:33.488000pt;}
.h9{height:33.749333pt;}
.hd{height:38.293333pt;}
.h3{height:42.840000pt;}
.hc{height:43.056000pt;}
.h7{height:48.213333pt;}
.h6{height:50.624000pt;}
.h10{height:54.581333pt;}
.h2{height:57.856000pt;}
.h5{height:81.962667pt;}
.h4{height:105.826671pt;}
.hb{height:1046.666667pt;}
.ha{height:1046.929333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:30.236267pt;}
.x7{left:86.929867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x8{left:102.049867pt;}
.xe{left:129.387733pt;}
.x4{left:180.874667pt;}
.xd{left:191.556533pt;}
.xf{left:317.253333pt;}
.x10{left:330.993333pt;}
.x3{left:404.408000pt;}
.xa{left:427.086533pt;}
.xc{left:561.562133pt;}
.x5{left:593.777467pt;}
.x11{left:615.920667pt;}
.x9{left:660.593867pt;}
.xb{left:675.130133pt;}
}




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