
    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_a7dc8b74afd627da5b142c78.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.690918;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_4653dd36c78e249961171fa0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6562dcb8dd876a58dd898115.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b88bcd39ef85e4726cffcc07.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_14c8a1f4c86b538df01612e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_a311fbbdedb57a4bb4268576.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_939b298df07244a1a310580c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.720000px;}
.v2{vertical-align:30.240000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.159840px;}
.ls4{letter-spacing:0.167040px;}
.lse{letter-spacing:0.205440px;}
.ls2{letter-spacing:0.213120px;}
.ls9{letter-spacing:0.259200px;}
.ls6{letter-spacing:0.319680px;}
.lsb{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.372960px;}
.ls10{letter-spacing:0.376800px;}
.lsf{letter-spacing:0.377400px;}
.lsc{letter-spacing:0.453600px;}
.ls7{letter-spacing:0.518400px;}
.lsa{letter-spacing:0.583200px;}
.ls8{letter-spacing:0.648000px;}
.lsd{letter-spacing:3.116280px;}
.ls0{letter-spacing:5.570520px;}
.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;}
}
.ws12{word-spacing:-0.712800px;}
.ws1c{word-spacing:-0.648000px;}
.ws19{word-spacing:-0.583200px;}
.ws24{word-spacing:-0.518400px;}
.ws6{word-spacing:-0.426240px;}
.ws22{word-spacing:-0.388800px;}
.ws9{word-spacing:-0.372960px;}
.ws16{word-spacing:-0.324000px;}
.wsa{word-spacing:-0.266400px;}
.ws1{word-spacing:-0.250560px;}
.ws5{word-spacing:-0.213120px;}
.ws0{word-spacing:-0.083520px;}
.wsb{word-spacing:-0.072000px;}
.wsc{word-spacing:-0.064800px;}
.ws2{word-spacing:-0.059040px;}
.ws3{word-spacing:-0.053280px;}
.ws39{word-spacing:-0.036000px;}
.ws18{word-spacing:0.000000px;}
.ws7{word-spacing:8.362440px;}
.ws27{word-spacing:9.072000px;}
.ws1f{word-spacing:9.094800px;}
.ws23{word-spacing:9.266400px;}
.ws8{word-spacing:9.377280px;}
.ws36{word-spacing:9.396000px;}
.ws21{word-spacing:9.460800px;}
.ws2c{word-spacing:9.590400px;}
.ws3f{word-spacing:9.655200px;}
.ws3a{word-spacing:9.741000px;}
.ws3b{word-spacing:9.784800px;}
.ws20{word-spacing:10.368000px;}
.ws1e{word-spacing:10.376700px;}
.ws29{word-spacing:10.886400px;}
.ws2a{word-spacing:11.145600px;}
.ws4{word-spacing:11.242080px;}
.ws44{word-spacing:11.413800px;}
.ws1d{word-spacing:11.469600px;}
.ws1b{word-spacing:11.988000px;}
.ws45{word-spacing:12.117600px;}
.ws42{word-spacing:12.700800px;}
.ws35{word-spacing:12.765600px;}
.ws26{word-spacing:12.960000px;}
.wsf{word-spacing:13.413600px;}
.ws40{word-spacing:13.543200px;}
.wse{word-spacing:13.672800px;}
.ws31{word-spacing:13.737600px;}
.ws17{word-spacing:13.802400px;}
.ws30{word-spacing:13.996800px;}
.ws3d{word-spacing:14.580000px;}
.ws3e{word-spacing:15.163200px;}
.ws2f{word-spacing:15.681600px;}
.ws2b{word-spacing:15.940800px;}
.ws2d{word-spacing:16.264800px;}
.ws1a{word-spacing:16.783200px;}
.ws3c{word-spacing:16.848000px;}
.ws10{word-spacing:17.172000px;}
.wsd{word-spacing:17.366400px;}
.ws34{word-spacing:17.496000px;}
.ws13{word-spacing:19.504800px;}
.ws11{word-spacing:19.509000px;}
.ws25{word-spacing:20.217600px;}
.ws14{word-spacing:20.930400px;}
.ws15{word-spacing:21.254400px;}
.ws32{word-spacing:22.680000px;}
.ws41{word-spacing:23.198400px;}
.ws28{word-spacing:24.688800px;}
.ws38{word-spacing:26.956800px;}
.ws37{word-spacing:30.456000px;}
.ws33{word-spacing:31.557600px;}
.ws47{word-spacing:32.140800px;}
.ws43{word-spacing:59.745600px;}
.ws2e{word-spacing:111.650400px;}
.ws46{word-spacing:175.543200px;}
._7{margin-left:-7.200600px;}
._9{margin-left:-1.319340px;}
._0{width:1.085760px;}
._4{width:2.436480px;}
._5{width:3.503520px;}
._2{width:4.615200px;}
._1{width:6.294000px;}
._3{width:7.778880px;}
._6{width:9.347040px;}
._8{width:14.609100px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs3{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:53.280000px;}
.fs2{font-size:59.040000px;}
.fs5{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:18.359985px;}
.y8c{bottom:91.800015px;}
.y5e{bottom:93.600015px;}
.y2d{bottom:108.000015px;}
.y8b{bottom:108.360015px;}
.y5d{bottom:113.760015px;}
.y2c{bottom:128.160015px;}
.y8a{bottom:131.400015px;}
.y5c{bottom:133.920015px;}
.ya0{bottom:137.880015px;}
.y89{bottom:141.480015px;}
.y2b{bottom:148.320015px;}
.y5b{bottom:154.080015px;}
.y2a{bottom:168.480015px;}
.y9f{bottom:172.440015px;}
.y5a{bottom:174.240015px;}
.y88{bottom:176.040015px;}
.y29{bottom:188.640015px;}
.y59{bottom:194.040015px;}
.y87{bottom:196.200015px;}
.y9e{bottom:207.000015px;}
.y28{bottom:208.800015px;}
.y58{bottom:214.200015px;}
.y86{bottom:216.360015px;}
.y27{bottom:228.960015px;}
.y57{bottom:234.360015px;}
.y85{bottom:236.520015px;}
.y9d{bottom:241.920015px;}
.y26{bottom:249.120015px;}
.y56{bottom:254.520015px;}
.y84{bottom:256.680015px;}
.y25{bottom:269.280015px;}
.y55{bottom:274.680015px;}
.y9c{bottom:276.480015px;}
.y83{bottom:276.840015px;}
.y24{bottom:289.440015px;}
.y54{bottom:294.840015px;}
.y82{bottom:297.000015px;}
.y9b{bottom:300.600015px;}
.y23{bottom:309.240015px;}
.y53{bottom:315.000015px;}
.y81{bottom:317.160015px;}
.y9a{bottom:324.720015px;}
.y22{bottom:329.400015px;}
.y52{bottom:335.160015px;}
.y80{bottom:337.320015px;}
.y21{bottom:349.560015px;}
.y51{bottom:355.320015px;}
.y7f{bottom:357.480015px;}
.y99{bottom:359.280015px;}
.y20{bottom:369.720015px;}
.y50{bottom:375.480015px;}
.y7e{bottom:377.280015px;}
.y98{bottom:383.760015px;}
.y1f{bottom:389.880015px;}
.y4f{bottom:395.640015px;}
.y7d{bottom:397.440015px;}
.y97{bottom:407.880015px;}
.y1e{bottom:410.040015px;}
.y4e{bottom:415.080015px;}
.y7c{bottom:417.600015px;}
.y1d{bottom:430.200015px;}
.y4d{bottom:436.320015px;}
.y7b{bottom:437.760015px;}
.y96{bottom:442.440015px;}
.y1c{bottom:450.360015px;}
.y4c{bottom:456.480015px;}
.y7a{bottom:457.920015px;}
.y1b{bottom:470.520015px;}
.y4b{bottom:476.640015px;}
.y95{bottom:477.000015px;}
.y79{bottom:478.080015px;}
.y1a{bottom:490.680015px;}
.y4a{bottom:496.800015px;}
.y78{bottom:498.240015px;}
.y94{bottom:501.120015px;}
.y19{bottom:510.840015px;}
.y49{bottom:516.960015px;}
.y77{bottom:518.400015px;}
.y93{bottom:525.600015px;}
.y18{bottom:531.000015px;}
.y48{bottom:537.120015px;}
.y76{bottom:538.560015px;}
.y17{bottom:551.160015px;}
.y47{bottom:557.280015px;}
.y75{bottom:558.720015px;}
.y92{bottom:560.160015px;}
.y46{bottom:577.440015px;}
.y74{bottom:578.880015px;}
.y16{bottom:592.560015px;}
.y91{bottom:594.720015px;}
.y45{bottom:597.600015px;}
.y73{bottom:599.040015px;}
.y44{bottom:617.760015px;}
.y90{bottom:618.840015px;}
.y72{bottom:619.200015px;}
.y43{bottom:637.920015px;}
.y71{bottom:639.360015px;}
.y15{bottom:652.680015px;}
.y8f{bottom:653.760015px;}
.y42{bottom:658.080015px;}
.y70{bottom:659.520015px;}
.y8e{bottom:677.880015px;}
.y41{bottom:678.240015px;}
.y6f{bottom:679.680015px;}
.y14{bottom:682.200015px;}
.y40{bottom:698.400015px;}
.y6e{bottom:699.840015px;}
.y13{bottom:707.760015px;}
.y3f{bottom:718.560015px;}
.y8d{bottom:719.640015px;}
.y6d{bottom:720.000015px;}
.y12{bottom:723.960015px;}
.y3e{bottom:738.720015px;}
.y6c{bottom:740.160015px;}
.y11{bottom:740.520015px;}
.y10{bottom:757.080015px;}
.y3d{bottom:758.880015px;}
.y6b{bottom:760.320015px;}
.yf{bottom:773.640015px;}
.y3c{bottom:779.040015px;}
.y6a{bottom:780.120015px;}
.ye{bottom:790.200015px;}
.y3b{bottom:798.840015px;}
.y69{bottom:800.280015px;}
.y3a{bottom:819.000015px;}
.y68{bottom:820.440015px;}
.y39{bottom:839.160015px;}
.y67{bottom:840.600015px;}
.yd{bottom:842.400015px;}
.y38{bottom:859.320015px;}
.y66{bottom:860.760015px;}
.y37{bottom:879.480015px;}
.y65{bottom:880.920015px;}
.yc{bottom:894.960015px;}
.y36{bottom:899.640015px;}
.y64{bottom:901.080015px;}
.y35{bottom:919.800015px;}
.yb{bottom:920.520015px;}
.y63{bottom:921.240015px;}
.ya{bottom:937.080015px;}
.y62{bottom:941.400015px;}
.y9{bottom:953.280015px;}
.y34{bottom:961.200015px;}
.y61{bottom:961.560015px;}
.y8{bottom:969.840015px;}
.y60{bottom:981.720015px;}
.y7{bottom:986.400015px;}
.y5f{bottom:1001.880015px;}
.y33{bottom:1022.040015px;}
.y32{bottom:1042.200015px;}
.y6{bottom:1047.960015px;}
.y31{bottom:1062.360015px;}
.ya3{bottom:1063.440015px;}
.y5{bottom:1065.240015px;}
.y4{bottom:1077.840015px;}
.y30{bottom:1082.520015px;}
.ya2{bottom:1087.560015px;}
.y3{bottom:1095.840015px;}
.y2f{bottom:1102.680015px;}
.y2{bottom:1118.520015px;}
.ya1{bottom:1122.480015px;}
.y2e{bottom:1122.840015px;}
.h5{height:25.839844px;}
.h7{height:37.046250px;}
.h6{height:38.242969px;}
.h4{height:44.559844px;}
.ha{height:45.056250px;}
.h9{height:46.511719px;}
.h3{height:47.988281px;}
.h8{height:50.062500px;}
.h2{height:58.072500px;}
.hb{height:60.214219px;}
.h1{height:1226.520000px;}
.h0{height:1263.000000px;}
.w1{width:856.620000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:18.000000px;}
.x3{left:109.439925px;}
.x8{left:145.440000px;}
.x7{left:151.965150px;}
.x2{left:164.312550px;}
.x4{left:359.062200px;}
.x6{left:398.904000px;}
.x5{left:428.114850px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.640000pt;}
.v2{vertical-align:26.880000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.142080pt;}
.ls4{letter-spacing:0.148480pt;}
.lse{letter-spacing:0.182613pt;}
.ls2{letter-spacing:0.189440pt;}
.ls9{letter-spacing:0.230400pt;}
.ls6{letter-spacing:0.284160pt;}
.lsb{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.331520pt;}
.ls10{letter-spacing:0.334933pt;}
.lsf{letter-spacing:0.335467pt;}
.lsc{letter-spacing:0.403200pt;}
.ls7{letter-spacing:0.460800pt;}
.lsa{letter-spacing:0.518400pt;}
.ls8{letter-spacing:0.576000pt;}
.lsd{letter-spacing:2.770027pt;}
.ls0{letter-spacing:4.951573pt;}
.ws12{word-spacing:-0.633600pt;}
.ws1c{word-spacing:-0.576000pt;}
.ws19{word-spacing:-0.518400pt;}
.ws24{word-spacing:-0.460800pt;}
.ws6{word-spacing:-0.378880pt;}
.ws22{word-spacing:-0.345600pt;}
.ws9{word-spacing:-0.331520pt;}
.ws16{word-spacing:-0.288000pt;}
.wsa{word-spacing:-0.236800pt;}
.ws1{word-spacing:-0.222720pt;}
.ws5{word-spacing:-0.189440pt;}
.ws0{word-spacing:-0.074240pt;}
.wsb{word-spacing:-0.064000pt;}
.wsc{word-spacing:-0.057600pt;}
.ws2{word-spacing:-0.052480pt;}
.ws3{word-spacing:-0.047360pt;}
.ws39{word-spacing:-0.032000pt;}
.ws18{word-spacing:0.000000pt;}
.ws7{word-spacing:7.433280pt;}
.ws27{word-spacing:8.064000pt;}
.ws1f{word-spacing:8.084267pt;}
.ws23{word-spacing:8.236800pt;}
.ws8{word-spacing:8.335360pt;}
.ws36{word-spacing:8.352000pt;}
.ws21{word-spacing:8.409600pt;}
.ws2c{word-spacing:8.524800pt;}
.ws3f{word-spacing:8.582400pt;}
.ws3a{word-spacing:8.658667pt;}
.ws3b{word-spacing:8.697600pt;}
.ws20{word-spacing:9.216000pt;}
.ws1e{word-spacing:9.223733pt;}
.ws29{word-spacing:9.676800pt;}
.ws2a{word-spacing:9.907200pt;}
.ws4{word-spacing:9.992960pt;}
.ws44{word-spacing:10.145600pt;}
.ws1d{word-spacing:10.195200pt;}
.ws1b{word-spacing:10.656000pt;}
.ws45{word-spacing:10.771200pt;}
.ws42{word-spacing:11.289600pt;}
.ws35{word-spacing:11.347200pt;}
.ws26{word-spacing:11.520000pt;}
.wsf{word-spacing:11.923200pt;}
.ws40{word-spacing:12.038400pt;}
.wse{word-spacing:12.153600pt;}
.ws31{word-spacing:12.211200pt;}
.ws17{word-spacing:12.268800pt;}
.ws30{word-spacing:12.441600pt;}
.ws3d{word-spacing:12.960000pt;}
.ws3e{word-spacing:13.478400pt;}
.ws2f{word-spacing:13.939200pt;}
.ws2b{word-spacing:14.169600pt;}
.ws2d{word-spacing:14.457600pt;}
.ws1a{word-spacing:14.918400pt;}
.ws3c{word-spacing:14.976000pt;}
.ws10{word-spacing:15.264000pt;}
.wsd{word-spacing:15.436800pt;}
.ws34{word-spacing:15.552000pt;}
.ws13{word-spacing:17.337600pt;}
.ws11{word-spacing:17.341333pt;}
.ws25{word-spacing:17.971200pt;}
.ws14{word-spacing:18.604800pt;}
.ws15{word-spacing:18.892800pt;}
.ws32{word-spacing:20.160000pt;}
.ws41{word-spacing:20.620800pt;}
.ws28{word-spacing:21.945600pt;}
.ws38{word-spacing:23.961600pt;}
.ws37{word-spacing:27.072000pt;}
.ws33{word-spacing:28.051200pt;}
.ws47{word-spacing:28.569600pt;}
.ws43{word-spacing:53.107200pt;}
.ws2e{word-spacing:99.244800pt;}
.ws46{word-spacing:156.038400pt;}
._7{margin-left:-6.400533pt;}
._9{margin-left:-1.172747pt;}
._0{width:0.965120pt;}
._4{width:2.165760pt;}
._5{width:3.114240pt;}
._2{width:4.102400pt;}
._1{width:5.594667pt;}
._3{width:6.914560pt;}
._6{width:8.308480pt;}
._8{width:12.985867pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:47.360000pt;}
.fs2{font-size:52.480000pt;}
.fs5{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:16.319987pt;}
.y8c{bottom:81.600013pt;}
.y5e{bottom:83.200013pt;}
.y2d{bottom:96.000013pt;}
.y8b{bottom:96.320013pt;}
.y5d{bottom:101.120013pt;}
.y2c{bottom:113.920013pt;}
.y8a{bottom:116.800013pt;}
.y5c{bottom:119.040013pt;}
.ya0{bottom:122.560013pt;}
.y89{bottom:125.760013pt;}
.y2b{bottom:131.840013pt;}
.y5b{bottom:136.960013pt;}
.y2a{bottom:149.760013pt;}
.y9f{bottom:153.280013pt;}
.y5a{bottom:154.880013pt;}
.y88{bottom:156.480013pt;}
.y29{bottom:167.680013pt;}
.y59{bottom:172.480013pt;}
.y87{bottom:174.400013pt;}
.y9e{bottom:184.000013pt;}
.y28{bottom:185.600013pt;}
.y58{bottom:190.400013pt;}
.y86{bottom:192.320013pt;}
.y27{bottom:203.520013pt;}
.y57{bottom:208.320013pt;}
.y85{bottom:210.240013pt;}
.y9d{bottom:215.040013pt;}
.y26{bottom:221.440013pt;}
.y56{bottom:226.240013pt;}
.y84{bottom:228.160013pt;}
.y25{bottom:239.360013pt;}
.y55{bottom:244.160013pt;}
.y9c{bottom:245.760013pt;}
.y83{bottom:246.080013pt;}
.y24{bottom:257.280013pt;}
.y54{bottom:262.080013pt;}
.y82{bottom:264.000013pt;}
.y9b{bottom:267.200013pt;}
.y23{bottom:274.880013pt;}
.y53{bottom:280.000013pt;}
.y81{bottom:281.920013pt;}
.y9a{bottom:288.640013pt;}
.y22{bottom:292.800013pt;}
.y52{bottom:297.920013pt;}
.y80{bottom:299.840013pt;}
.y21{bottom:310.720013pt;}
.y51{bottom:315.840013pt;}
.y7f{bottom:317.760013pt;}
.y99{bottom:319.360013pt;}
.y20{bottom:328.640013pt;}
.y50{bottom:333.760013pt;}
.y7e{bottom:335.360013pt;}
.y98{bottom:341.120013pt;}
.y1f{bottom:346.560013pt;}
.y4f{bottom:351.680013pt;}
.y7d{bottom:353.280013pt;}
.y97{bottom:362.560013pt;}
.y1e{bottom:364.480013pt;}
.y4e{bottom:368.960013pt;}
.y7c{bottom:371.200013pt;}
.y1d{bottom:382.400013pt;}
.y4d{bottom:387.840013pt;}
.y7b{bottom:389.120013pt;}
.y96{bottom:393.280013pt;}
.y1c{bottom:400.320013pt;}
.y4c{bottom:405.760013pt;}
.y7a{bottom:407.040013pt;}
.y1b{bottom:418.240013pt;}
.y4b{bottom:423.680013pt;}
.y95{bottom:424.000013pt;}
.y79{bottom:424.960013pt;}
.y1a{bottom:436.160013pt;}
.y4a{bottom:441.600013pt;}
.y78{bottom:442.880013pt;}
.y94{bottom:445.440013pt;}
.y19{bottom:454.080013pt;}
.y49{bottom:459.520013pt;}
.y77{bottom:460.800013pt;}
.y93{bottom:467.200013pt;}
.y18{bottom:472.000013pt;}
.y48{bottom:477.440013pt;}
.y76{bottom:478.720013pt;}
.y17{bottom:489.920013pt;}
.y47{bottom:495.360013pt;}
.y75{bottom:496.640013pt;}
.y92{bottom:497.920013pt;}
.y46{bottom:513.280013pt;}
.y74{bottom:514.560013pt;}
.y16{bottom:526.720013pt;}
.y91{bottom:528.640013pt;}
.y45{bottom:531.200013pt;}
.y73{bottom:532.480013pt;}
.y44{bottom:549.120013pt;}
.y90{bottom:550.080013pt;}
.y72{bottom:550.400013pt;}
.y43{bottom:567.040013pt;}
.y71{bottom:568.320013pt;}
.y15{bottom:580.160013pt;}
.y8f{bottom:581.120013pt;}
.y42{bottom:584.960013pt;}
.y70{bottom:586.240013pt;}
.y8e{bottom:602.560013pt;}
.y41{bottom:602.880013pt;}
.y6f{bottom:604.160013pt;}
.y14{bottom:606.400013pt;}
.y40{bottom:620.800013pt;}
.y6e{bottom:622.080013pt;}
.y13{bottom:629.120013pt;}
.y3f{bottom:638.720013pt;}
.y8d{bottom:639.680013pt;}
.y6d{bottom:640.000013pt;}
.y12{bottom:643.520013pt;}
.y3e{bottom:656.640013pt;}
.y6c{bottom:657.920013pt;}
.y11{bottom:658.240013pt;}
.y10{bottom:672.960013pt;}
.y3d{bottom:674.560013pt;}
.y6b{bottom:675.840013pt;}
.yf{bottom:687.680013pt;}
.y3c{bottom:692.480013pt;}
.y6a{bottom:693.440013pt;}
.ye{bottom:702.400013pt;}
.y3b{bottom:710.080013pt;}
.y69{bottom:711.360013pt;}
.y3a{bottom:728.000013pt;}
.y68{bottom:729.280013pt;}
.y39{bottom:745.920013pt;}
.y67{bottom:747.200013pt;}
.yd{bottom:748.800013pt;}
.y38{bottom:763.840013pt;}
.y66{bottom:765.120013pt;}
.y37{bottom:781.760013pt;}
.y65{bottom:783.040013pt;}
.yc{bottom:795.520013pt;}
.y36{bottom:799.680013pt;}
.y64{bottom:800.960013pt;}
.y35{bottom:817.600013pt;}
.yb{bottom:818.240013pt;}
.y63{bottom:818.880013pt;}
.ya{bottom:832.960013pt;}
.y62{bottom:836.800013pt;}
.y9{bottom:847.360013pt;}
.y34{bottom:854.400013pt;}
.y61{bottom:854.720013pt;}
.y8{bottom:862.080013pt;}
.y60{bottom:872.640013pt;}
.y7{bottom:876.800013pt;}
.y5f{bottom:890.560013pt;}
.y33{bottom:908.480013pt;}
.y32{bottom:926.400013pt;}
.y6{bottom:931.520013pt;}
.y31{bottom:944.320013pt;}
.ya3{bottom:945.280013pt;}
.y5{bottom:946.880013pt;}
.y4{bottom:958.080013pt;}
.y30{bottom:962.240013pt;}
.ya2{bottom:966.720013pt;}
.y3{bottom:974.080013pt;}
.y2f{bottom:980.160013pt;}
.y2{bottom:994.240013pt;}
.ya1{bottom:997.760013pt;}
.y2e{bottom:998.080013pt;}
.h5{height:22.968750pt;}
.h7{height:32.930000pt;}
.h6{height:33.993750pt;}
.h4{height:39.608750pt;}
.ha{height:40.050000pt;}
.h9{height:41.343750pt;}
.h3{height:42.656250pt;}
.h8{height:44.500000pt;}
.h2{height:51.620000pt;}
.hb{height:53.523750pt;}
.h1{height:1090.240000pt;}
.h0{height:1122.666667pt;}
.w1{width:761.440000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:16.000000pt;}
.x3{left:97.279933pt;}
.x8{left:129.280000pt;}
.x7{left:135.080133pt;}
.x2{left:146.055600pt;}
.x4{left:319.166400pt;}
.x6{left:354.581333pt;}
.x5{left:380.546533pt;}
}




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