
    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_ed87d9f8547ea3fc570d85b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_7c4e5ab41608cddc75d617b3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_6ab3fb3a51feae5f7ee5ba56.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0da2c167c214f96124d070c2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e1407be1dbaa57a0ab9ed831.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_025dce94997a10c6f8263fe7.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.lsb{letter-spacing:-0.690000px;}
.ls2{letter-spacing:-0.540600px;}
.lsa{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.073200px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.433200px;}
.ls8{letter-spacing:12.060000px;}
.ls5{letter-spacing:64.026720px;}
.ls7{letter-spacing:191.484000px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws3{word-spacing:-21.097440px;}
.ws6{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.370000px;}
.ws1{word-spacing:-19.726560px;}
.ws0{word-spacing:-15.970440px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-5.981040px;}
._f{margin-left:-4.970160px;}
._22{margin-left:-3.327120px;}
._3{margin-left:-1.671360px;}
._2{width:1.244880px;}
._d{width:2.719680px;}
._c{width:4.030080px;}
._11{width:5.293680px;}
._10{width:6.323280px;}
._1c{width:8.002800px;}
._1d{width:9.252960px;}
._25{width:10.361520px;}
._8{width:11.540880px;}
._9{width:12.712080px;}
._14{width:13.788480px;}
._5{width:14.910480px;}
._7{width:16.076400px;}
._6{width:17.204400px;}
._1f{width:18.954000px;}
._16{width:20.035680px;}
._19{width:22.070880px;}
._4{width:23.587200px;}
._23{width:24.785280px;}
._24{width:26.114400px;}
._1e{width:27.378000px;}
._1a{width:28.556640px;}
._1b{width:29.823120px;}
._18{width:30.946560px;}
._17{width:32.095440px;}
._29{width:33.696000px;}
._13{width:35.057280px;}
._12{width:36.378240px;}
._28{width:37.486800px;}
._27{width:38.821200px;}
._a{width:40.350960px;}
._b{width:41.698800px;}
._15{width:53.155440px;}
._20{width:71.098560px;}
._21{width:72.251040px;}
._26{width:177.660000px;}
._0{width:292.222560px;}
._1{width:1422.946560px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(51,51,204);}
.fc1{color:rgb(204,0,102);}
.fc4{color:rgb(42,42,42);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:20.016000px;}
.y6{bottom:43.776000px;}
.y5{bottom:68.796000px;}
.y26{bottom:97.776000px;}
.y63{bottom:108.396000px;}
.y25{bottom:125.676000px;}
.y62{bottom:136.116000px;}
.y92{bottom:139.896000px;}
.ya3{bottom:146.736000px;}
.y24{bottom:153.390000px;}
.y61{bottom:163.830000px;}
.y91{bottom:167.610000px;}
.ya2{bottom:174.450000px;}
.y23{bottom:181.110000px;}
.y75{bottom:190.830000px;}
.y60{bottom:191.550000px;}
.y90{bottom:195.330000px;}
.y22{bottom:209.010000px;}
.ya1{bottom:214.230000px;}
.y74{bottom:218.730000px;}
.y5f{bottom:219.450000px;}
.y8f{bottom:223.230000px;}
.y21{bottom:236.730000px;}
.ya0{bottom:241.950000px;}
.y73{bottom:246.450000px;}
.y5e{bottom:247.170000px;}
.y8e{bottom:250.950000px;}
.y45{bottom:255.270000px;}
.y20{bottom:264.450000px;}
.y72{bottom:274.170000px;}
.y5d{bottom:274.890000px;}
.y8d{bottom:278.670000px;}
.y9f{bottom:281.775000px;}
.y44{bottom:283.215000px;}
.y1f{bottom:292.215000px;}
.y71{bottom:301.935000px;}
.y5c{bottom:302.835000px;}
.y8c{bottom:306.615000px;}
.y9e{bottom:309.495000px;}
.y43{bottom:310.935000px;}
.y1e{bottom:320.115000px;}
.y70{bottom:329.835000px;}
.y5b{bottom:330.555000px;}
.y8b{bottom:334.335000px;}
.y42{bottom:338.655000px;}
.y1d{bottom:347.835000px;}
.y9d{bottom:349.275000px;}
.y6f{bottom:357.555000px;}
.y5a{bottom:358.275000px;}
.y8a{bottom:362.055000px;}
.y41{bottom:366.555000px;}
.y1c{bottom:375.555000px;}
.y9c{bottom:377.175000px;}
.y6e{bottom:385.275000px;}
.y59{bottom:385.995000px;}
.y89{bottom:389.775000px;}
.y40{bottom:394.275000px;}
.y6d{bottom:413.175000px;}
.y58{bottom:413.895000px;}
.y1b{bottom:414.615000px;}
.y9b{bottom:416.775000px;}
.y88{bottom:417.675000px;}
.y3f{bottom:421.995000px;}
.y6c{bottom:440.895000px;}
.y57{bottom:441.615000px;}
.y9a{bottom:444.675000px;}
.y87{bottom:445.395000px;}
.y3e{bottom:449.715000px;}
.y1a{bottom:453.675000px;}
.y56{bottom:469.335000px;}
.y86{bottom:473.115000px;}
.y3d{bottom:477.615000px;}
.y6b{bottom:480.675000px;}
.y99{bottom:484.455000px;}
.y19{bottom:492.735000px;}
.y55{bottom:497.235000px;}
.y85{bottom:500.835000px;}
.y3c{bottom:505.335000px;}
.y18{bottom:520.455000px;}
.y98{bottom:524.235000px;}
.y54{bottom:524.955000px;}
.y84{bottom:528.735000px;}
.y3b{bottom:533.055000px;}
.y97{bottom:551.955000px;}
.y53{bottom:552.675000px;}
.y83{bottom:556.455000px;}
.y17{bottom:559.515000px;}
.y6a{bottom:560.235000px;}
.y3a{bottom:560.775000px;}
.y96{bottom:579.705000px;}
.y52{bottom:580.425000px;}
.y82{bottom:584.205000px;}
.y16{bottom:587.265000px;}
.y39{bottom:588.705000px;}
.y69{bottom:600.045000px;}
.y95{bottom:607.425000px;}
.y51{bottom:608.325000px;}
.y81{bottom:612.105000px;}
.y15{bottom:614.985000px;}
.y38{bottom:616.425000px;}
.y94{bottom:635.325000px;}
.y50{bottom:636.045000px;}
.y68{bottom:639.825000px;}
.y14{bottom:642.705000px;}
.y37{bottom:644.145000px;}
.y80{bottom:650.985000px;}
.y93{bottom:663.045000px;}
.y13{bottom:670.605000px;}
.y36{bottom:672.045000px;}
.y4f{bottom:675.105000px;}
.y67{bottom:679.425000px;}
.y7f{bottom:690.765000px;}
.y12{bottom:698.325000px;}
.y35{bottom:699.765000px;}
.y4e{bottom:702.825000px;}
.y66{bottom:719.205000px;}
.y11{bottom:726.045000px;}
.y34{bottom:727.485000px;}
.y7e{bottom:730.545000px;}
.y4d{bottom:742.605000px;}
.y33{bottom:755.205000px;}
.y65{bottom:758.985000px;}
.y10{bottom:765.105000px;}
.y7d{bottom:770.325000px;}
.y4c{bottom:782.385000px;}
.y32{bottom:783.105000px;}
.y64{bottom:798.765000px;}
.yaa{bottom:802.545000px;}
.yf{bottom:804.165000px;}
.y7c{bottom:810.105000px;}
.y31{bottom:810.825000px;}
.y4b{bottom:822.165000px;}
.y30{bottom:838.545000px;}
.ya9{bottom:842.325000px;}
.ye{bottom:843.225000px;}
.y7b{bottom:849.930000px;}
.y4a{bottom:861.990000px;}
.y2f{bottom:866.490000px;}
.ya8{bottom:870.090000px;}
.yd{bottom:882.150000px;}
.y7a{bottom:889.710000px;}
.y2e{bottom:894.210000px;}
.ya7{bottom:897.990000px;}
.y49{bottom:901.770000px;}
.yc{bottom:921.210000px;}
.y2d{bottom:921.930000px;}
.y79{bottom:929.490000px;}
.ya6{bottom:937.770000px;}
.y48{bottom:941.550000px;}
.y2c{bottom:949.650000px;}
.yb{bottom:960.270000px;}
.ya5{bottom:965.490000px;}
.y78{bottom:969.270000px;}
.y2b{bottom:977.550000px;}
.y47{bottom:981.330000px;}
.ya4{bottom:993.210000px;}
.ya{bottom:999.330000px;}
.y2a{bottom:1005.270000px;}
.y77{bottom:1009.050000px;}
.y46{bottom:1021.110000px;}
.y29{bottom:1032.990000px;}
.y9{bottom:1038.210000px;}
.y76{bottom:1048.830000px;}
.y28{bottom:1060.710000px;}
.y8{bottom:1077.270000px;}
.y27{bottom:1088.610000px;}
.y4{bottom:1128.390000px;}
.y3{bottom:1152.180000px;}
.y2{bottom:1177.020000px;}
.y1{bottom:1207.800000px;}
.h7{height:59.066719px;}
.h4{height:67.169883px;}
.h2{height:76.355508px;}
.h5{height:82.676953px;}
.h6{height:84.898125px;}
.h3{height:86.115234px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.479987px;}
.x4{left:84.959987px;}
.xf{left:98.495987px;}
.x1{left:106.415987px;}
.x10{left:125.495987px;}
.xe{left:138.095987px;}
.x12{left:148.715987px;}
.x9{left:192.629987px;}
.x6{left:223.589987px;}
.xc{left:227.369987px;}
.xd{left:231.509987px;}
.x8{left:314.894987px;}
.xb{left:316.334987px;}
.xa{left:323.894987px;}
.x13{left:327.674987px;}
.x7{left:446.474987px;}
.x2{left:546.404987px;}
.x3{left:636.764987px;}
.x11{left:672.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.613333pt;}
.ls2{letter-spacing:-0.480533pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.065067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.385067pt;}
.ls8{letter-spacing:10.720000pt;}
.ls5{letter-spacing:56.912640pt;}
.ls7{letter-spacing:170.208000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws3{word-spacing:-18.753280pt;}
.ws6{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.106667pt;}
.ws1{word-spacing:-17.534720pt;}
.ws0{word-spacing:-14.195947pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-5.316480pt;}
._f{margin-left:-4.417920pt;}
._22{margin-left:-2.957440pt;}
._3{margin-left:-1.485653pt;}
._2{width:1.106560pt;}
._d{width:2.417493pt;}
._c{width:3.582293pt;}
._11{width:4.705493pt;}
._10{width:5.620693pt;}
._1c{width:7.113600pt;}
._1d{width:8.224853pt;}
._25{width:9.210240pt;}
._8{width:10.258560pt;}
._9{width:11.299627pt;}
._14{width:12.256427pt;}
._5{width:13.253760pt;}
._7{width:14.290133pt;}
._6{width:15.292800pt;}
._1f{width:16.848000pt;}
._16{width:17.809493pt;}
._19{width:19.618560pt;}
._4{width:20.966400pt;}
._23{width:22.031360pt;}
._24{width:23.212800pt;}
._1e{width:24.336000pt;}
._1a{width:25.383680pt;}
._1b{width:26.509440pt;}
._18{width:27.508053pt;}
._17{width:28.529280pt;}
._29{width:29.952000pt;}
._13{width:31.162027pt;}
._12{width:32.336213pt;}
._28{width:33.321600pt;}
._27{width:34.507733pt;}
._a{width:35.867520pt;}
._b{width:37.065600pt;}
._15{width:47.249280pt;}
._20{width:63.198720pt;}
._21{width:64.223147pt;}
._26{width:157.920000pt;}
._0{width:259.753387pt;}
._1{width:1264.841387pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:17.792000pt;}
.y6{bottom:38.912000pt;}
.y5{bottom:61.152000pt;}
.y26{bottom:86.912000pt;}
.y63{bottom:96.352000pt;}
.y25{bottom:111.712000pt;}
.y62{bottom:120.992000pt;}
.y92{bottom:124.352000pt;}
.ya3{bottom:130.432000pt;}
.y24{bottom:136.346667pt;}
.y61{bottom:145.626667pt;}
.y91{bottom:148.986667pt;}
.ya2{bottom:155.066667pt;}
.y23{bottom:160.986667pt;}
.y75{bottom:169.626667pt;}
.y60{bottom:170.266667pt;}
.y90{bottom:173.626667pt;}
.y22{bottom:185.786667pt;}
.ya1{bottom:190.426667pt;}
.y74{bottom:194.426667pt;}
.y5f{bottom:195.066667pt;}
.y8f{bottom:198.426667pt;}
.y21{bottom:210.426667pt;}
.ya0{bottom:215.066667pt;}
.y73{bottom:219.066667pt;}
.y5e{bottom:219.706667pt;}
.y8e{bottom:223.066667pt;}
.y45{bottom:226.906667pt;}
.y20{bottom:235.066667pt;}
.y72{bottom:243.706667pt;}
.y5d{bottom:244.346667pt;}
.y8d{bottom:247.706667pt;}
.y9f{bottom:250.466667pt;}
.y44{bottom:251.746667pt;}
.y1f{bottom:259.746667pt;}
.y71{bottom:268.386667pt;}
.y5c{bottom:269.186667pt;}
.y8c{bottom:272.546667pt;}
.y9e{bottom:275.106667pt;}
.y43{bottom:276.386667pt;}
.y1e{bottom:284.546667pt;}
.y70{bottom:293.186667pt;}
.y5b{bottom:293.826667pt;}
.y8b{bottom:297.186667pt;}
.y42{bottom:301.026667pt;}
.y1d{bottom:309.186667pt;}
.y9d{bottom:310.466667pt;}
.y6f{bottom:317.826667pt;}
.y5a{bottom:318.466667pt;}
.y8a{bottom:321.826667pt;}
.y41{bottom:325.826667pt;}
.y1c{bottom:333.826667pt;}
.y9c{bottom:335.266667pt;}
.y6e{bottom:342.466667pt;}
.y59{bottom:343.106667pt;}
.y89{bottom:346.466667pt;}
.y40{bottom:350.466667pt;}
.y6d{bottom:367.266667pt;}
.y58{bottom:367.906667pt;}
.y1b{bottom:368.546667pt;}
.y9b{bottom:370.466667pt;}
.y88{bottom:371.266667pt;}
.y3f{bottom:375.106667pt;}
.y6c{bottom:391.906667pt;}
.y57{bottom:392.546667pt;}
.y9a{bottom:395.266667pt;}
.y87{bottom:395.906667pt;}
.y3e{bottom:399.746667pt;}
.y1a{bottom:403.266667pt;}
.y56{bottom:417.186667pt;}
.y86{bottom:420.546667pt;}
.y3d{bottom:424.546667pt;}
.y6b{bottom:427.266667pt;}
.y99{bottom:430.626667pt;}
.y19{bottom:437.986667pt;}
.y55{bottom:441.986667pt;}
.y85{bottom:445.186667pt;}
.y3c{bottom:449.186667pt;}
.y18{bottom:462.626667pt;}
.y98{bottom:465.986667pt;}
.y54{bottom:466.626667pt;}
.y84{bottom:469.986667pt;}
.y3b{bottom:473.826667pt;}
.y97{bottom:490.626667pt;}
.y53{bottom:491.266667pt;}
.y83{bottom:494.626667pt;}
.y17{bottom:497.346667pt;}
.y6a{bottom:497.986667pt;}
.y3a{bottom:498.466667pt;}
.y96{bottom:515.293333pt;}
.y52{bottom:515.933333pt;}
.y82{bottom:519.293333pt;}
.y16{bottom:522.013333pt;}
.y39{bottom:523.293333pt;}
.y69{bottom:533.373333pt;}
.y95{bottom:539.933333pt;}
.y51{bottom:540.733333pt;}
.y81{bottom:544.093333pt;}
.y15{bottom:546.653333pt;}
.y38{bottom:547.933333pt;}
.y94{bottom:564.733333pt;}
.y50{bottom:565.373333pt;}
.y68{bottom:568.733333pt;}
.y14{bottom:571.293333pt;}
.y37{bottom:572.573333pt;}
.y80{bottom:578.653333pt;}
.y93{bottom:589.373333pt;}
.y13{bottom:596.093333pt;}
.y36{bottom:597.373333pt;}
.y4f{bottom:600.093333pt;}
.y67{bottom:603.933333pt;}
.y7f{bottom:614.013333pt;}
.y12{bottom:620.733333pt;}
.y35{bottom:622.013333pt;}
.y4e{bottom:624.733333pt;}
.y66{bottom:639.293333pt;}
.y11{bottom:645.373333pt;}
.y34{bottom:646.653333pt;}
.y7e{bottom:649.373333pt;}
.y4d{bottom:660.093333pt;}
.y33{bottom:671.293333pt;}
.y65{bottom:674.653333pt;}
.y10{bottom:680.093333pt;}
.y7d{bottom:684.733333pt;}
.y4c{bottom:695.453333pt;}
.y32{bottom:696.093333pt;}
.y64{bottom:710.013333pt;}
.yaa{bottom:713.373333pt;}
.yf{bottom:714.813333pt;}
.y7c{bottom:720.093333pt;}
.y31{bottom:720.733333pt;}
.y4b{bottom:730.813333pt;}
.y30{bottom:745.373333pt;}
.ya9{bottom:748.733333pt;}
.ye{bottom:749.533333pt;}
.y7b{bottom:755.493333pt;}
.y4a{bottom:766.213333pt;}
.y2f{bottom:770.213333pt;}
.ya8{bottom:773.413333pt;}
.yd{bottom:784.133333pt;}
.y7a{bottom:790.853333pt;}
.y2e{bottom:794.853333pt;}
.ya7{bottom:798.213333pt;}
.y49{bottom:801.573333pt;}
.yc{bottom:818.853333pt;}
.y2d{bottom:819.493333pt;}
.y79{bottom:826.213333pt;}
.ya6{bottom:833.573333pt;}
.y48{bottom:836.933333pt;}
.y2c{bottom:844.133333pt;}
.yb{bottom:853.573333pt;}
.ya5{bottom:858.213333pt;}
.y78{bottom:861.573333pt;}
.y2b{bottom:868.933333pt;}
.y47{bottom:872.293333pt;}
.ya4{bottom:882.853333pt;}
.ya{bottom:888.293333pt;}
.y2a{bottom:893.573333pt;}
.y77{bottom:896.933333pt;}
.y46{bottom:907.653333pt;}
.y29{bottom:918.213333pt;}
.y9{bottom:922.853333pt;}
.y76{bottom:932.293333pt;}
.y28{bottom:942.853333pt;}
.y8{bottom:957.573333pt;}
.y27{bottom:967.653333pt;}
.y4{bottom:1003.013333pt;}
.y3{bottom:1024.160000pt;}
.y2{bottom:1046.240000pt;}
.y1{bottom:1073.600000pt;}
.h7{height:52.503750pt;}
.h4{height:59.706562pt;}
.h2{height:67.871563pt;}
.h5{height:73.490625pt;}
.h6{height:75.465000pt;}
.h3{height:76.546875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.759988pt;}
.x4{left:75.519988pt;}
.xf{left:87.551988pt;}
.x1{left:94.591988pt;}
.x10{left:111.551988pt;}
.xe{left:122.751988pt;}
.x12{left:132.191988pt;}
.x9{left:171.226655pt;}
.x6{left:198.746655pt;}
.xc{left:202.106655pt;}
.xd{left:205.786655pt;}
.x8{left:279.906655pt;}
.xb{left:281.186655pt;}
.xa{left:287.906655pt;}
.x13{left:291.266655pt;}
.x7{left:396.866655pt;}
.x2{left:485.693322pt;}
.x3{left:566.013322pt;}
.x11{left:598.053322pt;}
}




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