
    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_539aceaf7efc050b61d2c2d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_95360f2bdf5d5d35dab73d50.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_9cd974378d9a04cee3c127cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_cb6741a3f782b4fbd51a70c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_3581ca0937c86abbfa5ce6a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.lsb{letter-spacing:2.160000px;}
.ls6{letter-spacing:3.600000px;}
.ls5{letter-spacing:5.040000px;}
.ls4{letter-spacing:8.640000px;}
.ls2{letter-spacing:64.397280px;}
.ls3{letter-spacing:73.560000px;}
.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:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.504000px;}
.ws5{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws7{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-4.608000px;}
._f{margin-left:-3.276000px;}
._0{margin-left:-1.457280px;}
._2{width:1.149120px;}
._10{width:2.414400px;}
._9{width:3.505200px;}
._11{width:5.062800px;}
._8{width:6.224400px;}
._a{width:7.992000px;}
._b{width:9.144000px;}
._18{width:10.172160px;}
._15{width:11.232000px;}
._1a{width:12.245760px;}
._12{width:13.536000px;}
._13{width:14.544000px;}
._19{width:15.912000px;}
._1e{width:16.934880px;}
._d{width:19.109280px;}
._17{width:20.110560px;}
._14{width:21.384000px;}
._16{width:22.697280px;}
._20{width:23.904000px;}
._1d{width:25.200000px;}
._21{width:26.640000px;}
._c{width:28.008000px;}
._27{width:29.664000px;}
._1b{width:30.744000px;}
._1c{width:31.757760px;}
._1f{width:32.802240px;}
._23{width:34.056000px;}
._24{width:35.280000px;}
._2b{width:37.368000px;}
._25{width:39.744000px;}
._26{width:41.040000px;}
._29{width:42.264000px;}
._28{width:43.481280px;}
._2a{width:44.894880px;}
._3{width:47.880000px;}
._22{width:124.488000px;}
._7{width:126.498960px;}
._6{width:127.935360px;}
._5{width:152.354160px;}
._4{width:153.407520px;}
._1{width:159.727680px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:76.176000px;}
.y5{bottom:96.516000px;}
.y4{bottom:115.956000px;}
.y3{bottom:134.856000px;}
.y2{bottom:153.930000px;}
.yba{bottom:178.050000px;}
.y81{bottom:184.530000px;}
.y66{bottom:187.050000px;}
.y2f{bottom:192.450000px;}
.yb9{bottom:198.750000px;}
.yc2{bottom:201.450000px;}
.y4c{bottom:201.990000px;}
.y80{bottom:205.230000px;}
.y2e{bottom:213.150000px;}
.y65{bottom:218.010000px;}
.yb8{bottom:219.450000px;}
.ya1{bottom:222.150000px;}
.y4b{bottom:232.950000px;}
.y2d{bottom:233.850000px;}
.ya0{bottom:242.850000px;}
.y7f{bottom:243.930000px;}
.y64{bottom:249.150000px;}
.y2c{bottom:254.550000px;}
.yb7{bottom:258.150000px;}
.y4a{bottom:264.090000px;}
.y7e{bottom:264.630000px;}
.y2b{bottom:275.250000px;}
.yb6{bottom:278.850000px;}
.y63{bottom:280.110000px;}
.y9f{bottom:281.550000px;}
.y7d{bottom:285.330000px;}
.y49{bottom:295.050000px;}
.y2a{bottom:295.950000px;}
.yb5{bottom:299.550000px;}
.y9e{bottom:302.250000px;}
.y62{bottom:311.250000px;}
.y29{bottom:316.650000px;}
.yb4{bottom:320.250000px;}
.y9d{bottom:322.950000px;}
.y7c{bottom:324.030000px;}
.y48{bottom:326.190000px;}
.y28{bottom:337.395000px;}
.yc1{bottom:340.995000px;}
.y61{bottom:342.255000px;}
.y7b{bottom:344.775000px;}
.y47{bottom:357.195000px;}
.y27{bottom:358.095000px;}
.yb3{bottom:358.995000px;}
.y9c{bottom:361.695000px;}
.y60{bottom:373.395000px;}
.y26{bottom:378.795000px;}
.yb2{bottom:379.695000px;}
.y9b{bottom:382.395000px;}
.y7a{bottom:383.475000px;}
.y46{bottom:388.155000px;}
.y25{bottom:399.495000px;}
.y9a{bottom:403.095000px;}
.y79{bottom:404.175000px;}
.y5f{bottom:404.355000px;}
.yb1{bottom:418.395000px;}
.y24{bottom:420.195000px;}
.yc0{bottom:420.915000px;}
.y78{bottom:424.875000px;}
.y45{bottom:425.235000px;}
.y5e{bottom:435.495000px;}
.yb0{bottom:439.095000px;}
.y23{bottom:440.895000px;}
.y99{bottom:441.615000px;}
.yaf{bottom:459.615000px;}
.y22{bottom:461.595000px;}
.y98{bottom:462.315000px;}
.y77{bottom:463.575000px;}
.y44{bottom:465.375000px;}
.y5d{bottom:466.455000px;}
.y97{bottom:483.015000px;}
.y76{bottom:484.275000px;}
.y5c{bottom:497.595000px;}
.yae{bottom:498.315000px;}
.y21{bottom:500.115000px;}
.ybf{bottom:501.015000px;}
.y43{bottom:502.455000px;}
.yad{bottom:519.015000px;}
.y96{bottom:521.715000px;}
.y75{bottom:522.975000px;}
.y5b{bottom:528.555000px;}
.y42{bottom:533.415000px;}
.y20{bottom:538.995000px;}
.yac{bottom:539.715000px;}
.y95{bottom:542.415000px;}
.y74{bottom:543.675000px;}
.y1f{bottom:559.695000px;}
.y94{bottom:563.115000px;}
.y73{bottom:564.375000px;}
.y41{bottom:564.555000px;}
.yab{bottom:578.415000px;}
.y1e{bottom:580.395000px;}
.ybe{bottom:581.115000px;}
.y5a{bottom:590.655000px;}
.y40{bottom:595.515000px;}
.yaa{bottom:599.115000px;}
.y1d{bottom:601.095000px;}
.y93{bottom:601.815000px;}
.y72{bottom:603.075000px;}
.ya9{bottom:619.845000px;}
.y1c{bottom:621.645000px;}
.y92{bottom:622.545000px;}
.y71{bottom:623.805000px;}
.y3f{bottom:626.685000px;}
.ybd{bottom:640.545000px;}
.y1b{bottom:642.345000px;}
.y59{bottom:652.785000px;}
.y3e{bottom:657.645000px;}
.ya8{bottom:658.545000px;}
.y91{bottom:661.245000px;}
.y70{bottom:662.505000px;}
.y1a{bottom:663.045000px;}
.ya7{bottom:679.245000px;}
.y90{bottom:681.945000px;}
.y6f{bottom:683.205000px;}
.y19{bottom:683.745000px;}
.y3d{bottom:694.725000px;}
.ya6{bottom:699.945000px;}
.y6e{bottom:703.905000px;}
.y18{bottom:704.445000px;}
.y58{bottom:714.885000px;}
.y8f{bottom:720.645000px;}
.y17{bottom:725.145000px;}
.y3c{bottom:734.685000px;}
.y8e{bottom:741.345000px;}
.y16{bottom:745.845000px;}
.y6d{bottom:752.865000px;}
.yc9{bottom:756.465000px;}
.ya5{bottom:759.345000px;}
.y3b{bottom:765.825000px;}
.y15{bottom:766.545000px;}
.y57{bottom:776.985000px;}
.y8d{bottom:780.045000px;}
.y14{bottom:787.245000px;}
.y6c{bottom:793.005000px;}
.y3a{bottom:796.785000px;}
.yc8{bottom:798.045000px;}
.y8c{bottom:800.745000px;}
.y13{bottom:807.945000px;}
.ya4{bottom:818.745000px;}
.y6b{bottom:824.145000px;}
.y39{bottom:827.925000px;}
.y12{bottom:828.645000px;}
.y56{bottom:839.085000px;}
.y8b{bottom:839.445000px;}
.y11{bottom:849.345000px;}
.y6a{bottom:855.105000px;}
.yc7{bottom:857.445000px;}
.y38{bottom:858.885000px;}
.y8a{bottom:860.145000px;}
.y55{bottom:870.045000px;}
.y10{bottom:870.810000px;}
.ya3{bottom:878.190000px;}
.ybc{bottom:880.890000px;}
.y69{bottom:886.290000px;}
.y37{bottom:890.070000px;}
.yf{bottom:895.650000px;}
.y89{bottom:898.890000px;}
.y54{bottom:901.230000px;}
.yc6{bottom:916.890000px;}
.y68{bottom:917.250000px;}
.y88{bottom:919.590000px;}
.y36{bottom:921.030000px;}
.ye{bottom:923.190000px;}
.y53{bottom:932.190000px;}
.yc5{bottom:937.590000px;}
.ybb{bottom:940.290000px;}
.yd{bottom:950.730000px;}
.y35{bottom:952.170000px;}
.y67{bottom:954.150000px;}
.y87{bottom:958.290000px;}
.y52{bottom:963.330000px;}
.yc{bottom:978.450000px;}
.y86{bottom:978.990000px;}
.y34{bottom:983.130000px;}
.y51{bottom:994.290000px;}
.yc4{bottom:996.990000px;}
.y85{bottom:999.690000px;}
.yb{bottom:1005.990000px;}
.y33{bottom:1014.270000px;}
.ya2{bottom:1017.690000px;}
.y50{bottom:1025.430000px;}
.ya{bottom:1033.530000px;}
.y84{bottom:1038.390000px;}
.y32{bottom:1045.230000px;}
.y4f{bottom:1056.390000px;}
.y83{bottom:1059.090000px;}
.y9{bottom:1061.250000px;}
.y31{bottom:1076.370000px;}
.yc3{bottom:1077.090000px;}
.y4e{bottom:1087.530000px;}
.y8{bottom:1088.790000px;}
.y82{bottom:1097.790000px;}
.y30{bottom:1115.430000px;}
.y7{bottom:1115.610000px;}
.y4d{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h4{height:55.825312px;}
.h7{height:59.343750px;}
.h3{height:59.383125px;}
.h8{height:63.949219px;}
.h2{height:64.546875px;}
.h5{height:74.820586px;}
.h6{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.xa{left:148.895987px;}
.x9{left:160.049987px;}
.x3{left:170.129987px;}
.x4{left:241.049987px;}
.x7{left:273.989987px;}
.x6{left:284.834987px;}
.x5{left:467.924987px;}
.x1{left:489.164987px;}
.x8{left:808.169987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsb{letter-spacing:1.920000pt;}
.ls6{letter-spacing:3.200000pt;}
.ls5{letter-spacing:4.480000pt;}
.ls4{letter-spacing:7.680000pt;}
.ls2{letter-spacing:57.242027pt;}
.ls3{letter-spacing:65.386667pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws5{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-4.096000pt;}
._f{margin-left:-2.912000pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.021440pt;}
._10{width:2.146133pt;}
._9{width:3.115733pt;}
._11{width:4.500267pt;}
._8{width:5.532800pt;}
._a{width:7.104000pt;}
._b{width:8.128000pt;}
._18{width:9.041920pt;}
._15{width:9.984000pt;}
._1a{width:10.885120pt;}
._12{width:12.032000pt;}
._13{width:12.928000pt;}
._19{width:14.144000pt;}
._1e{width:15.053227pt;}
._d{width:16.986027pt;}
._17{width:17.876053pt;}
._14{width:19.008000pt;}
._16{width:20.175360pt;}
._20{width:21.248000pt;}
._1d{width:22.400000pt;}
._21{width:23.680000pt;}
._c{width:24.896000pt;}
._27{width:26.368000pt;}
._1b{width:27.328000pt;}
._1c{width:28.229120pt;}
._1f{width:29.157547pt;}
._23{width:30.272000pt;}
._24{width:31.360000pt;}
._2b{width:33.216000pt;}
._25{width:35.328000pt;}
._26{width:36.480000pt;}
._29{width:37.568000pt;}
._28{width:38.650027pt;}
._2a{width:39.906560pt;}
._3{width:42.560000pt;}
._22{width:110.656000pt;}
._7{width:112.443520pt;}
._6{width:113.720320pt;}
._5{width:135.425920pt;}
._4{width:136.362240pt;}
._1{width:141.980160pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:67.712000pt;}
.y5{bottom:85.792000pt;}
.y4{bottom:103.072000pt;}
.y3{bottom:119.872000pt;}
.y2{bottom:136.826667pt;}
.yba{bottom:158.266667pt;}
.y81{bottom:164.026667pt;}
.y66{bottom:166.266667pt;}
.y2f{bottom:171.066667pt;}
.yb9{bottom:176.666667pt;}
.yc2{bottom:179.066667pt;}
.y4c{bottom:179.546667pt;}
.y80{bottom:182.426667pt;}
.y2e{bottom:189.466667pt;}
.y65{bottom:193.786667pt;}
.yb8{bottom:195.066667pt;}
.ya1{bottom:197.466667pt;}
.y4b{bottom:207.066667pt;}
.y2d{bottom:207.866667pt;}
.ya0{bottom:215.866667pt;}
.y7f{bottom:216.826667pt;}
.y64{bottom:221.466667pt;}
.y2c{bottom:226.266667pt;}
.yb7{bottom:229.466667pt;}
.y4a{bottom:234.746667pt;}
.y7e{bottom:235.226667pt;}
.y2b{bottom:244.666667pt;}
.yb6{bottom:247.866667pt;}
.y63{bottom:248.986667pt;}
.y9f{bottom:250.266667pt;}
.y7d{bottom:253.626667pt;}
.y49{bottom:262.266667pt;}
.y2a{bottom:263.066667pt;}
.yb5{bottom:266.266667pt;}
.y9e{bottom:268.666667pt;}
.y62{bottom:276.666667pt;}
.y29{bottom:281.466667pt;}
.yb4{bottom:284.666667pt;}
.y9d{bottom:287.066667pt;}
.y7c{bottom:288.026667pt;}
.y48{bottom:289.946667pt;}
.y28{bottom:299.906667pt;}
.yc1{bottom:303.106667pt;}
.y61{bottom:304.226667pt;}
.y7b{bottom:306.466667pt;}
.y47{bottom:317.506667pt;}
.y27{bottom:318.306667pt;}
.yb3{bottom:319.106667pt;}
.y9c{bottom:321.506667pt;}
.y60{bottom:331.906667pt;}
.y26{bottom:336.706667pt;}
.yb2{bottom:337.506667pt;}
.y9b{bottom:339.906667pt;}
.y7a{bottom:340.866667pt;}
.y46{bottom:345.026667pt;}
.y25{bottom:355.106667pt;}
.y9a{bottom:358.306667pt;}
.y79{bottom:359.266667pt;}
.y5f{bottom:359.426667pt;}
.yb1{bottom:371.906667pt;}
.y24{bottom:373.506667pt;}
.yc0{bottom:374.146667pt;}
.y78{bottom:377.666667pt;}
.y45{bottom:377.986667pt;}
.y5e{bottom:387.106667pt;}
.yb0{bottom:390.306667pt;}
.y23{bottom:391.906667pt;}
.y99{bottom:392.546667pt;}
.yaf{bottom:408.546667pt;}
.y22{bottom:410.306667pt;}
.y98{bottom:410.946667pt;}
.y77{bottom:412.066667pt;}
.y44{bottom:413.666667pt;}
.y5d{bottom:414.626667pt;}
.y97{bottom:429.346667pt;}
.y76{bottom:430.466667pt;}
.y5c{bottom:442.306667pt;}
.yae{bottom:442.946667pt;}
.y21{bottom:444.546667pt;}
.ybf{bottom:445.346667pt;}
.y43{bottom:446.626667pt;}
.yad{bottom:461.346667pt;}
.y96{bottom:463.746667pt;}
.y75{bottom:464.866667pt;}
.y5b{bottom:469.826667pt;}
.y42{bottom:474.146667pt;}
.y20{bottom:479.106667pt;}
.yac{bottom:479.746667pt;}
.y95{bottom:482.146667pt;}
.y74{bottom:483.266667pt;}
.y1f{bottom:497.506667pt;}
.y94{bottom:500.546667pt;}
.y73{bottom:501.666667pt;}
.y41{bottom:501.826667pt;}
.yab{bottom:514.146667pt;}
.y1e{bottom:515.906667pt;}
.ybe{bottom:516.546667pt;}
.y5a{bottom:525.026667pt;}
.y40{bottom:529.346667pt;}
.yaa{bottom:532.546667pt;}
.y1d{bottom:534.306667pt;}
.y93{bottom:534.946667pt;}
.y72{bottom:536.066667pt;}
.ya9{bottom:550.973333pt;}
.y1c{bottom:552.573333pt;}
.y92{bottom:553.373333pt;}
.y71{bottom:554.493333pt;}
.y3f{bottom:557.053333pt;}
.ybd{bottom:569.373333pt;}
.y1b{bottom:570.973333pt;}
.y59{bottom:580.253333pt;}
.y3e{bottom:584.573333pt;}
.ya8{bottom:585.373333pt;}
.y91{bottom:587.773333pt;}
.y70{bottom:588.893333pt;}
.y1a{bottom:589.373333pt;}
.ya7{bottom:603.773333pt;}
.y90{bottom:606.173333pt;}
.y6f{bottom:607.293333pt;}
.y19{bottom:607.773333pt;}
.y3d{bottom:617.533333pt;}
.ya6{bottom:622.173333pt;}
.y6e{bottom:625.693333pt;}
.y18{bottom:626.173333pt;}
.y58{bottom:635.453333pt;}
.y8f{bottom:640.573333pt;}
.y17{bottom:644.573333pt;}
.y3c{bottom:653.053333pt;}
.y8e{bottom:658.973333pt;}
.y16{bottom:662.973333pt;}
.y6d{bottom:669.213333pt;}
.yc9{bottom:672.413333pt;}
.ya5{bottom:674.973333pt;}
.y3b{bottom:680.733333pt;}
.y15{bottom:681.373333pt;}
.y57{bottom:690.653333pt;}
.y8d{bottom:693.373333pt;}
.y14{bottom:699.773333pt;}
.y6c{bottom:704.893333pt;}
.y3a{bottom:708.253333pt;}
.yc8{bottom:709.373333pt;}
.y8c{bottom:711.773333pt;}
.y13{bottom:718.173333pt;}
.ya4{bottom:727.773333pt;}
.y6b{bottom:732.573333pt;}
.y39{bottom:735.933333pt;}
.y12{bottom:736.573333pt;}
.y56{bottom:745.853333pt;}
.y8b{bottom:746.173333pt;}
.y11{bottom:754.973333pt;}
.y6a{bottom:760.093333pt;}
.yc7{bottom:762.173333pt;}
.y38{bottom:763.453333pt;}
.y8a{bottom:764.573333pt;}
.y55{bottom:773.373333pt;}
.y10{bottom:774.053333pt;}
.ya3{bottom:780.613333pt;}
.ybc{bottom:783.013333pt;}
.y69{bottom:787.813333pt;}
.y37{bottom:791.173333pt;}
.yf{bottom:796.133333pt;}
.y89{bottom:799.013333pt;}
.y54{bottom:801.093333pt;}
.yc6{bottom:815.013333pt;}
.y68{bottom:815.333333pt;}
.y88{bottom:817.413333pt;}
.y36{bottom:818.693333pt;}
.ye{bottom:820.613333pt;}
.y53{bottom:828.613333pt;}
.yc5{bottom:833.413333pt;}
.ybb{bottom:835.813333pt;}
.yd{bottom:845.093333pt;}
.y35{bottom:846.373333pt;}
.y67{bottom:848.133333pt;}
.y87{bottom:851.813333pt;}
.y52{bottom:856.293333pt;}
.yc{bottom:869.733333pt;}
.y86{bottom:870.213333pt;}
.y34{bottom:873.893333pt;}
.y51{bottom:883.813333pt;}
.yc4{bottom:886.213333pt;}
.y85{bottom:888.613333pt;}
.yb{bottom:894.213333pt;}
.y33{bottom:901.573333pt;}
.ya2{bottom:904.613333pt;}
.y50{bottom:911.493333pt;}
.ya{bottom:918.693333pt;}
.y84{bottom:923.013333pt;}
.y32{bottom:929.093333pt;}
.y4f{bottom:939.013333pt;}
.y83{bottom:941.413333pt;}
.y9{bottom:943.333333pt;}
.y31{bottom:956.773333pt;}
.yc3{bottom:957.413333pt;}
.y4e{bottom:966.693333pt;}
.y8{bottom:967.813333pt;}
.y82{bottom:975.813333pt;}
.y30{bottom:991.493333pt;}
.y7{bottom:991.653333pt;}
.y4d{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h4{height:49.622500pt;}
.h7{height:52.750000pt;}
.h3{height:52.785000pt;}
.h8{height:56.843750pt;}
.h2{height:57.375000pt;}
.h5{height:66.507188pt;}
.h6{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.xa{left:132.351988pt;}
.x9{left:142.266655pt;}
.x3{left:151.226655pt;}
.x4{left:214.266655pt;}
.x7{left:243.546655pt;}
.x6{left:253.186655pt;}
.x5{left:415.933322pt;}
.x1{left:434.813322pt;}
.x8{left:718.373322pt;}
}




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