
    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_afb25a87b68f3bbc010bd139.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_36b2366629954a38bfb5e6c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_65b751c6b2ddae4d3e27b8bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_b74be24d15c9f539f3942a5c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_fe32b69b42ecc2d1117999ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_bbc993e6702dd8796a534196.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_cb4c9e035c221e3dfeb5be98.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_241182d8315aeab7a295ff15.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_aa3db3d88b71cf0563f09db7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.094800px;}
.ls9{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.054720px;}
.ls2{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.lsc{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.245520px;}
.lsb{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.666720px;}
.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:-18.984000px;}
.ws9{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.479800px;}
.ws2{word-spacing:-13.734480px;}
.ws3{word-spacing:-13.680000px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._1e{margin-left:-3.132000px;}
._1{margin-left:-1.996800px;}
._6{width:1.015920px;}
._7{width:2.328000px;}
._1f{width:3.672000px;}
._0{width:5.587200px;}
._d{width:7.290480px;}
._e{width:8.908800px;}
._b{width:10.152000px;}
._c{width:11.160000px;}
._11{width:12.160080px;}
._12{width:13.759920px;}
._10{width:15.408000px;}
._2d{width:16.992000px;}
._13{width:19.388880px;}
._18{width:20.420880px;}
._24{width:21.528000px;}
._25{width:23.040000px;}
._38{width:24.264000px;}
._19{width:25.344000px;}
._26{width:26.400000px;}
._9{width:27.720000px;}
._a{width:28.872000px;}
._20{width:30.024000px;}
._16{width:31.032000px;}
._17{width:32.472000px;}
._14{width:34.848000px;}
._15{width:36.072000px;}
._2e{width:37.512000px;}
._1d{width:38.856000px;}
._1c{width:39.960000px;}
._28{width:41.076000px;}
._2f{width:42.660000px;}
._2b{width:43.848000px;}
._2c{width:44.856000px;}
._35{width:46.052880px;}
._1b{width:47.352000px;}
._27{width:49.464000px;}
._1a{width:51.408000px;}
._30{width:52.848000px;}
._31{width:54.404160px;}
._39{width:57.404880px;}
._21{width:58.536000px;}
._22{width:59.760000px;}
._f{width:61.704000px;}
._29{width:63.648000px;}
._2a{width:64.868160px;}
._33{width:71.928000px;}
._34{width:73.368000px;}
._3a{width:74.664000px;}
._36{width:90.216000px;}
._37{width:91.288080px;}
._32{width:105.480000px;}
._8{width:114.660000px;}
._23{width:128.448000px;}
._5{width:677.466720px;}
._4{width:1539.582720px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(19,138,196);}
.fc2{color:rgb(54,54,54);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.240000px;}
.yc{bottom:8.040000px;}
.y19{bottom:56.196000px;}
.y4a{bottom:56.376000px;}
.y49{bottom:73.476000px;}
.y18{bottom:88.236000px;}
.y1a{bottom:91.836000px;}
.y13{bottom:99.795000px;}
.y16{bottom:135.750000px;}
.y77{bottom:146.556000px;}
.y92{bottom:148.536000px;}
.y83{bottom:149.256000px;}
.y14{bottom:154.950000px;}
.y44{bottom:155.730000px;}
.yf{bottom:156.015000px;}
.y15{bottom:157.830000px;}
.y76{bottom:167.250000px;}
.y91{bottom:169.230000px;}
.y82{bottom:169.950000px;}
.y43{bottom:176.430000px;}
.ybd{bottom:182.010000px;}
.y75{bottom:187.950000px;}
.y90{bottom:189.930000px;}
.y81{bottom:190.650000px;}
.y42{bottom:197.130000px;}
.ybc{bottom:202.710000px;}
.y74{bottom:208.650000px;}
.y8f{bottom:210.630000px;}
.y98{bottom:211.350000px;}
.y41{bottom:217.830000px;}
.y73{bottom:229.350000px;}
.y8e{bottom:231.330000px;}
.y97{bottom:232.050000px;}
.y40{bottom:238.530000px;}
.ybb{bottom:241.410000px;}
.y72{bottom:250.050000px;}
.y8d{bottom:252.030000px;}
.y96{bottom:252.750000px;}
.y3f{bottom:259.230000px;}
.yba{bottom:262.110000px;}
.y71{bottom:270.750000px;}
.y8c{bottom:272.730000px;}
.y95{bottom:273.450000px;}
.yb9{bottom:282.855000px;}
.y70{bottom:291.495000px;}
.y8b{bottom:293.475000px;}
.y94{bottom:294.195000px;}
.y3e{bottom:297.975000px;}
.y6f{bottom:312.195000px;}
.y3d{bottom:318.675000px;}
.yb8{bottom:321.555000px;}
.y8a{bottom:323.715000px;}
.y6e{bottom:332.895000px;}
.y3c{bottom:339.375000px;}
.yb7{bottom:342.255000px;}
.ya{bottom:344.680500px;}
.y6d{bottom:353.595000px;}
.y3b{bottom:359.895000px;}
.yb6{bottom:362.955000px;}
.ya7{bottom:371.595000px;}
.y6c{bottom:374.295000px;}
.y3a{bottom:380.595000px;}
.yb5{bottom:383.655000px;}
.yd{bottom:386.490000px;}
.ya6{bottom:392.295000px;}
.y6b{bottom:394.995000px;}
.y9{bottom:395.689500px;}
.y39{bottom:401.295000px;}
.ya5{bottom:412.995000px;}
.y6a{bottom:415.695000px;}
.y38{bottom:421.995000px;}
.yb4{bottom:422.895000px;}
.y80{bottom:433.695000px;}
.yb{bottom:434.850000px;}
.y69{bottom:436.395000px;}
.y37{bottom:442.695000px;}
.y8{bottom:446.698500px;}
.y7f{bottom:454.395000px;}
.y68{bottom:457.095000px;}
.y36{bottom:463.395000px;}
.yb3{bottom:464.835000px;}
.y7e{bottom:475.095000px;}
.y67{bottom:477.795000px;}
.y35{bottom:484.095000px;}
.y10{bottom:488.055000px;}
.y7d{bottom:495.795000px;}
.y7{bottom:497.707500px;}
.y66{bottom:498.495000px;}
.y34{bottom:504.795000px;}
.yb2{bottom:506.415000px;}
.ya4{bottom:513.795000px;}
.y7c{bottom:516.495000px;}
.y65{bottom:519.195000px;}
.y33{bottom:525.495000px;}
.yb1{bottom:527.115000px;}
.ya3{bottom:534.495000px;}
.y7b{bottom:537.195000px;}
.y11{bottom:538.230000px;}
.y93{bottom:539.895000px;}
.y32{bottom:546.195000px;}
.y6{bottom:548.716500px;}
.ya2{bottom:555.195000px;}
.y64{bottom:557.715000px;}
.y7a{bottom:557.895000px;}
.yb0{bottom:565.845000px;}
.y31{bottom:566.925000px;}
.ya1{bottom:575.925000px;}
.y63{bottom:578.445000px;}
.yaf{bottom:586.545000px;}
.y30{bottom:587.625000px;}
.y17{bottom:589.605000px;}
.ya0{bottom:596.445000px;}
.y62{bottom:599.145000px;}
.y5{bottom:599.725500px;}
.y9f{bottom:617.145000px;}
.y2f{bottom:617.325000px;}
.y61{bottom:619.845000px;}
.yae{bottom:625.245000px;}
.yce{bottom:630.645000px;}
.ye{bottom:631.920000px;}
.y9e{bottom:637.845000px;}
.y2e{bottom:638.025000px;}
.y60{bottom:640.545000px;}
.ycd{bottom:651.345000px;}
.y9d{bottom:658.545000px;}
.y2d{bottom:658.725000px;}
.y5f{bottom:661.245000px;}
.yad{bottom:663.945000px;}
.y89{bottom:679.245000px;}
.y2c{bottom:679.425000px;}
.y5e{bottom:681.945000px;}
.yac{bottom:684.645000px;}
.ycc{bottom:690.045000px;}
.y88{bottom:699.945000px;}
.y5d{bottom:702.645000px;}
.y2b{bottom:709.665000px;}
.ycb{bottom:710.745000px;}
.y87{bottom:720.645000px;}
.y5c{bottom:723.345000px;}
.yca{bottom:731.445000px;}
.y86{bottom:741.345000px;}
.y5b{bottom:744.045000px;}
.yc9{bottom:752.145000px;}
.y2a{bottom:761.145000px;}
.y85{bottom:762.045000px;}
.y5a{bottom:764.745000px;}
.y4{bottom:778.225500px;}
.y84{bottom:782.745000px;}
.yab{bottom:785.445000px;}
.yc8{bottom:790.845000px;}
.y59{bottom:803.445000px;}
.yaa{bottom:806.145000px;}
.yc7{bottom:811.545000px;}
.y29{bottom:813.165000px;}
.y12{bottom:815.670000px;}
.y58{bottom:824.145000px;}
.yc6{bottom:832.245000px;}
.y57{bottom:844.845000px;}
.y28{bottom:860.910000px;}
.y56{bottom:865.590000px;}
.yc5{bottom:870.990000px;}
.y9c{bottom:883.590000px;}
.y55{bottom:886.290000px;}
.yc4{bottom:891.690000px;}
.y9b{bottom:904.290000px;}
.y3{bottom:905.716500px;}
.y54{bottom:906.990000px;}
.yc3{bottom:912.390000px;}
.y27{bottom:919.230000px;}
.y9a{bottom:924.990000px;}
.y53{bottom:927.690000px;}
.y99{bottom:945.690000px;}
.y52{bottom:948.390000px;}
.yc2{bottom:951.090000px;}
.y2{bottom:964.228500px;}
.y79{bottom:966.390000px;}
.y51{bottom:969.090000px;}
.yc1{bottom:971.790000px;}
.y26{bottom:985.290000px;}
.y78{bottom:987.090000px;}
.y1{bottom:989.716500px;}
.ya9{bottom:989.790000px;}
.yc0{bottom:992.490000px;}
.y50{bottom:1007.790000px;}
.ya8{bottom:1010.490000px;}
.ybf{bottom:1013.190000px;}
.y23{bottom:1018.590000px;}
.y4f{bottom:1028.490000px;}
.y22{bottom:1035.870000px;}
.y25{bottom:1043.790000px;}
.y4e{bottom:1049.190000px;}
.ybe{bottom:1051.890000px;}
.y21{bottom:1053.150000px;}
.y4d{bottom:1069.890000px;}
.y20{bottom:1070.250000px;}
.y24{bottom:1078.710000px;}
.y1f{bottom:1087.530000px;}
.y4c{bottom:1090.590000px;}
.y1e{bottom:1104.810000px;}
.y4b{bottom:1111.290000px;}
.y1d{bottom:1121.910000px;}
.y1c{bottom:1139.760000px;}
.y48{bottom:1141.380000px;}
.y47{bottom:1161.180000px;}
.y46{bottom:1178.460000px;}
.y45{bottom:1195.740000px;}
.h4{height:33.000000px;}
.he{height:43.536094px;}
.hb{height:44.280000px;}
.h15{height:52.066406px;}
.hd{height:52.453125px;}
.h3{height:58.406250px;}
.hc{height:58.651172px;}
.h14{height:61.370156px;}
.ha{height:62.327813px;}
.h10{height:65.566406px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h16{height:70.628906px;}
.hf{height:70.664062px;}
.h12{height:72.562500px;}
.h11{height:78.679688px;}
.h13{height:88.286133px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h9{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:4.140000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.wa{width:892.979987px;}
.w9{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:108.035987px;}
.xd{left:116.495987px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xb{left:129.275987px;}
.x10{left:134.855987px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x11{left:232.589987px;}
.x13{left:443.594987px;}
.xf{left:550.364987px;}
.x16{left:738.329987px;}
.x15{left:742.469987px;}
.x14{left:745.889987px;}
.x12{left:750.029987px;}
.xc{left:754.170000px;}
.xe{left:784.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.084267pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.048640pt;}
.ls2{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.lsc{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.218240pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.592640pt;}
.ws0{word-spacing:-16.874667pt;}
.ws9{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.870933pt;}
.ws2{word-spacing:-12.208427pt;}
.ws3{word-spacing:-12.160000pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._1e{margin-left:-2.784000pt;}
._1{margin-left:-1.774933pt;}
._6{width:0.903040pt;}
._7{width:2.069333pt;}
._1f{width:3.264000pt;}
._0{width:4.966400pt;}
._d{width:6.480427pt;}
._e{width:7.918933pt;}
._b{width:9.024000pt;}
._c{width:9.920000pt;}
._11{width:10.808960pt;}
._12{width:12.231040pt;}
._10{width:13.696000pt;}
._2d{width:15.104000pt;}
._13{width:17.234560pt;}
._18{width:18.151893pt;}
._24{width:19.136000pt;}
._25{width:20.480000pt;}
._38{width:21.568000pt;}
._19{width:22.528000pt;}
._26{width:23.466667pt;}
._9{width:24.640000pt;}
._a{width:25.664000pt;}
._20{width:26.688000pt;}
._16{width:27.584000pt;}
._17{width:28.864000pt;}
._14{width:30.976000pt;}
._15{width:32.064000pt;}
._2e{width:33.344000pt;}
._1d{width:34.538667pt;}
._1c{width:35.520000pt;}
._28{width:36.512000pt;}
._2f{width:37.920000pt;}
._2b{width:38.976000pt;}
._2c{width:39.872000pt;}
._35{width:40.935893pt;}
._1b{width:42.090667pt;}
._27{width:43.968000pt;}
._1a{width:45.696000pt;}
._30{width:46.976000pt;}
._31{width:48.359253pt;}
._39{width:51.026560pt;}
._21{width:52.032000pt;}
._22{width:53.120000pt;}
._f{width:54.848000pt;}
._29{width:56.576000pt;}
._2a{width:57.660587pt;}
._33{width:63.936000pt;}
._34{width:65.216000pt;}
._3a{width:66.368000pt;}
._36{width:80.192000pt;}
._37{width:81.144960pt;}
._32{width:93.760000pt;}
._8{width:101.920000pt;}
._23{width:114.176000pt;}
._5{width:602.192640pt;}
._4{width:1368.517973pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:2.880000pt;}
.yc{bottom:7.146667pt;}
.y19{bottom:49.952000pt;}
.y4a{bottom:50.112000pt;}
.y49{bottom:65.312000pt;}
.y18{bottom:78.432000pt;}
.y1a{bottom:81.632000pt;}
.y13{bottom:88.706667pt;}
.y16{bottom:120.666667pt;}
.y77{bottom:130.272000pt;}
.y92{bottom:132.032000pt;}
.y83{bottom:132.672000pt;}
.y14{bottom:137.733333pt;}
.y44{bottom:138.426667pt;}
.yf{bottom:138.680000pt;}
.y15{bottom:140.293333pt;}
.y76{bottom:148.666667pt;}
.y91{bottom:150.426667pt;}
.y82{bottom:151.066667pt;}
.y43{bottom:156.826667pt;}
.ybd{bottom:161.786667pt;}
.y75{bottom:167.066667pt;}
.y90{bottom:168.826667pt;}
.y81{bottom:169.466667pt;}
.y42{bottom:175.226667pt;}
.ybc{bottom:180.186667pt;}
.y74{bottom:185.466667pt;}
.y8f{bottom:187.226667pt;}
.y98{bottom:187.866667pt;}
.y41{bottom:193.626667pt;}
.y73{bottom:203.866667pt;}
.y8e{bottom:205.626667pt;}
.y97{bottom:206.266667pt;}
.y40{bottom:212.026667pt;}
.ybb{bottom:214.586667pt;}
.y72{bottom:222.266667pt;}
.y8d{bottom:224.026667pt;}
.y96{bottom:224.666667pt;}
.y3f{bottom:230.426667pt;}
.yba{bottom:232.986667pt;}
.y71{bottom:240.666667pt;}
.y8c{bottom:242.426667pt;}
.y95{bottom:243.066667pt;}
.yb9{bottom:251.426667pt;}
.y70{bottom:259.106667pt;}
.y8b{bottom:260.866667pt;}
.y94{bottom:261.506667pt;}
.y3e{bottom:264.866667pt;}
.y6f{bottom:277.506667pt;}
.y3d{bottom:283.266667pt;}
.yb8{bottom:285.826667pt;}
.y8a{bottom:287.746667pt;}
.y6e{bottom:295.906667pt;}
.y3c{bottom:301.666667pt;}
.yb7{bottom:304.226667pt;}
.ya{bottom:306.382667pt;}
.y6d{bottom:314.306667pt;}
.y3b{bottom:319.906667pt;}
.yb6{bottom:322.626667pt;}
.ya7{bottom:330.306667pt;}
.y6c{bottom:332.706667pt;}
.y3a{bottom:338.306667pt;}
.yb5{bottom:341.026667pt;}
.yd{bottom:343.546667pt;}
.ya6{bottom:348.706667pt;}
.y6b{bottom:351.106667pt;}
.y9{bottom:351.724000pt;}
.y39{bottom:356.706667pt;}
.ya5{bottom:367.106667pt;}
.y6a{bottom:369.506667pt;}
.y38{bottom:375.106667pt;}
.yb4{bottom:375.906667pt;}
.y80{bottom:385.506667pt;}
.yb{bottom:386.533333pt;}
.y69{bottom:387.906667pt;}
.y37{bottom:393.506667pt;}
.y8{bottom:397.065333pt;}
.y7f{bottom:403.906667pt;}
.y68{bottom:406.306667pt;}
.y36{bottom:411.906667pt;}
.yb3{bottom:413.186667pt;}
.y7e{bottom:422.306667pt;}
.y67{bottom:424.706667pt;}
.y35{bottom:430.306667pt;}
.y10{bottom:433.826667pt;}
.y7d{bottom:440.706667pt;}
.y7{bottom:442.406667pt;}
.y66{bottom:443.106667pt;}
.y34{bottom:448.706667pt;}
.yb2{bottom:450.146667pt;}
.ya4{bottom:456.706667pt;}
.y7c{bottom:459.106667pt;}
.y65{bottom:461.506667pt;}
.y33{bottom:467.106667pt;}
.yb1{bottom:468.546667pt;}
.ya3{bottom:475.106667pt;}
.y7b{bottom:477.506667pt;}
.y11{bottom:478.426667pt;}
.y93{bottom:479.906667pt;}
.y32{bottom:485.506667pt;}
.y6{bottom:487.748000pt;}
.ya2{bottom:493.506667pt;}
.y64{bottom:495.746667pt;}
.y7a{bottom:495.906667pt;}
.yb0{bottom:502.973333pt;}
.y31{bottom:503.933333pt;}
.ya1{bottom:511.933333pt;}
.y63{bottom:514.173333pt;}
.yaf{bottom:521.373333pt;}
.y30{bottom:522.333333pt;}
.y17{bottom:524.093333pt;}
.ya0{bottom:530.173333pt;}
.y62{bottom:532.573333pt;}
.y5{bottom:533.089333pt;}
.y9f{bottom:548.573333pt;}
.y2f{bottom:548.733333pt;}
.y61{bottom:550.973333pt;}
.yae{bottom:555.773333pt;}
.yce{bottom:560.573333pt;}
.ye{bottom:561.706667pt;}
.y9e{bottom:566.973333pt;}
.y2e{bottom:567.133333pt;}
.y60{bottom:569.373333pt;}
.ycd{bottom:578.973333pt;}
.y9d{bottom:585.373333pt;}
.y2d{bottom:585.533333pt;}
.y5f{bottom:587.773333pt;}
.yad{bottom:590.173333pt;}
.y89{bottom:603.773333pt;}
.y2c{bottom:603.933333pt;}
.y5e{bottom:606.173333pt;}
.yac{bottom:608.573333pt;}
.ycc{bottom:613.373333pt;}
.y88{bottom:622.173333pt;}
.y5d{bottom:624.573333pt;}
.y2b{bottom:630.813333pt;}
.ycb{bottom:631.773333pt;}
.y87{bottom:640.573333pt;}
.y5c{bottom:642.973333pt;}
.yca{bottom:650.173333pt;}
.y86{bottom:658.973333pt;}
.y5b{bottom:661.373333pt;}
.yc9{bottom:668.573333pt;}
.y2a{bottom:676.573333pt;}
.y85{bottom:677.373333pt;}
.y5a{bottom:679.773333pt;}
.y4{bottom:691.756000pt;}
.y84{bottom:695.773333pt;}
.yab{bottom:698.173333pt;}
.yc8{bottom:702.973333pt;}
.y59{bottom:714.173333pt;}
.yaa{bottom:716.573333pt;}
.yc7{bottom:721.373333pt;}
.y29{bottom:722.813333pt;}
.y12{bottom:725.040000pt;}
.y58{bottom:732.573333pt;}
.yc6{bottom:739.773333pt;}
.y57{bottom:750.973333pt;}
.y28{bottom:765.253333pt;}
.y56{bottom:769.413333pt;}
.yc5{bottom:774.213333pt;}
.y9c{bottom:785.413333pt;}
.y55{bottom:787.813333pt;}
.yc4{bottom:792.613333pt;}
.y9b{bottom:803.813333pt;}
.y3{bottom:805.081333pt;}
.y54{bottom:806.213333pt;}
.yc3{bottom:811.013333pt;}
.y27{bottom:817.093333pt;}
.y9a{bottom:822.213333pt;}
.y53{bottom:824.613333pt;}
.y99{bottom:840.613333pt;}
.y52{bottom:843.013333pt;}
.yc2{bottom:845.413333pt;}
.y2{bottom:857.092000pt;}
.y79{bottom:859.013333pt;}
.y51{bottom:861.413333pt;}
.yc1{bottom:863.813333pt;}
.y26{bottom:875.813333pt;}
.y78{bottom:877.413333pt;}
.y1{bottom:879.748000pt;}
.ya9{bottom:879.813333pt;}
.yc0{bottom:882.213333pt;}
.y50{bottom:895.813333pt;}
.ya8{bottom:898.213333pt;}
.ybf{bottom:900.613333pt;}
.y23{bottom:905.413333pt;}
.y4f{bottom:914.213333pt;}
.y22{bottom:920.773333pt;}
.y25{bottom:927.813333pt;}
.y4e{bottom:932.613333pt;}
.ybe{bottom:935.013333pt;}
.y21{bottom:936.133333pt;}
.y4d{bottom:951.013333pt;}
.y20{bottom:951.333333pt;}
.y24{bottom:958.853333pt;}
.y1f{bottom:966.693333pt;}
.y4c{bottom:969.413333pt;}
.y1e{bottom:982.053333pt;}
.y4b{bottom:987.813333pt;}
.y1d{bottom:997.253333pt;}
.y1c{bottom:1013.120000pt;}
.y48{bottom:1014.560000pt;}
.y47{bottom:1032.160000pt;}
.y46{bottom:1047.520000pt;}
.y45{bottom:1062.880000pt;}
.h4{height:29.333333pt;}
.he{height:38.698750pt;}
.hb{height:39.360000pt;}
.h15{height:46.281250pt;}
.hd{height:46.625000pt;}
.h3{height:51.916667pt;}
.hc{height:52.134375pt;}
.h14{height:54.551250pt;}
.ha{height:55.402500pt;}
.h10{height:58.281250pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h16{height:62.781250pt;}
.hf{height:62.812500pt;}
.h12{height:64.500000pt;}
.h11{height:69.937500pt;}
.h13{height:78.476562pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:3.680000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.wa{width:793.759988pt;}
.w9{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:96.031988pt;}
.xd{left:103.551988pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xb{left:114.911988pt;}
.x10{left:119.871988pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x11{left:206.746655pt;}
.x13{left:394.306655pt;}
.xf{left:489.213322pt;}
.x16{left:656.293322pt;}
.x15{left:659.973322pt;}
.x14{left:663.013322pt;}
.x12{left:666.693322pt;}
.xc{left:670.373333pt;}
.xe{left:697.253322pt;}
}




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