
    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_6f2a7e90994af310c5588bcd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.118000;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_15d2c9827661131bc1fb02e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_caa5c01851ea296078a7a589.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_8b0e1131f1d94b34aa66a866.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_15d2c9827661131bc1fb02e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_8431afd3aea5d218bb76e56a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897000;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_a580dc2e50fcd80e46ddac4d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.108000;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_0be260436dc87c42f15c00ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.116000;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_1730af065e4896f04d078ce3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.714000;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_6bf01a94a430b263708e07e1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.748000;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_d4cf06ce3ef0a401e40252af.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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_c6a50b84668e0206695df939.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.745000;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.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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(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);}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982600px;}
.ls1e{letter-spacing:-0.300000px;}
.ls10{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.054000px;}
.ls22{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.336000px;}
.ls15{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.390000px;}
.ls1a{letter-spacing:0.405000px;}
.ls17{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.432000px;}
.lse{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.522000px;}
.ls2{letter-spacing:0.528000px;}
.ls1c{letter-spacing:0.660000px;}
.ls28{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.780000px;}
.lsd{letter-spacing:0.810000px;}
.ls4{letter-spacing:0.816000px;}
.ls26{letter-spacing:0.900000px;}
.ls13{letter-spacing:1.020000px;}
.lsb{letter-spacing:1.104000px;}
.lsf{letter-spacing:1.140000px;}
.lsa{letter-spacing:1.200000px;}
.ls1f{letter-spacing:1.290000px;}
.lsc{letter-spacing:1.320000px;}
.ls5{letter-spacing:1.440000px;}
.ls27{letter-spacing:1.590000px;}
.ls6{letter-spacing:1.704000px;}
.ls11{letter-spacing:1.728000px;}
.ls23{letter-spacing:1.740000px;}
.ls20{letter-spacing:1.860000px;}
.ls24{letter-spacing:2.160000px;}
.ls9{letter-spacing:2.304000px;}
.ls1{letter-spacing:12.510000px;}
.ls18{letter-spacing:1928.352000px;}
.ls12{letter-spacing:2033.050800px;}
.ls0{letter-spacing:2765.404800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-30.024000px;}
.ws1{word-spacing:-22.518000px;}
.ws13{word-spacing:-18.348000px;}
.ws1e{word-spacing:-14.178000px;}
.ws1f{word-spacing:-9.757800px;}
.wsa{word-spacing:-1.728000px;}
.ws2{word-spacing:-0.558000px;}
.ws6{word-spacing:-0.528000px;}
.ws44{word-spacing:-0.060000px;}
.ws26{word-spacing:-0.054000px;}
.ws3{word-spacing:-0.045000px;}
.ws4{word-spacing:0.000000px;}
.ws20{word-spacing:0.120000px;}
.ws42{word-spacing:0.180000px;}
.ws3c{word-spacing:0.240000px;}
.ws30{word-spacing:0.420000px;}
.ws2f{word-spacing:0.660000px;}
.ws3d{word-spacing:0.720000px;}
.wse{word-spacing:0.768000px;}
.ws19{word-spacing:0.840000px;}
.ws2c{word-spacing:0.960000px;}
.ws17{word-spacing:1.260000px;}
.ws23{word-spacing:1.320000px;}
.ws8{word-spacing:1.440000px;}
.wsd{word-spacing:1.536000px;}
.ws33{word-spacing:1.620000px;}
.ws9{word-spacing:1.920000px;}
.ws45{word-spacing:1.980000px;}
.ws43{word-spacing:2.100000px;}
.ws1b{word-spacing:2.340000px;}
.ws1a{word-spacing:2.400000px;}
.ws22{word-spacing:2.640000px;}
.ws36{word-spacing:2.700000px;}
.ws10{word-spacing:2.784000px;}
.ws2b{word-spacing:2.880000px;}
.ws24{word-spacing:3.480000px;}
.ws41{word-spacing:3.600000px;}
.ws32{word-spacing:3.660000px;}
.ws2a{word-spacing:3.720000px;}
.ws25{word-spacing:3.900000px;}
.wsf{word-spacing:3.936000px;}
.ws2e{word-spacing:4.320000px;}
.ws3f{word-spacing:4.620000px;}
.ws3b{word-spacing:4.680000px;}
.ws12{word-spacing:5.040000px;}
.ws38{word-spacing:5.280000px;}
.ws1c{word-spacing:5.340000px;}
.ws3e{word-spacing:5.520000px;}
.ws34{word-spacing:5.640000px;}
.ws27{word-spacing:5.940000px;}
.ws40{word-spacing:6.180000px;}
.ws29{word-spacing:6.300000px;}
.ws21{word-spacing:6.420000px;}
.wsc{word-spacing:6.432000px;}
.ws14{word-spacing:6.480000px;}
.ws35{word-spacing:6.660000px;}
.ws7{word-spacing:6.672000px;}
.ws1d{word-spacing:6.780000px;}
.ws2d{word-spacing:6.900000px;}
.ws39{word-spacing:7.080000px;}
.ws3a{word-spacing:7.200000px;}
.ws31{word-spacing:7.380000px;}
.ws16{word-spacing:7.506000px;}
.wsb{word-spacing:7.632000px;}
.ws37{word-spacing:7.860000px;}
.ws28{word-spacing:7.980000px;}
.ws15{word-spacing:8.040000px;}
.ws18{word-spacing:8.160000px;}
.ws11{word-spacing:8.340000px;}
.ws5{word-spacing:10.008000px;}
._2{margin-left:-30.048000px;}
._3{margin-left:-23.352000px;}
._1{margin-left:-9.324000px;}
._c{margin-left:-4.692000px;}
._b{margin-left:-2.805000px;}
._6{margin-left:-1.440000px;}
._8{width:1.341000px;}
._4{width:3.936000px;}
._a{width:5.016600px;}
._5{width:6.300000px;}
._d{width:7.580400px;}
._7{width:8.620800px;}
._0{width:11.676000px;}
._9{width:13.986000px;}
._e{width:42.930000px;}
.fc1{color:rgb(180,141,14);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:35.100000px;}
.fs2{font-size:36.000000px;}
.fsd{font-size:39.000000px;}
.fs3{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fsf{font-size:78.000000px;}
.fs6{font-size:81.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y63{bottom:138.195000px;}
.y4e{bottom:139.003650px;}
.y9e{bottom:139.353300px;}
.ya7{bottom:139.550850px;}
.y8{bottom:140.313450px;}
.yaa{bottom:140.435400px;}
.y7{bottom:152.314950px;}
.y4d{bottom:156.598650px;}
.y62{bottom:159.835500px;}
.y9d{bottom:160.143300px;}
.y6{bottom:170.696700px;}
.y4c{bottom:174.193650px;}
.ya4{bottom:178.748700px;}
.y9c{bottom:180.933300px;}
.y5{bottom:188.252700px;}
.y4b{bottom:191.788650px;}
.y9b{bottom:201.723300px;}
.y8b{bottom:203.192850px;}
.y4{bottom:205.808700px;}
.y61{bottom:208.219050px;}
.y4a{bottom:209.383650px;}
.y3{bottom:221.243700px;}
.y9a{bottom:222.513300px;}
.y8a{bottom:223.982850px;}
.y49{bottom:226.978650px;}
.y99{bottom:243.303300px;}
.y48{bottom:244.573650px;}
.y89{bottom:244.772850px;}
.y47{bottom:262.168650px;}
.y88{bottom:265.562850px;}
.y98{bottom:274.488300px;}
.y46{bottom:279.763650px;}
.y87{bottom:286.352850px;}
.y97{bottom:295.278300px;}
.y86{bottom:307.142850px;}
.y96{bottom:316.068300px;}
.y36{bottom:316.664100px;}
.y45{bottom:318.148650px;}
.y95{bottom:336.858300px;}
.y35{bottom:337.454100px;}
.y85{bottom:338.327850px;}
.y44{bottom:338.938650px;}
.y94{bottom:357.648300px;}
.y34{bottom:358.244100px;}
.y84{bottom:359.117850px;}
.yb1{bottom:359.317200px;}
.y43{bottom:359.728650px;}
.y33{bottom:379.034100px;}
.y83{bottom:379.907850px;}
.yb0{bottom:380.107200px;}
.y93{bottom:388.833300px;}
.y32{bottom:399.824100px;}
.y82{bottom:400.697850px;}
.y92{bottom:409.623300px;}
.yaf{bottom:411.292200px;}
.y42{bottom:415.573950px;}
.y31{bottom:420.614100px;}
.y81{bottom:421.487850px;}
.y91{bottom:430.413300px;}
.y41{bottom:431.557950px;}
.yae{bottom:432.082200px;}
.y30{bottom:441.404100px;}
.y90{bottom:451.203300px;}
.y80{bottom:452.672850px;}
.yad{bottom:452.872200px;}
.y8f{bottom:471.993300px;}
.y7f{bottom:473.462850px;}
.y7e{bottom:494.252850px;}
.yac{bottom:498.935100px;}
.y7d{bottom:515.042850px;}
.y8e{bottom:518.056200px;}
.y2f{bottom:535.008450px;}
.y7c{bottom:535.832850px;}
.y2e{bottom:549.396450px;}
.y26{bottom:556.560450px;}
.y7b{bottom:556.622850px;}
.y2d{bottom:563.784450px;}
.y25{bottom:570.948450px;}
.ya9{bottom:575.830500px;}
.y7a{bottom:577.412850px;}
.y2c{bottom:578.172450px;}
.y24{bottom:585.336450px;}
.yab{bottom:588.301500px;}
.y2b{bottom:592.560450px;}
.y8d{bottom:597.217950px;}
.y23{bottom:599.724450px;}
.y2a{bottom:606.948450px;}
.y79{bottom:608.597850px;}
.y22{bottom:614.112450px;}
.ya6{bottom:619.591500px;}
.y8c{bottom:620.858550px;}
.y29{bottom:621.336450px;}
.y21{bottom:628.500450px;}
.y78{bottom:629.387850px;}
.y28{bottom:635.724450px;}
.ya8{bottom:641.399250px;}
.y20{bottom:650.089500px;}
.y27{bottom:650.112450px;}
.y77{bottom:650.177850px;}
.y60{bottom:666.999900px;}
.y76{bottom:670.967850px;}
.ya5{bottom:685.160250px;}
.y1f{bottom:688.457100px;}
.y75{bottom:691.757850px;}
.y1e{bottom:702.845100px;}
.y16{bottom:710.032200px;}
.y74{bottom:712.547850px;}
.y1d{bottom:717.233100px;}
.ya3{bottom:719.779950px;}
.y15{bottom:724.420200px;}
.y1c{bottom:731.621100px;}
.y5f{bottom:732.528450px;}
.y14{bottom:738.808200px;}
.y73{bottom:743.732850px;}
.y1b{bottom:746.009100px;}
.y13{bottom:753.196200px;}
.y5e{bottom:753.318450px;}
.y1a{bottom:760.397100px;}
.y72{bottom:764.522850px;}
.y12{bottom:767.584200px;}
.y5d{bottom:774.108450px;}
.y19{bottom:774.785100px;}
.y11{bottom:781.972200px;}
.ya2{bottom:785.312850px;}
.y18{bottom:789.173100px;}
.y5c{bottom:794.898450px;}
.y71{bottom:795.707850px;}
.y10{bottom:803.561100px;}
.y17{bottom:803.584200px;}
.ya1{bottom:806.102850px;}
.y5b{bottom:815.688450px;}
.y70{bottom:816.497850px;}
.y5a{bottom:836.478450px;}
.y6f{bottom:837.287850px;}
.y59{bottom:857.268450px;}
.y6e{bottom:858.077850px;}
.y58{bottom:878.058450px;}
.y6d{bottom:878.867850px;}
.ya0{bottom:889.262850px;}
.y57{bottom:909.243450px;}
.y6c{bottom:910.052850px;}
.yf{bottom:911.043300px;}
.y56{bottom:930.033450px;}
.y6b{bottom:930.842850px;}
.ye{bottom:931.833300px;}
.y40{bottom:938.054100px;}
.y55{bottom:950.823450px;}
.y6a{bottom:951.632850px;}
.yd{bottom:952.611150px;}
.y54{bottom:971.613450px;}
.y69{bottom:972.422850px;}
.y53{bottom:992.403450px;}
.y9f{bottom:993.212850px;}
.yc{bottom:997.005150px;}
.y68{bottom:1003.607850px;}
.y3f{bottom:1003.613850px;}
.y52{bottom:1013.193450px;}
.yb{bottom:1022.205150px;}
.y67{bottom:1024.397850px;}
.y3e{bottom:1024.403850px;}
.y66{bottom:1045.187850px;}
.y3d{bottom:1045.193850px;}
.y51{bottom:1054.772850px;}
.y3c{bottom:1065.977850px;}
.ya{bottom:1066.590150px;}
.y50{bottom:1072.367850px;}
.y65{bottom:1086.232500px;}
.y3b{bottom:1086.767850px;}
.y4f{bottom:1089.962850px;}
.y9{bottom:1098.990000px;}
.y64{bottom:1107.022500px;}
.y3a{bottom:1107.557850px;}
.y2{bottom:1164.901350px;}
.y39{bottom:1172.943900px;}
.y38{bottom:1193.874900px;}
.y37{bottom:1207.374900px;}
.h3{height:26.496000px;}
.h6{height:30.912000px;}
.h4{height:31.206000px;}
.h12{height:32.832000px;}
.h5{height:33.435000px;}
.hd{height:35.328000px;}
.hc{height:43.584000px;}
.h15{height:43.860000px;}
.hb{height:44.160000px;}
.he{height:46.308000px;}
.h11{height:49.032000px;}
.ha{height:54.480000px;}
.hf{height:54.504000px;}
.h13{height:57.204000px;}
.h10{height:57.960000px;}
.h2{height:59.928000px;}
.h14{height:71.760000px;}
.h8{height:75.432000px;}
.h9{height:76.272000px;}
.h7{height:78.948000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x11{left:86.980500px;}
.xb{left:93.543300px;}
.x13{left:108.234900px;}
.x1e{left:136.069350px;}
.x3{left:145.195650px;}
.x4{left:150.820650px;}
.xf{left:153.069300px;}
.x10{left:155.011950px;}
.x15{left:156.864450px;}
.x14{left:174.787950px;}
.x12{left:181.705650px;}
.x16{left:189.047700px;}
.xe{left:223.375800px;}
.xc{left:284.883300px;}
.x1a{left:285.949200px;}
.x1b{left:305.837250px;}
.x5{left:311.660550px;}
.x1d{left:327.504900px;}
.x19{left:343.553850px;}
.x1c{left:346.093500px;}
.x18{left:356.732400px;}
.x17{left:437.997000px;}
.x7{left:450.082950px;}
.xa{left:543.323100px;}
.x6{left:598.498800px;}
.x9{left:602.164950px;}
.x8{left:662.812950px;}
.xd{left:687.464700px;}
.x2{left:752.406450px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984533pt;}
.ls1e{letter-spacing:-0.266667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.048000pt;}
.ls22{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.298667pt;}
.ls15{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.346667pt;}
.ls1a{letter-spacing:0.360000pt;}
.ls17{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.464000pt;}
.ls2{letter-spacing:0.469333pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls28{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.693333pt;}
.lsd{letter-spacing:0.720000pt;}
.ls4{letter-spacing:0.725333pt;}
.ls26{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.906667pt;}
.lsb{letter-spacing:0.981333pt;}
.lsf{letter-spacing:1.013333pt;}
.lsa{letter-spacing:1.066667pt;}
.ls1f{letter-spacing:1.146667pt;}
.lsc{letter-spacing:1.173333pt;}
.ls5{letter-spacing:1.280000pt;}
.ls27{letter-spacing:1.413333pt;}
.ls6{letter-spacing:1.514667pt;}
.ls11{letter-spacing:1.536000pt;}
.ls23{letter-spacing:1.546667pt;}
.ls20{letter-spacing:1.653333pt;}
.ls24{letter-spacing:1.920000pt;}
.ls9{letter-spacing:2.048000pt;}
.ls1{letter-spacing:11.120000pt;}
.ls18{letter-spacing:1714.090667pt;}
.ls12{letter-spacing:1807.156267pt;}
.ls0{letter-spacing:2458.137600pt;}
.ws0{word-spacing:-26.688000pt;}
.ws1{word-spacing:-20.016000pt;}
.ws13{word-spacing:-16.309333pt;}
.ws1e{word-spacing:-12.602667pt;}
.ws1f{word-spacing:-8.673600pt;}
.wsa{word-spacing:-1.536000pt;}
.ws2{word-spacing:-0.496000pt;}
.ws6{word-spacing:-0.469333pt;}
.ws44{word-spacing:-0.053333pt;}
.ws26{word-spacing:-0.048000pt;}
.ws3{word-spacing:-0.040000pt;}
.ws4{word-spacing:0.000000pt;}
.ws20{word-spacing:0.106667pt;}
.ws42{word-spacing:0.160000pt;}
.ws3c{word-spacing:0.213333pt;}
.ws30{word-spacing:0.373333pt;}
.ws2f{word-spacing:0.586667pt;}
.ws3d{word-spacing:0.640000pt;}
.wse{word-spacing:0.682667pt;}
.ws19{word-spacing:0.746667pt;}
.ws2c{word-spacing:0.853333pt;}
.ws17{word-spacing:1.120000pt;}
.ws23{word-spacing:1.173333pt;}
.ws8{word-spacing:1.280000pt;}
.wsd{word-spacing:1.365333pt;}
.ws33{word-spacing:1.440000pt;}
.ws9{word-spacing:1.706667pt;}
.ws45{word-spacing:1.760000pt;}
.ws43{word-spacing:1.866667pt;}
.ws1b{word-spacing:2.080000pt;}
.ws1a{word-spacing:2.133333pt;}
.ws22{word-spacing:2.346667pt;}
.ws36{word-spacing:2.400000pt;}
.ws10{word-spacing:2.474667pt;}
.ws2b{word-spacing:2.560000pt;}
.ws24{word-spacing:3.093333pt;}
.ws41{word-spacing:3.200000pt;}
.ws32{word-spacing:3.253333pt;}
.ws2a{word-spacing:3.306667pt;}
.ws25{word-spacing:3.466667pt;}
.wsf{word-spacing:3.498667pt;}
.ws2e{word-spacing:3.840000pt;}
.ws3f{word-spacing:4.106667pt;}
.ws3b{word-spacing:4.160000pt;}
.ws12{word-spacing:4.480000pt;}
.ws38{word-spacing:4.693333pt;}
.ws1c{word-spacing:4.746667pt;}
.ws3e{word-spacing:4.906667pt;}
.ws34{word-spacing:5.013333pt;}
.ws27{word-spacing:5.280000pt;}
.ws40{word-spacing:5.493333pt;}
.ws29{word-spacing:5.600000pt;}
.ws21{word-spacing:5.706667pt;}
.wsc{word-spacing:5.717333pt;}
.ws14{word-spacing:5.760000pt;}
.ws35{word-spacing:5.920000pt;}
.ws7{word-spacing:5.930667pt;}
.ws1d{word-spacing:6.026667pt;}
.ws2d{word-spacing:6.133333pt;}
.ws39{word-spacing:6.293333pt;}
.ws3a{word-spacing:6.400000pt;}
.ws31{word-spacing:6.560000pt;}
.ws16{word-spacing:6.672000pt;}
.wsb{word-spacing:6.784000pt;}
.ws37{word-spacing:6.986667pt;}
.ws28{word-spacing:7.093333pt;}
.ws15{word-spacing:7.146667pt;}
.ws18{word-spacing:7.253333pt;}
.ws11{word-spacing:7.413333pt;}
.ws5{word-spacing:8.896000pt;}
._2{margin-left:-26.709333pt;}
._3{margin-left:-20.757333pt;}
._1{margin-left:-8.288000pt;}
._c{margin-left:-4.170667pt;}
._b{margin-left:-2.493333pt;}
._6{margin-left:-1.280000pt;}
._8{width:1.192000pt;}
._4{width:3.498667pt;}
._a{width:4.459200pt;}
._5{width:5.600000pt;}
._d{width:6.738133pt;}
._7{width:7.662933pt;}
._0{width:10.378667pt;}
._9{width:12.432000pt;}
._e{width:38.160000pt;}
.fse{font-size:31.200000pt;}
.fs2{font-size:32.000000pt;}
.fsd{font-size:34.666667pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fsf{font-size:69.333333pt;}
.fs6{font-size:72.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y63{bottom:122.840000pt;}
.y4e{bottom:123.558800pt;}
.y9e{bottom:123.869600pt;}
.ya7{bottom:124.045200pt;}
.y8{bottom:124.723067pt;}
.yaa{bottom:124.831467pt;}
.y7{bottom:135.391067pt;}
.y4d{bottom:139.198800pt;}
.y62{bottom:142.076000pt;}
.y9d{bottom:142.349600pt;}
.y6{bottom:151.730400pt;}
.y4c{bottom:154.838800pt;}
.ya4{bottom:158.887733pt;}
.y9c{bottom:160.829600pt;}
.y5{bottom:167.335733pt;}
.y4b{bottom:170.478800pt;}
.y9b{bottom:179.309600pt;}
.y8b{bottom:180.615867pt;}
.y4{bottom:182.941067pt;}
.y61{bottom:185.083600pt;}
.y4a{bottom:186.118800pt;}
.y3{bottom:196.661067pt;}
.y9a{bottom:197.789600pt;}
.y8a{bottom:199.095867pt;}
.y49{bottom:201.758800pt;}
.y99{bottom:216.269600pt;}
.y48{bottom:217.398800pt;}
.y89{bottom:217.575867pt;}
.y47{bottom:233.038800pt;}
.y88{bottom:236.055867pt;}
.y98{bottom:243.989600pt;}
.y46{bottom:248.678800pt;}
.y87{bottom:254.535867pt;}
.y97{bottom:262.469600pt;}
.y86{bottom:273.015867pt;}
.y96{bottom:280.949600pt;}
.y36{bottom:281.479200pt;}
.y45{bottom:282.798800pt;}
.y95{bottom:299.429600pt;}
.y35{bottom:299.959200pt;}
.y85{bottom:300.735867pt;}
.y44{bottom:301.278800pt;}
.y94{bottom:317.909600pt;}
.y34{bottom:318.439200pt;}
.y84{bottom:319.215867pt;}
.yb1{bottom:319.393067pt;}
.y43{bottom:319.758800pt;}
.y33{bottom:336.919200pt;}
.y83{bottom:337.695867pt;}
.yb0{bottom:337.873067pt;}
.y93{bottom:345.629600pt;}
.y32{bottom:355.399200pt;}
.y82{bottom:356.175867pt;}
.y92{bottom:364.109600pt;}
.yaf{bottom:365.593067pt;}
.y42{bottom:369.399067pt;}
.y31{bottom:373.879200pt;}
.y81{bottom:374.655867pt;}
.y91{bottom:382.589600pt;}
.y41{bottom:383.607067pt;}
.yae{bottom:384.073067pt;}
.y30{bottom:392.359200pt;}
.y90{bottom:401.069600pt;}
.y80{bottom:402.375867pt;}
.yad{bottom:402.553067pt;}
.y8f{bottom:419.549600pt;}
.y7f{bottom:420.855867pt;}
.y7e{bottom:439.335867pt;}
.yac{bottom:443.497867pt;}
.y7d{bottom:457.815867pt;}
.y8e{bottom:460.494400pt;}
.y2f{bottom:475.563067pt;}
.y7c{bottom:476.295867pt;}
.y2e{bottom:488.352400pt;}
.y26{bottom:494.720400pt;}
.y7b{bottom:494.775867pt;}
.y2d{bottom:501.141733pt;}
.y25{bottom:507.509733pt;}
.ya9{bottom:511.849333pt;}
.y7a{bottom:513.255867pt;}
.y2c{bottom:513.931067pt;}
.y24{bottom:520.299067pt;}
.yab{bottom:522.934667pt;}
.y2b{bottom:526.720400pt;}
.y8d{bottom:530.860400pt;}
.y23{bottom:533.088400pt;}
.y2a{bottom:539.509733pt;}
.y79{bottom:540.975867pt;}
.y22{bottom:545.877733pt;}
.ya6{bottom:550.748000pt;}
.y8c{bottom:551.874267pt;}
.y29{bottom:552.299067pt;}
.y21{bottom:558.667067pt;}
.y78{bottom:559.455867pt;}
.y28{bottom:565.088400pt;}
.ya8{bottom:570.132667pt;}
.y20{bottom:577.857333pt;}
.y27{bottom:577.877733pt;}
.y77{bottom:577.935867pt;}
.y60{bottom:592.888800pt;}
.y76{bottom:596.415867pt;}
.ya5{bottom:609.031333pt;}
.y1f{bottom:611.961867pt;}
.y75{bottom:614.895867pt;}
.y1e{bottom:624.751200pt;}
.y16{bottom:631.139733pt;}
.y74{bottom:633.375867pt;}
.y1d{bottom:637.540533pt;}
.ya3{bottom:639.804400pt;}
.y15{bottom:643.929067pt;}
.y1c{bottom:650.329867pt;}
.y5f{bottom:651.136400pt;}
.y14{bottom:656.718400pt;}
.y73{bottom:661.095867pt;}
.y1b{bottom:663.119200pt;}
.y13{bottom:669.507733pt;}
.y5e{bottom:669.616400pt;}
.y1a{bottom:675.908533pt;}
.y72{bottom:679.575867pt;}
.y12{bottom:682.297067pt;}
.y5d{bottom:688.096400pt;}
.y19{bottom:688.697867pt;}
.y11{bottom:695.086400pt;}
.ya2{bottom:698.055867pt;}
.y18{bottom:701.487200pt;}
.y5c{bottom:706.576400pt;}
.y71{bottom:707.295867pt;}
.y10{bottom:714.276533pt;}
.y17{bottom:714.297067pt;}
.ya1{bottom:716.535867pt;}
.y5b{bottom:725.056400pt;}
.y70{bottom:725.775867pt;}
.y5a{bottom:743.536400pt;}
.y6f{bottom:744.255867pt;}
.y59{bottom:762.016400pt;}
.y6e{bottom:762.735867pt;}
.y58{bottom:780.496400pt;}
.y6d{bottom:781.215867pt;}
.ya0{bottom:790.455867pt;}
.y57{bottom:808.216400pt;}
.y6c{bottom:808.935867pt;}
.yf{bottom:809.816267pt;}
.y56{bottom:826.696400pt;}
.y6b{bottom:827.415867pt;}
.ye{bottom:828.296267pt;}
.y40{bottom:833.825867pt;}
.y55{bottom:845.176400pt;}
.y6a{bottom:845.895867pt;}
.yd{bottom:846.765467pt;}
.y54{bottom:863.656400pt;}
.y69{bottom:864.375867pt;}
.y53{bottom:882.136400pt;}
.y9f{bottom:882.855867pt;}
.yc{bottom:886.226800pt;}
.y68{bottom:892.095867pt;}
.y3f{bottom:892.101200pt;}
.y52{bottom:900.616400pt;}
.yb{bottom:908.626800pt;}
.y67{bottom:910.575867pt;}
.y3e{bottom:910.581200pt;}
.y66{bottom:929.055867pt;}
.y3d{bottom:929.061200pt;}
.y51{bottom:937.575867pt;}
.y3c{bottom:947.535867pt;}
.ya{bottom:948.080133pt;}
.y50{bottom:953.215867pt;}
.y65{bottom:965.540000pt;}
.y3b{bottom:966.015867pt;}
.y4f{bottom:968.855867pt;}
.y9{bottom:976.880000pt;}
.y64{bottom:984.020000pt;}
.y3a{bottom:984.495867pt;}
.y2{bottom:1035.467867pt;}
.y39{bottom:1042.616800pt;}
.y38{bottom:1061.222133pt;}
.y37{bottom:1073.222133pt;}
.h3{height:23.552000pt;}
.h6{height:27.477333pt;}
.h4{height:27.738667pt;}
.h12{height:29.184000pt;}
.h5{height:29.720000pt;}
.hd{height:31.402667pt;}
.hc{height:38.741333pt;}
.h15{height:38.986667pt;}
.hb{height:39.253333pt;}
.he{height:41.162667pt;}
.h11{height:43.584000pt;}
.ha{height:48.426667pt;}
.hf{height:48.448000pt;}
.h13{height:50.848000pt;}
.h10{height:51.520000pt;}
.h2{height:53.269333pt;}
.h14{height:63.786667pt;}
.h8{height:67.050667pt;}
.h9{height:67.797333pt;}
.h7{height:70.176000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x11{left:77.316000pt;}
.xb{left:83.149600pt;}
.x13{left:96.208800pt;}
.x1e{left:120.950533pt;}
.x3{left:129.062800pt;}
.x4{left:134.062800pt;}
.xf{left:136.061600pt;}
.x10{left:137.788400pt;}
.x15{left:139.435067pt;}
.x14{left:155.367067pt;}
.x12{left:161.516133pt;}
.x16{left:168.042400pt;}
.xe{left:198.556267pt;}
.xc{left:253.229600pt;}
.x1a{left:254.177067pt;}
.x1b{left:271.855333pt;}
.x5{left:277.031600pt;}
.x1d{left:291.115467pt;}
.x19{left:305.381200pt;}
.x1c{left:307.638667pt;}
.x18{left:317.095467pt;}
.x17{left:389.330667pt;}
.x7{left:400.073733pt;}
.xa{left:482.953867pt;}
.x6{left:531.998933pt;}
.x9{left:535.257733pt;}
.x8{left:589.167067pt;}
.xd{left:611.079733pt;}
.x2{left:668.805733pt;}
}




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