
    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_5cbdedf97d59ab558def1e7c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_f43b6ad59b119270da35e933.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f5a16d20adfbd56adea5a27f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.201172;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_948ede2e03e82c9739cc55d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_bada5b20000fcfb6e40e2f52.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_f953c1f30e496fc1e2d6d6c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_82e442447276ad41999efc3a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5d1dc2eefa96344f31b92784.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_fb0388a5c578de553ac8e257.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8cc5150b785903cca17bf7d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_3df1bac7f74211462c25e9d4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8e5e604acce1d23c7aac2da9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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;}
.lse{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.350400px;}
.ls1e{letter-spacing:-0.341400px;}
.ls15{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.037440px;}
.ls2{letter-spacing:0.082800px;}
.ls1a{letter-spacing:0.341400px;}
.lsf{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.378720px;}
.ls6{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.558720px;}
.ls9{letter-spacing:3.420000px;}
.lsa{letter-spacing:5.580000px;}
.ls13{letter-spacing:5.700000px;}
.ls8{letter-spacing:6.300000px;}
.ls1c{letter-spacing:7.140000px;}
.ls11{letter-spacing:7.740000px;}
.ls1b{letter-spacing:7.860000px;}
.ls12{letter-spacing:8.460000px;}
.lsb{letter-spacing:11.340000px;}
.ls5{letter-spacing:14.220000px;}
.ls3{letter-spacing:15.521760px;}
.ls17{letter-spacing:17.100000px;}
.ls10{letter-spacing:41.381280px;}
.ls7{letter-spacing:55.980000px;}
.lsd{letter-spacing:57.540000px;}
.lsc{letter-spacing:58.860000px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws7{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.401400px;}
.ws5{word-spacing:-21.060000px;}
.wsa{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.709600px;}
.ws8{word-spacing:-20.700000px;}
.ws6{word-spacing:-19.980000px;}
.ws3{word-spacing:-19.038240px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-14.970240px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._16{margin-left:-2.133600px;}
._1{margin-left:-1.126080px;}
._8{width:1.010880px;}
._12{width:2.779920px;}
._9{width:4.212000px;}
._f{width:6.214320px;}
._3{width:7.613040px;}
._1f{width:8.924160px;}
._1d{width:10.193040px;}
._1e{width:11.267760px;}
._c{width:12.414240px;}
._14{width:14.014800px;}
._5{width:15.415920px;}
._d{width:16.595280px;}
._e{width:17.889840px;}
._15{width:18.923040px;}
._6{width:20.891520px;}
._10{width:22.660560px;}
._23{width:24.176880px;}
._24{width:25.242960px;}
._29{width:26.919120px;}
._28{width:28.082880px;}
._2b{width:29.537280px;}
._1c{width:31.284000px;}
._1b{width:33.049680px;}
._17{width:34.538400px;}
._18{width:35.941440px;}
._7{width:37.571040px;}
._2a{width:39.311040px;}
._a{width:40.435200px;}
._b{width:41.477040px;}
._11{width:42.571200px;}
._20{width:44.394480px;}
._21{width:45.854160px;}
._27{width:47.542320px;}
._4{width:48.890160px;}
._3f{width:51.336720px;}
._2e{width:52.783920px;}
._25{width:53.941200px;}
._1a{width:55.306800px;}
._19{width:56.889600px;}
._26{width:58.662000px;}
._22{width:63.685440px;}
._2d{width:67.959600px;}
._2c{width:68.985600px;}
._13{width:70.930080px;}
._3e{width:78.764400px;}
._3d{width:80.077680px;}
._33{width:86.120880px;}
._32{width:87.406560px;}
._39{width:90.252000px;}
._3a{width:91.290480px;}
._37{width:103.237440px;}
._36{width:104.254560px;}
._3c{width:106.001520px;}
._3b{width:107.100000px;}
._34{width:115.608240px;}
._35{width:116.672400px;}
._2f{width:200.824560px;}
._30{width:209.704320px;}
._31{width:210.715200px;}
._38{width:244.663920px;}
._2{width:638.842080px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y71{bottom:87.660000px;}
.y4a{bottom:95.400000px;}
.yb4{bottom:101.880000px;}
.y70{bottom:117.180000px;}
.y49{bottom:123.300000px;}
.y25{bottom:124.560000px;}
.yb3{bottom:129.636000px;}
.y48{bottom:151.050000px;}
.y24{bottom:153.930000px;}
.yb2{bottom:157.530000px;}
.y94{bottom:160.410000px;}
.y6f{bottom:161.490000px;}
.y47{bottom:178.410000px;}
.y23{bottom:183.450000px;}
.yb1{bottom:185.250000px;}
.y93{bottom:188.130000px;}
.y6e{bottom:191.190000px;}
.y46{bottom:206.490000px;}
.yb0{bottom:212.970000px;}
.y92{bottom:215.850000px;}
.y6d{bottom:220.710000px;}
.y22{bottom:227.730000px;}
.y45{bottom:234.390000px;}
.yaf{bottom:240.690000px;}
.y91{bottom:243.750000px;}
.y6c{bottom:250.230000px;}
.y21{bottom:257.430000px;}
.y44{bottom:262.110000px;}
.yae{bottom:268.590000px;}
.y90{bottom:271.470000px;}
.y6b{bottom:279.570000px;}
.y20{bottom:286.950000px;}
.y43{bottom:289.830000px;}
.yad{bottom:296.310000px;}
.y8f{bottom:299.190000px;}
.y6a{bottom:308.370000px;}
.y1f{bottom:316.470000px;}
.y42{bottom:317.730000px;}
.yac{bottom:324.030000px;}
.y8e{bottom:327.090000px;}
.y69{bottom:336.090000px;}
.y41{bottom:345.090000px;}
.y1e{bottom:345.810000px;}
.yb8{bottom:350.490000px;}
.yab{bottom:351.930000px;}
.y8d{bottom:354.810000px;}
.y68{bottom:363.810000px;}
.y40{bottom:372.810000px;}
.y1d{bottom:375.330000px;}
.yaa{bottom:379.695000px;}
.y8c{bottom:382.575000px;}
.yb7{bottom:390.495000px;}
.y67{bottom:391.575000px;}
.y3f{bottom:400.575000px;}
.ya9{bottom:407.415000px;}
.y8b{bottom:410.295000px;}
.y66{bottom:419.475000px;}
.y1c{bottom:419.655000px;}
.y3e{bottom:428.835000px;}
.ya8{bottom:435.135000px;}
.y65{bottom:447.195000px;}
.y1b{bottom:449.355000px;}
.y8a{bottom:453.675000px;}
.y3d{bottom:456.555000px;}
.ya7{bottom:463.035000px;}
.y64{bottom:474.915000px;}
.y1a{bottom:478.875000px;}
.y89{bottom:482.655000px;}
.y3c{bottom:484.275000px;}
.ya6{bottom:490.755000px;}
.y63{bottom:502.815000px;}
.y19{bottom:508.395000px;}
.y88{bottom:510.375000px;}
.y3b{bottom:512.175000px;}
.ya5{bottom:518.475000px;}
.y62{bottom:530.535000px;}
.y18{bottom:537.735000px;}
.y87{bottom:538.095000px;}
.y3a{bottom:539.895000px;}
.ya4{bottom:546.195000px;}
.y61{bottom:557.895000px;}
.yb6{bottom:558.255000px;}
.y86{bottom:565.995000px;}
.y17{bottom:566.535000px;}
.y39{bottom:567.615000px;}
.ya3{bottom:574.095000px;}
.y60{bottom:585.975000px;}
.y85{bottom:593.715000px;}
.y16{bottom:594.255000px;}
.y38{bottom:595.335000px;}
.ya2{bottom:601.815000px;}
.y5f{bottom:613.875000px;}
.y84{bottom:621.435000px;}
.y15{bottom:621.975000px;}
.y37{bottom:623.235000px;}
.ya1{bottom:629.535000px;}
.y5e{bottom:641.625000px;}
.y83{bottom:649.185000px;}
.y36{bottom:650.985000px;}
.ya0{bottom:657.465000px;}
.y14{bottom:665.385000px;}
.y5d{bottom:669.345000px;}
.y82{bottom:677.085000px;}
.y35{bottom:678.705000px;}
.y9f{bottom:685.185000px;}
.y13{bottom:695.085000px;}
.y5c{bottom:697.245000px;}
.y81{bottom:704.805000px;}
.y34{bottom:706.425000px;}
.y9e{bottom:712.905000px;}
.y12{bottom:724.605000px;}
.y5b{bottom:724.965000px;}
.y80{bottom:732.525000px;}
.y33{bottom:734.325000px;}
.y9d{bottom:740.625000px;}
.y5a{bottom:752.685000px;}
.y11{bottom:754.125000px;}
.y7f{bottom:760.425000px;}
.y32{bottom:762.045000px;}
.y9c{bottom:768.525000px;}
.y59{bottom:780.405000px;}
.y10{bottom:783.465000px;}
.y7e{bottom:788.145000px;}
.y31{bottom:789.765000px;}
.y9b{bottom:796.245000px;}
.y58{bottom:808.305000px;}
.yf{bottom:812.985000px;}
.y7d{bottom:815.865000px;}
.y30{bottom:817.665000px;}
.y9a{bottom:823.965000px;}
.y57{bottom:835.665000px;}
.yb5{bottom:836.025000px;}
.ye{bottom:842.505000px;}
.y7c{bottom:843.585000px;}
.y2f{bottom:845.385000px;}
.y99{bottom:851.865000px;}
.y56{bottom:863.745000px;}
.y7b{bottom:871.485000px;}
.yd{bottom:872.025000px;}
.y2e{bottom:872.745000px;}
.y98{bottom:879.585000px;}
.y55{bottom:891.510000px;}
.y7a{bottom:899.250000px;}
.y2d{bottom:900.870000px;}
.yc{bottom:916.350000px;}
.y54{bottom:919.410000px;}
.y97{bottom:919.590000px;}
.y79{bottom:926.970000px;}
.y2c{bottom:928.770000px;}
.y53{bottom:947.130000px;}
.y78{bottom:954.690000px;}
.y2b{bottom:956.490000px;}
.yb{bottom:960.810000px;}
.y52{bottom:974.490000px;}
.y96{bottom:974.850000px;}
.y77{bottom:982.590000px;}
.y2a{bottom:984.210000px;}
.y51{bottom:1002.750000px;}
.ya{bottom:1005.270000px;}
.y76{bottom:1010.310000px;}
.y29{bottom:1012.110000px;}
.y50{bottom:1030.470000px;}
.y75{bottom:1038.030000px;}
.y28{bottom:1039.830000px;}
.y9{bottom:1049.730000px;}
.y4f{bottom:1058.190000px;}
.y74{bottom:1065.570000px;}
.y27{bottom:1067.550000px;}
.y4e{bottom:1085.910000px;}
.y8{bottom:1094.190000px;}
.y26{bottom:1094.910000px;}
.y73{bottom:1109.310000px;}
.y4d{bottom:1113.450000px;}
.y95{bottom:1113.810000px;}
.y7{bottom:1138.680000px;}
.y72{bottom:1138.860000px;}
.y4c{bottom:1141.560000px;}
.y6{bottom:1168.380000px;}
.y4b{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.h2{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:70.628906px;}
.h9{height:74.244727px;}
.h8{height:82.676953px;}
.h7{height:83.787539px;}
.ha{height:84.898125px;}
.h6{height:86.255508px;}
.hb{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:20.550000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.xc{left:138.276000px;}
.x5{left:154.290000px;}
.x6{left:295.815000px;}
.x9{left:298.695000px;}
.x8{left:327.855000px;}
.xa{left:328.935000px;}
.x3{left:438.915000px;}
.xb{left:462.525000px;}
.x7{left:483.765000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.311467pt;}
.ls1e{letter-spacing:-0.303467pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.033280pt;}
.ls2{letter-spacing:0.073600pt;}
.ls1a{letter-spacing:0.303467pt;}
.lsf{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.336640pt;}
.ls6{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.496640pt;}
.ls9{letter-spacing:3.040000pt;}
.lsa{letter-spacing:4.960000pt;}
.ls13{letter-spacing:5.066667pt;}
.ls8{letter-spacing:5.600000pt;}
.ls1c{letter-spacing:6.346667pt;}
.ls11{letter-spacing:6.880000pt;}
.ls1b{letter-spacing:6.986667pt;}
.ls12{letter-spacing:7.520000pt;}
.lsb{letter-spacing:10.080000pt;}
.ls5{letter-spacing:12.640000pt;}
.ls3{letter-spacing:13.797120pt;}
.ls17{letter-spacing:15.200000pt;}
.ls10{letter-spacing:36.783360pt;}
.ls7{letter-spacing:49.760000pt;}
.lsd{letter-spacing:51.146667pt;}
.lsc{letter-spacing:52.320000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws7{word-spacing:-19.040000pt;}
.wsb{word-spacing:-19.023467pt;}
.ws5{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.416533pt;}
.ws9{word-spacing:-18.408533pt;}
.ws8{word-spacing:-18.400000pt;}
.ws6{word-spacing:-17.760000pt;}
.ws3{word-spacing:-16.922880pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._16{margin-left:-1.896533pt;}
._1{margin-left:-1.000960pt;}
._8{width:0.898560pt;}
._12{width:2.471040pt;}
._9{width:3.744000pt;}
._f{width:5.523840pt;}
._3{width:6.767147pt;}
._1f{width:7.932587pt;}
._1d{width:9.060480pt;}
._1e{width:10.015787pt;}
._c{width:11.034880pt;}
._14{width:12.457600pt;}
._5{width:13.703040pt;}
._d{width:14.751360pt;}
._e{width:15.902080pt;}
._15{width:16.820480pt;}
._6{width:18.570240pt;}
._10{width:20.142720pt;}
._23{width:21.490560pt;}
._24{width:22.438187pt;}
._29{width:23.928107pt;}
._28{width:24.962560pt;}
._2b{width:26.255360pt;}
._1c{width:27.808000pt;}
._1b{width:29.377493pt;}
._17{width:30.700800pt;}
._18{width:31.947947pt;}
._7{width:33.396480pt;}
._2a{width:34.943147pt;}
._a{width:35.942400pt;}
._b{width:36.868480pt;}
._11{width:37.841067pt;}
._20{width:39.461760pt;}
._21{width:40.759253pt;}
._27{width:42.259840pt;}
._4{width:43.457920pt;}
._3f{width:45.632640pt;}
._2e{width:46.919040pt;}
._25{width:47.947733pt;}
._1a{width:49.161600pt;}
._19{width:50.568533pt;}
._26{width:52.144000pt;}
._22{width:56.609280pt;}
._2d{width:60.408533pt;}
._2c{width:61.320533pt;}
._13{width:63.048960pt;}
._3e{width:70.012800pt;}
._3d{width:71.180160pt;}
._33{width:76.551893pt;}
._32{width:77.694720pt;}
._39{width:80.224000pt;}
._3a{width:81.147093pt;}
._37{width:91.766613pt;}
._36{width:92.670720pt;}
._3c{width:94.223573pt;}
._3b{width:95.200000pt;}
._34{width:102.762880pt;}
._35{width:103.708800pt;}
._2f{width:178.510720pt;}
._30{width:186.403840pt;}
._31{width:187.302400pt;}
._38{width:217.479040pt;}
._2{width:567.859627pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y71{bottom:77.920000pt;}
.y4a{bottom:84.800000pt;}
.yb4{bottom:90.560000pt;}
.y70{bottom:104.160000pt;}
.y49{bottom:109.600000pt;}
.y25{bottom:110.720000pt;}
.yb3{bottom:115.232000pt;}
.y48{bottom:134.266667pt;}
.y24{bottom:136.826667pt;}
.yb2{bottom:140.026667pt;}
.y94{bottom:142.586667pt;}
.y6f{bottom:143.546667pt;}
.y47{bottom:158.586667pt;}
.y23{bottom:163.066667pt;}
.yb1{bottom:164.666667pt;}
.y93{bottom:167.226667pt;}
.y6e{bottom:169.946667pt;}
.y46{bottom:183.546667pt;}
.yb0{bottom:189.306667pt;}
.y92{bottom:191.866667pt;}
.y6d{bottom:196.186667pt;}
.y22{bottom:202.426667pt;}
.y45{bottom:208.346667pt;}
.yaf{bottom:213.946667pt;}
.y91{bottom:216.666667pt;}
.y6c{bottom:222.426667pt;}
.y21{bottom:228.826667pt;}
.y44{bottom:232.986667pt;}
.yae{bottom:238.746667pt;}
.y90{bottom:241.306667pt;}
.y6b{bottom:248.506667pt;}
.y20{bottom:255.066667pt;}
.y43{bottom:257.626667pt;}
.yad{bottom:263.386667pt;}
.y8f{bottom:265.946667pt;}
.y6a{bottom:274.106667pt;}
.y1f{bottom:281.306667pt;}
.y42{bottom:282.426667pt;}
.yac{bottom:288.026667pt;}
.y8e{bottom:290.746667pt;}
.y69{bottom:298.746667pt;}
.y41{bottom:306.746667pt;}
.y1e{bottom:307.386667pt;}
.yb8{bottom:311.546667pt;}
.yab{bottom:312.826667pt;}
.y8d{bottom:315.386667pt;}
.y68{bottom:323.386667pt;}
.y40{bottom:331.386667pt;}
.y1d{bottom:333.626667pt;}
.yaa{bottom:337.506667pt;}
.y8c{bottom:340.066667pt;}
.yb7{bottom:347.106667pt;}
.y67{bottom:348.066667pt;}
.y3f{bottom:356.066667pt;}
.ya9{bottom:362.146667pt;}
.y8b{bottom:364.706667pt;}
.y66{bottom:372.866667pt;}
.y1c{bottom:373.026667pt;}
.y3e{bottom:381.186667pt;}
.ya8{bottom:386.786667pt;}
.y65{bottom:397.506667pt;}
.y1b{bottom:399.426667pt;}
.y8a{bottom:403.266667pt;}
.y3d{bottom:405.826667pt;}
.ya7{bottom:411.586667pt;}
.y64{bottom:422.146667pt;}
.y1a{bottom:425.666667pt;}
.y89{bottom:429.026667pt;}
.y3c{bottom:430.466667pt;}
.ya6{bottom:436.226667pt;}
.y63{bottom:446.946667pt;}
.y19{bottom:451.906667pt;}
.y88{bottom:453.666667pt;}
.y3b{bottom:455.266667pt;}
.ya5{bottom:460.866667pt;}
.y62{bottom:471.586667pt;}
.y18{bottom:477.986667pt;}
.y87{bottom:478.306667pt;}
.y3a{bottom:479.906667pt;}
.ya4{bottom:485.506667pt;}
.y61{bottom:495.906667pt;}
.yb6{bottom:496.226667pt;}
.y86{bottom:503.106667pt;}
.y17{bottom:503.586667pt;}
.y39{bottom:504.546667pt;}
.ya3{bottom:510.306667pt;}
.y60{bottom:520.866667pt;}
.y85{bottom:527.746667pt;}
.y16{bottom:528.226667pt;}
.y38{bottom:529.186667pt;}
.ya2{bottom:534.946667pt;}
.y5f{bottom:545.666667pt;}
.y84{bottom:552.386667pt;}
.y15{bottom:552.866667pt;}
.y37{bottom:553.986667pt;}
.ya1{bottom:559.586667pt;}
.y5e{bottom:570.333333pt;}
.y83{bottom:577.053333pt;}
.y36{bottom:578.653333pt;}
.ya0{bottom:584.413333pt;}
.y14{bottom:591.453333pt;}
.y5d{bottom:594.973333pt;}
.y82{bottom:601.853333pt;}
.y35{bottom:603.293333pt;}
.y9f{bottom:609.053333pt;}
.y13{bottom:617.853333pt;}
.y5c{bottom:619.773333pt;}
.y81{bottom:626.493333pt;}
.y34{bottom:627.933333pt;}
.y9e{bottom:633.693333pt;}
.y12{bottom:644.093333pt;}
.y5b{bottom:644.413333pt;}
.y80{bottom:651.133333pt;}
.y33{bottom:652.733333pt;}
.y9d{bottom:658.333333pt;}
.y5a{bottom:669.053333pt;}
.y11{bottom:670.333333pt;}
.y7f{bottom:675.933333pt;}
.y32{bottom:677.373333pt;}
.y9c{bottom:683.133333pt;}
.y59{bottom:693.693333pt;}
.y10{bottom:696.413333pt;}
.y7e{bottom:700.573333pt;}
.y31{bottom:702.013333pt;}
.y9b{bottom:707.773333pt;}
.y58{bottom:718.493333pt;}
.yf{bottom:722.653333pt;}
.y7d{bottom:725.213333pt;}
.y30{bottom:726.813333pt;}
.y9a{bottom:732.413333pt;}
.y57{bottom:742.813333pt;}
.yb5{bottom:743.133333pt;}
.ye{bottom:748.893333pt;}
.y7c{bottom:749.853333pt;}
.y2f{bottom:751.453333pt;}
.y99{bottom:757.213333pt;}
.y56{bottom:767.773333pt;}
.y7b{bottom:774.653333pt;}
.yd{bottom:775.133333pt;}
.y2e{bottom:775.773333pt;}
.y98{bottom:781.853333pt;}
.y55{bottom:792.453333pt;}
.y7a{bottom:799.333333pt;}
.y2d{bottom:800.773333pt;}
.yc{bottom:814.533333pt;}
.y54{bottom:817.253333pt;}
.y97{bottom:817.413333pt;}
.y79{bottom:823.973333pt;}
.y2c{bottom:825.573333pt;}
.y53{bottom:841.893333pt;}
.y78{bottom:848.613333pt;}
.y2b{bottom:850.213333pt;}
.yb{bottom:854.053333pt;}
.y52{bottom:866.213333pt;}
.y96{bottom:866.533333pt;}
.y77{bottom:873.413333pt;}
.y2a{bottom:874.853333pt;}
.y51{bottom:891.333333pt;}
.ya{bottom:893.573333pt;}
.y76{bottom:898.053333pt;}
.y29{bottom:899.653333pt;}
.y50{bottom:915.973333pt;}
.y75{bottom:922.693333pt;}
.y28{bottom:924.293333pt;}
.y9{bottom:933.093333pt;}
.y4f{bottom:940.613333pt;}
.y74{bottom:947.173333pt;}
.y27{bottom:948.933333pt;}
.y4e{bottom:965.253333pt;}
.y8{bottom:972.613333pt;}
.y26{bottom:973.253333pt;}
.y73{bottom:986.053333pt;}
.y4d{bottom:989.733333pt;}
.y95{bottom:990.053333pt;}
.y7{bottom:1012.160000pt;}
.y72{bottom:1012.320000pt;}
.y4c{bottom:1014.720000pt;}
.y6{bottom:1038.560000pt;}
.y4b{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.h2{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:62.781250pt;}
.h9{height:65.995312pt;}
.h8{height:73.490625pt;}
.h7{height:74.477812pt;}
.ha{height:75.465000pt;}
.h6{height:76.671562pt;}
.hb{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:18.266667pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.xc{left:122.912000pt;}
.x5{left:137.146667pt;}
.x6{left:262.946667pt;}
.x9{left:265.506667pt;}
.x8{left:291.426667pt;}
.xa{left:292.386667pt;}
.x3{left:390.146667pt;}
.xb{left:411.133333pt;}
.x7{left:430.013333pt;}
}




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