
    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_a4293553f22720c91f3a2f68.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_fe38d27fad17c284c2c0705e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_009c11a6ad22748c9ff539ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_e76a40adcd8dad68da9b60a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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_4d4d747e42cc43f9bbe2a859.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_3193b7e53cfcda50581bdd85.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898000;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_f118414229a969b1834c11e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_3a2b652abeb02fb96ba27d56.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.755000;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_89b9f7ea17bc6284dfbf4b51.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_34d0c2b32fdf73f04624cc60.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.883000;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_b1ffd5a5612582566d9120ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.704000;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:ffc;src:url('chunks/assets/font_e18f4d4de3ba906f62f2dd09.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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:ffd;src:url('chunks/assets/font_4f314ebdf5ea967f23ac48d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.672000;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:ffe;src:url('chunks/assets/font_82313db56dd6dc7a5e7a68fd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.918000;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);}
.v7{vertical-align:-162.390000px;}
.v5{vertical-align:-16.938000px;}
.v2{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.748000px;}
.v4{vertical-align:48.528000px;}
.v6{vertical-align:97.632000px;}
.v3{vertical-align:122.664000px;}
.lsa{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000384px;}
.lsb{letter-spacing:0.000440px;}
.ls22{letter-spacing:0.000503px;}
.ls11{letter-spacing:0.002759px;}
.ls2{letter-spacing:0.607358px;}
.ls24{letter-spacing:1.936742px;}
.ls3{letter-spacing:2.984915px;}
.ls15{letter-spacing:2.986472px;}
.ls10{letter-spacing:2.989289px;}
.ls1b{letter-spacing:4.232141px;}
.lse{letter-spacing:7.170409px;}
.ls7{letter-spacing:9.098189px;}
.ls27{letter-spacing:9.755443px;}
.ls28{letter-spacing:11.907379px;}
.ls6{letter-spacing:14.989103px;}
.ls12{letter-spacing:15.936409px;}
.ls14{letter-spacing:15.996058px;}
.ls21{letter-spacing:17.717606px;}
.ls1{letter-spacing:18.720016px;}
.ls5{letter-spacing:18.785470px;}
.lsd{letter-spacing:19.925518px;}
.ls25{letter-spacing:19.936525px;}
.ls1e{letter-spacing:19.941274px;}
.ls26{letter-spacing:20.084736px;}
.ls20{letter-spacing:20.873779px;}
.ls23{letter-spacing:21.088973px;}
.lsc{letter-spacing:22.911056px;}
.ls9{letter-spacing:23.312640px;}
.ls18{letter-spacing:23.886490px;}
.ls17{letter-spacing:23.932472px;}
.ls19{letter-spacing:24.101683px;}
.ls1d{letter-spacing:25.105920px;}
.ls0{letter-spacing:25.200021px;}
.ls13{letter-spacing:25.679770px;}
.ls1c{letter-spacing:28.333824px;}
.ls4{letter-spacing:28.996388px;}
.ls8{letter-spacing:29.624986px;}
.ls1a{letter-spacing:30.342298px;}
.ls1f{letter-spacing:30.629222px;}
.ls16{letter-spacing:30.700954px;}
.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;}
}
.ws38{word-spacing:-56.789591px;}
.ws15{word-spacing:-33.756703px;}
.ws33{word-spacing:-25.722808px;}
.ws37{word-spacing:-21.447629px;}
.ws39{word-spacing:-21.203743px;}
.ws21{word-spacing:-19.510886px;}
.ws24{word-spacing:-14.111859px;}
.ws2f{word-spacing:-3.730022px;}
.ws30{word-spacing:-3.658291px;}
.ws20{word-spacing:-3.586560px;}
.ws31{word-spacing:-2.008474px;}
.ws3d{word-spacing:-1.865011px;}
.ws2b{word-spacing:-1.578086px;}
.ws12{word-spacing:-0.430387px;}
.ws32{word-spacing:-0.215194px;}
.ws1e{word-spacing:0.000000px;}
.ws36{word-spacing:0.358656px;}
.ws26{word-spacing:0.430387px;}
.ws17{word-spacing:0.789043px;}
.ws7{word-spacing:0.929455px;}
.wsd{word-spacing:0.994910px;}
.ws11{word-spacing:1.434624px;}
.ws40{word-spacing:2.725786px;}
.ws3c{word-spacing:2.940979px;}
.ws5{word-spacing:3.220366px;}
.ws1f{word-spacing:3.596327px;}
.wse{word-spacing:3.613094px;}
.ws3{word-spacing:3.678549px;}
.ws1b{word-spacing:3.873485px;}
.ws6{word-spacing:3.940367px;}
.ws42{word-spacing:3.945216px;}
.wsc{word-spacing:4.267640px;}
.wsb{word-spacing:4.333095px;}
.ws2d{word-spacing:4.447334px;}
.ws23{word-spacing:4.519066px;}
.ws34{word-spacing:4.590797px;}
.ws2{word-spacing:4.648169px;}
.ws35{word-spacing:5.379840px;}
.ws43{word-spacing:5.595034px;}
.ws1d{word-spacing:5.881958px;}
.ws19{word-spacing:6.097152px;}
.ws25{word-spacing:6.240614px;}
.ws41{word-spacing:6.312346px;}
.ws9{word-spacing:8.980371px;}
.wsa{word-spacing:9.045826px;}
.ws4{word-spacing:9.504008px;}
.ws14{word-spacing:10.114099px;}
.ws13{word-spacing:10.257562px;}
.wsf{word-spacing:10.800009px;}
.ws3e{word-spacing:12.337766px;}
.ws2e{word-spacing:13.055078px;}
.ws3f{word-spacing:13.126810px;}
.ws3a{word-spacing:13.557197px;}
.ws2c{word-spacing:17.861069px;}
.ws8{word-spacing:21.927291px;}
.ws3b{word-spacing:22.738790px;}
.ws18{word-spacing:23.240909px;}
.ws29{word-spacing:25.034189px;}
.ws1a{word-spacing:26.827469px;}
.ws28{word-spacing:28.262093px;}
.ws16{word-spacing:30.342298px;}
.ws27{word-spacing:30.916147px;}
.ws1c{word-spacing:32.192873px;}
.ws2a{word-spacing:35.076557px;}
.ws1{word-spacing:44.135100px;}
.ws0{word-spacing:46.366650px;}
.ws10{word-spacing:96.750773px;}
.ws22{word-spacing:657.990298px;}
._14{margin-left:-8.521643px;}
._a{margin-left:-6.938158px;}
._6{margin-left:-5.498186px;}
._0{margin-left:-3.843225px;}
._1{margin-left:-2.238007px;}
._8{margin-left:-1.165632px;}
._11{width:1.035431px;}
._2{width:2.324084px;}
._9{width:3.927276px;}
._3{width:18.142583px;}
._10{width:19.593829px;}
._13{width:20.871937px;}
._b{width:23.312634px;}
._f{width:26.813129px;}
._4{width:29.978207px;}
._7{width:31.935799px;}
._e{width:33.403140px;}
._17{width:35.148288px;}
._d{width:37.744945px;}
._5{width:45.634407px;}
._16{width:56.595911px;}
._12{width:58.977386px;}
._c{width:96.836850px;}
._15{width:595.194304px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:63.168000px;}
.y40{bottom:108.000000px;}
.y1c{bottom:114.234000px;}
.y3f{bottom:134.002500px;}
.y1b{bottom:140.236500px;}
.y3e{bottom:160.005000px;}
.y1a{bottom:183.997500px;}
.y3d{bottom:186.007500px;}
.y3c{bottom:229.768500px;}
.y19{bottom:243.300000px;}
.y18{bottom:269.302500px;}
.y3b{bottom:289.024500px;}
.y17{bottom:295.305000px;}
.y3a{bottom:315.027000px;}
.y16{bottom:321.307500px;}
.y39{bottom:341.029500px;}
.y15{bottom:347.310000px;}
.y38{bottom:367.032000px;}
.y14{bottom:373.312500px;}
.y13{bottom:417.073500px;}
.y37{bottom:418.689000px;}
.y36{bottom:469.597500px;}
.y12{bottom:476.376000px;}
.y35{bottom:495.600000px;}
.y11{bottom:500.764500px;}
.y10{bottom:525.153000px;}
.y34{bottom:539.361000px;}
.yf{bottom:549.541500px;}
.ye{bottom:573.930000px;}
.yd{bottom:598.318500px;}
.y33{bottom:598.617000px;}
.yc{bottom:622.707000px;}
.y32{bottom:624.619500px;}
.yb{bottom:647.095500px;}
.y31{bottom:650.622000px;}
.ya{bottom:671.484000px;}
.y30{bottom:676.624500px;}
.y9{bottom:695.872500px;}
.y2f{bottom:702.627000px;}
.y2e{bottom:728.629500px;}
.y8{bottom:730.278000px;}
.y2d{bottom:754.632000px;}
.y2c{bottom:780.634500px;}
.y7{bottom:800.433000px;}
.y2b{bottom:806.637000px;}
.y2a{bottom:832.639500px;}
.y6{bottom:844.113000px;}
.y29{bottom:873.319500px;}
.y5{bottom:876.393000px;}
.y47{bottom:884.997000px;}
.y28{bottom:899.322000px;}
.y4{bottom:908.671500px;}
.y46{bottom:925.944000px;}
.y27{bottom:943.083000px;}
.y45{bottom:966.889500px;}
.y3{bottom:967.288500px;}
.y26{bottom:1002.340500px;}
.y44{bottom:1007.836500px;}
.y2{bottom:1012.120500px;}
.y25{bottom:1028.343000px;}
.y43{bottom:1051.597500px;}
.y24{bottom:1054.345500px;}
.y1{bottom:1056.952500px;}
.y22{bottom:1082.739000px;}
.y1f{bottom:1091.193000px;}
.y1e{bottom:1103.493000px;}
.y23{bottom:1103.494500px;}
.y42{bottom:1110.900000px;}
.y21{bottom:1120.530000px;}
.y20{bottom:1125.910500px;}
.y41{bottom:1136.902500px;}
.hb{height:2.869248px;}
.ha{height:32.661470px;}
.h5{height:40.385488px;}
.h4{height:49.090950px;}
.h7{height:53.798400px;}
.h6{height:57.413702px;}
.h3{height:64.557900px;}
.h2{height:92.981250px;}
.hd{height:100.501248px;}
.h9{height:103.004400px;}
.hc{height:125.527248px;}
.h8{height:125.533248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x10{left:134.338500px;}
.x1{left:145.659000px;}
.xa{left:151.897500px;}
.x9{left:176.443500px;}
.x3{left:227.365500px;}
.x11{left:278.997000px;}
.xc{left:299.808000px;}
.x7{left:359.395500px;}
.xd{left:361.362000px;}
.x6{left:369.139500px;}
.x5{left:371.092500px;}
.x4{left:376.957500px;}
.x8{left:410.455500px;}
.xe{left:414.835500px;}
.xf{left:440.302500px;}
.xb{left:442.066500px;}
@media print{
.v7{vertical-align:-144.346667pt;}
.v5{vertical-align:-15.056000pt;}
.v2{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.109333pt;}
.v4{vertical-align:43.136000pt;}
.v6{vertical-align:86.784000pt;}
.v3{vertical-align:109.034667pt;}
.lsa{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000341pt;}
.lsb{letter-spacing:0.000391pt;}
.ls22{letter-spacing:0.000447pt;}
.ls11{letter-spacing:0.002452pt;}
.ls2{letter-spacing:0.539873pt;}
.ls24{letter-spacing:1.721549pt;}
.ls3{letter-spacing:2.653258pt;}
.ls15{letter-spacing:2.654641pt;}
.ls10{letter-spacing:2.657146pt;}
.ls1b{letter-spacing:3.761903pt;}
.lse{letter-spacing:6.373697pt;}
.ls7{letter-spacing:8.087279pt;}
.ls27{letter-spacing:8.671505pt;}
.ls28{letter-spacing:10.584337pt;}
.ls6{letter-spacing:13.323647pt;}
.ls12{letter-spacing:14.165697pt;}
.ls14{letter-spacing:14.218718pt;}
.ls21{letter-spacing:15.748983pt;}
.ls1{letter-spacing:16.640014pt;}
.ls5{letter-spacing:16.698196pt;}
.lsd{letter-spacing:17.711572pt;}
.ls25{letter-spacing:17.721356pt;}
.ls1e{letter-spacing:17.725577pt;}
.ls26{letter-spacing:17.853099pt;}
.ls20{letter-spacing:18.554470pt;}
.ls23{letter-spacing:18.745754pt;}
.lsc{letter-spacing:20.365383pt;}
.ls9{letter-spacing:20.722347pt;}
.ls18{letter-spacing:21.232435pt;}
.ls17{letter-spacing:21.273308pt;}
.ls19{letter-spacing:21.423718pt;}
.ls1d{letter-spacing:22.316373pt;}
.ls0{letter-spacing:22.400019pt;}
.ls13{letter-spacing:22.826462pt;}
.ls1c{letter-spacing:25.185621pt;}
.ls4{letter-spacing:25.774567pt;}
.ls8{letter-spacing:26.333321pt;}
.ls1a{letter-spacing:26.970931pt;}
.ls1f{letter-spacing:27.225975pt;}
.ls16{letter-spacing:27.289737pt;}
.ws38{word-spacing:-50.479636pt;}
.ws15{word-spacing:-30.005958pt;}
.ws33{word-spacing:-22.864719pt;}
.ws37{word-spacing:-19.064559pt;}
.ws39{word-spacing:-18.847771pt;}
.ws21{word-spacing:-17.343010pt;}
.ws24{word-spacing:-12.543875pt;}
.ws2f{word-spacing:-3.315575pt;}
.ws30{word-spacing:-3.251814pt;}
.ws20{word-spacing:-3.188053pt;}
.ws31{word-spacing:-1.785310pt;}
.ws3d{word-spacing:-1.657788pt;}
.ws2b{word-spacing:-1.402743pt;}
.ws12{word-spacing:-0.382566pt;}
.ws32{word-spacing:-0.191283pt;}
.ws1e{word-spacing:0.000000pt;}
.ws36{word-spacing:0.318805pt;}
.ws26{word-spacing:0.382566pt;}
.ws17{word-spacing:0.701372pt;}
.ws7{word-spacing:0.826183pt;}
.wsd{word-spacing:0.884364pt;}
.ws11{word-spacing:1.275221pt;}
.ws40{word-spacing:2.422921pt;}
.ws3c{word-spacing:2.614204pt;}
.ws5{word-spacing:2.862548pt;}
.ws1f{word-spacing:3.196735pt;}
.wse{word-spacing:3.211639pt;}
.ws3{word-spacing:3.269821pt;}
.ws1b{word-spacing:3.443098pt;}
.ws6{word-spacing:3.502548pt;}
.ws42{word-spacing:3.506859pt;}
.wsc{word-spacing:3.793458pt;}
.wsb{word-spacing:3.851640pt;}
.ws2d{word-spacing:3.953186pt;}
.ws23{word-spacing:4.016947pt;}
.ws34{word-spacing:4.080708pt;}
.ws2{word-spacing:4.131706pt;}
.ws35{word-spacing:4.782080pt;}
.ws43{word-spacing:4.973363pt;}
.ws1d{word-spacing:5.228407pt;}
.ws19{word-spacing:5.419691pt;}
.ws25{word-spacing:5.547213pt;}
.ws41{word-spacing:5.610974pt;}
.ws9{word-spacing:7.982552pt;}
.wsa{word-spacing:8.040734pt;}
.ws4{word-spacing:8.448007pt;}
.ws14{word-spacing:8.990310pt;}
.ws13{word-spacing:9.117833pt;}
.wsf{word-spacing:9.600008pt;}
.ws3e{word-spacing:10.966903pt;}
.ws2e{word-spacing:11.604514pt;}
.ws3f{word-spacing:11.668275pt;}
.ws3a{word-spacing:12.050842pt;}
.ws2c{word-spacing:15.876506pt;}
.ws8{word-spacing:19.490925pt;}
.ws3b{word-spacing:20.212258pt;}
.ws18{word-spacing:20.658586pt;}
.ws29{word-spacing:22.252612pt;}
.ws1a{word-spacing:23.846639pt;}
.ws28{word-spacing:25.121860pt;}
.ws16{word-spacing:26.970931pt;}
.ws27{word-spacing:27.481020pt;}
.ws1c{word-spacing:28.615887pt;}
.ws2a{word-spacing:31.179162pt;}
.ws1{word-spacing:39.231200pt;}
.ws0{word-spacing:41.214800pt;}
.ws10{word-spacing:86.000687pt;}
.ws22{word-spacing:584.880265pt;}
._14{margin-left:-7.574794pt;}
._a{margin-left:-6.167251pt;}
._6{margin-left:-4.887277pt;}
._0{margin-left:-3.416200pt;}
._1{margin-left:-1.989340pt;}
._8{margin-left:-1.036117pt;}
._11{width:0.920383pt;}
._2{width:2.065853pt;}
._9{width:3.490912pt;}
._3{width:16.126740pt;}
._10{width:17.416737pt;}
._13{width:18.552833pt;}
._b{width:20.722341pt;}
._f{width:23.833892pt;}
._4{width:26.647295pt;}
._7{width:28.387377pt;}
._e{width:29.691680pt;}
._17{width:31.242923pt;}
._d{width:33.551062pt;}
._5{width:40.563917pt;}
._16{width:50.307476pt;}
._12{width:52.424343pt;}
._c{width:86.077200pt;}
._15{width:529.061603pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:56.149333pt;}
.y40{bottom:96.000000pt;}
.y1c{bottom:101.541333pt;}
.y3f{bottom:119.113333pt;}
.y1b{bottom:124.654667pt;}
.y3e{bottom:142.226667pt;}
.y1a{bottom:163.553333pt;}
.y3d{bottom:165.340000pt;}
.y3c{bottom:204.238667pt;}
.y19{bottom:216.266667pt;}
.y18{bottom:239.380000pt;}
.y3b{bottom:256.910667pt;}
.y17{bottom:262.493333pt;}
.y3a{bottom:280.024000pt;}
.y16{bottom:285.606667pt;}
.y39{bottom:303.137333pt;}
.y15{bottom:308.720000pt;}
.y38{bottom:326.250667pt;}
.y14{bottom:331.833333pt;}
.y13{bottom:370.732000pt;}
.y37{bottom:372.168000pt;}
.y36{bottom:417.420000pt;}
.y12{bottom:423.445333pt;}
.y35{bottom:440.533333pt;}
.y11{bottom:445.124000pt;}
.y10{bottom:466.802667pt;}
.y34{bottom:479.432000pt;}
.yf{bottom:488.481333pt;}
.ye{bottom:510.160000pt;}
.yd{bottom:531.838667pt;}
.y33{bottom:532.104000pt;}
.yc{bottom:553.517333pt;}
.y32{bottom:555.217333pt;}
.yb{bottom:575.196000pt;}
.y31{bottom:578.330667pt;}
.ya{bottom:596.874667pt;}
.y30{bottom:601.444000pt;}
.y9{bottom:618.553333pt;}
.y2f{bottom:624.557333pt;}
.y2e{bottom:647.670667pt;}
.y8{bottom:649.136000pt;}
.y2d{bottom:670.784000pt;}
.y2c{bottom:693.897333pt;}
.y7{bottom:711.496000pt;}
.y2b{bottom:717.010667pt;}
.y2a{bottom:740.124000pt;}
.y6{bottom:750.322667pt;}
.y29{bottom:776.284000pt;}
.y5{bottom:779.016000pt;}
.y47{bottom:786.664000pt;}
.y28{bottom:799.397333pt;}
.y4{bottom:807.708000pt;}
.y46{bottom:823.061333pt;}
.y27{bottom:838.296000pt;}
.y45{bottom:859.457333pt;}
.y3{bottom:859.812000pt;}
.y26{bottom:890.969333pt;}
.y44{bottom:895.854667pt;}
.y2{bottom:899.662667pt;}
.y25{bottom:914.082667pt;}
.y43{bottom:934.753333pt;}
.y24{bottom:937.196000pt;}
.y1{bottom:939.513333pt;}
.y22{bottom:962.434667pt;}
.y1f{bottom:969.949333pt;}
.y1e{bottom:980.882667pt;}
.y23{bottom:980.884000pt;}
.y42{bottom:987.466667pt;}
.y21{bottom:996.026667pt;}
.y20{bottom:1000.809333pt;}
.y41{bottom:1010.580000pt;}
.hb{height:2.550443pt;}
.ha{height:29.032418pt;}
.h5{height:35.898212pt;}
.h4{height:43.636400pt;}
.h7{height:47.820800pt;}
.h6{height:51.034402pt;}
.h3{height:57.384800pt;}
.h2{height:82.650000pt;}
.hd{height:89.334443pt;}
.h9{height:91.559467pt;}
.hc{height:111.579776pt;}
.h8{height:111.585109pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x10{left:119.412000pt;}
.x1{left:129.474667pt;}
.xa{left:135.020000pt;}
.x9{left:156.838667pt;}
.x3{left:202.102667pt;}
.x11{left:247.997333pt;}
.xc{left:266.496000pt;}
.x7{left:319.462667pt;}
.xd{left:321.210667pt;}
.x6{left:328.124000pt;}
.x5{left:329.860000pt;}
.x4{left:335.073333pt;}
.x8{left:364.849333pt;}
.xe{left:368.742667pt;}
.xf{left:391.380000pt;}
.xb{left:392.948000pt;}
}




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