
    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_ddcd8e5a8358c46aea5898fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_582c3e076b70dc82b94e323c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7c2fe92c05e5fe1a7ef5beed.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f3d8b3e050355c7c4791053e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_187d57f1f9adb06c0ceac252.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_05ff30109078a0c54f5e27d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_87485a5bfb0ac33a4c700d99.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_32adba4f8c069ea1bcb5d8d1.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-154.800000px;}
.v2{vertical-align:-82.800000px;}
.v4{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.120000px;}
.ls10{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.450600px;}
.ls15{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.269400px;}
.ls7{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.864000px;}
.lse{letter-spacing:5.040000px;}
.ls16{letter-spacing:19.440000px;}
.ls5{letter-spacing:89.976000px;}
.ls1{letter-spacing:879.816000px;}
.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;}
}
.ws2{word-spacing:-144.000000px;}
.ws1{word-spacing:-59.760000px;}
.ws5{word-spacing:-18.864000px;}
.ws4{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.432000px;}
.ws8{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.144000px;}
.ws12{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.568000px;}
.ws10{word-spacing:-17.496000px;}
.wsf{word-spacing:-12.420000px;}
.wsd{word-spacing:-12.329400px;}
.wsc{word-spacing:-11.609400px;}
.ws0{word-spacing:0.000000px;}
._1c{margin-left:-2.174400px;}
._1{margin-left:-1.135440px;}
._0{width:1.244640px;}
._c{width:2.602080px;}
._18{width:3.877920px;}
._4{width:4.896000px;}
._10{width:6.192000px;}
._11{width:7.393680px;}
._8{width:8.673120px;}
._7{width:9.775440px;}
._a{width:11.424000px;}
._b{width:12.660000px;}
._12{width:13.687440px;}
._2{width:14.688000px;}
._3{width:15.728880px;}
._9{width:16.926000px;}
._e{width:19.185120px;}
._d{width:20.215440px;}
._f{width:21.307440px;}
._13{width:22.711920px;}
._16{width:24.696000px;}
._17{width:25.776000px;}
._19{width:27.696000px;}
._1a{width:29.448000px;}
._1b{width:30.528000px;}
._15{width:31.711440px;}
._14{width:32.772000px;}
._21{width:34.131840px;}
._22{width:36.336000px;}
._23{width:37.621440px;}
._1e{width:39.799440px;}
._5{width:42.312000px;}
._6{width:43.603440px;}
._1f{width:54.466800px;}
._20{width:56.208000px;}
._1d{width:197.976000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:4.492500px;}
.y50{bottom:55.123500px;}
.y4f{bottom:59.616000px;}
.y4{bottom:97.125005px;}
.y4d{bottom:119.916000px;}
.y82{bottom:126.036000px;}
.y1c{bottom:139.264499px;}
.y4c{bottom:140.616000px;}
.y81{bottom:146.736000px;}
.y4b{bottom:161.310000px;}
.y80{bottom:167.430000px;}
.y4a{bottom:182.010000px;}
.y7f{bottom:188.130000px;}
.y13{bottom:196.933500px;}
.y49{bottom:202.710000px;}
.y7e{bottom:208.830000px;}
.y1b{bottom:209.518500px;}
.y12{bottom:209.533503px;}
.y1a{bottom:222.118502px;}
.y11{bottom:222.133505px;}
.y48{bottom:223.410000px;}
.y7d{bottom:229.530000px;}
.y19{bottom:234.718504px;}
.y10{bottom:234.733496px;}
.y47{bottom:244.110000px;}
.y7c{bottom:250.230000px;}
.y18{bottom:259.918497px;}
.yf{bottom:259.933500px;}
.y46{bottom:264.810000px;}
.y7b{bottom:270.930000px;}
.y17{bottom:272.518500px;}
.ye{bottom:272.533503px;}
.y16{bottom:285.118502px;}
.yd{bottom:285.133499px;}
.y45{bottom:285.555000px;}
.y7a{bottom:291.675000px;}
.y44{bottom:306.255000px;}
.y15{bottom:310.318501px;}
.yc{bottom:310.333501px;}
.y79{bottom:312.375000px;}
.y14{bottom:322.918500px;}
.yb{bottom:322.933500px;}
.y43{bottom:326.955000px;}
.y78{bottom:333.075000px;}
.y42{bottom:347.655000px;}
.ya{bottom:348.133500px;}
.y77{bottom:353.775000px;}
.y41{bottom:368.355000px;}
.y76{bottom:374.475000px;}
.y9{bottom:386.785499px;}
.y40{bottom:389.055000px;}
.y75{bottom:395.175000px;}
.y8{bottom:408.044999px;}
.y3f{bottom:409.755000px;}
.y74{bottom:415.875000px;}
.y3e{bottom:430.455000px;}
.y73{bottom:436.395000px;}
.y3d{bottom:451.155000px;}
.y72{bottom:457.095000px;}
.y3c{bottom:471.855000px;}
.y84{bottom:477.435000px;}
.y71{bottom:477.795000px;}
.y3b{bottom:492.555000px;}
.y70{bottom:498.495000px;}
.y3a{bottom:513.255000px;}
.y6f{bottom:519.195000px;}
.y7{bottom:520.864502px;}
.y39{bottom:533.955000px;}
.y6{bottom:538.864499px;}
.y6e{bottom:539.895000px;}
.y38{bottom:554.655000px;}
.y5{bottom:556.864499px;}
.y6d{bottom:560.625000px;}
.y37{bottom:575.385000px;}
.y6c{bottom:581.325000px;}
.y36{bottom:596.085000px;}
.y6b{bottom:602.025000px;}
.y35{bottom:616.785000px;}
.y6a{bottom:622.725000px;}
.y34{bottom:637.485000px;}
.y69{bottom:643.425000px;}
.y33{bottom:657.825000px;}
.y68{bottom:664.125000px;}
.y32{bottom:678.525000px;}
.y67{bottom:684.825000px;}
.y31{bottom:699.225000px;}
.y66{bottom:705.525000px;}
.y30{bottom:720.285000px;}
.y65{bottom:726.225000px;}
.y2f{bottom:740.985000px;}
.y64{bottom:746.925000px;}
.y3{bottom:752.599495px;}
.y2e{bottom:761.685000px;}
.y63{bottom:767.625000px;}
.y2d{bottom:782.385000px;}
.y62{bottom:788.325000px;}
.y2c{bottom:803.085000px;}
.y61{bottom:809.025000px;}
.y2b{bottom:823.785000px;}
.y60{bottom:829.725000px;}
.y2a{bottom:844.530000px;}
.y83{bottom:850.470000px;}
.y29{bottom:865.230000px;}
.y5f{bottom:871.170000px;}
.y2{bottom:879.369000px;}
.y28{bottom:885.930000px;}
.y5e{bottom:891.870000px;}
.y27{bottom:906.630000px;}
.y5d{bottom:912.570000px;}
.y26{bottom:927.330000px;}
.y5c{bottom:933.270000px;}
.y25{bottom:948.030000px;}
.y5b{bottom:953.970000px;}
.y1{bottom:966.726000px;}
.y24{bottom:968.730000px;}
.y5a{bottom:974.670000px;}
.y23{bottom:990.690000px;}
.y59{bottom:995.370000px;}
.y58{bottom:1016.070000px;}
.y22{bottom:1017.870000px;}
.y57{bottom:1036.770000px;}
.y56{bottom:1057.470000px;}
.y55{bottom:1078.170000px;}
.y21{bottom:1086.810000px;}
.y54{bottom:1098.870000px;}
.y20{bottom:1114.350000px;}
.y53{bottom:1119.570000px;}
.y52{bottom:1140.300000px;}
.y1f{bottom:1140.480000px;}
.y1e{bottom:1157.760000px;}
.y4e{bottom:1172.340000px;}
.y1d{bottom:1175.040000px;}
.he{height:20.692500px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hf{height:52.066406px;}
.h2{height:55.080000px;}
.h9{height:58.651172px;}
.hc{height:70.664062px;}
.hd{height:72.562500px;}
.h5{height:78.030000px;}
.h10{height:80.464922px;}
.hb{height:93.983203px;}
.ha{height:96.508125px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:9.180000px;}
.w5{width:18.180000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x8{left:127.656000px;}
.x5{left:138.996000px;}
.xd{left:154.650000px;}
.x6{left:173.910000px;}
.x4{left:203.484001px;}
.x7{left:322.815000px;}
.xb{left:356.835000px;}
.xa{left:382.215000px;}
.xe{left:437.475000px;}
.xc{left:441.975000px;}
.x9{left:446.475000px;}
.x3{left:454.959000px;}
@media print{
.v1{vertical-align:-137.600000pt;}
.v2{vertical-align:-73.600000pt;}
.v4{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:29.440000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.400533pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.239467pt;}
.ls7{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.768000pt;}
.lse{letter-spacing:4.480000pt;}
.ls16{letter-spacing:17.280000pt;}
.ls5{letter-spacing:79.978667pt;}
.ls1{letter-spacing:782.058667pt;}
.ws2{word-spacing:-128.000000pt;}
.ws1{word-spacing:-53.120000pt;}
.ws5{word-spacing:-16.768000pt;}
.ws4{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.384000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws12{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.616000pt;}
.ws10{word-spacing:-15.552000pt;}
.wsf{word-spacing:-11.040000pt;}
.wsd{word-spacing:-10.959467pt;}
.wsc{word-spacing:-10.319467pt;}
.ws0{word-spacing:0.000000pt;}
._1c{margin-left:-1.932800pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.106347pt;}
._c{width:2.312960pt;}
._18{width:3.447040pt;}
._4{width:4.352000pt;}
._10{width:5.504000pt;}
._11{width:6.572160pt;}
._8{width:7.709440pt;}
._7{width:8.689280pt;}
._a{width:10.154667pt;}
._b{width:11.253333pt;}
._12{width:12.166613pt;}
._2{width:13.056000pt;}
._3{width:13.981227pt;}
._9{width:15.045333pt;}
._e{width:17.053440pt;}
._d{width:17.969280pt;}
._f{width:18.939947pt;}
._13{width:20.188373pt;}
._16{width:21.952000pt;}
._17{width:22.912000pt;}
._19{width:24.618667pt;}
._1a{width:26.176000pt;}
._1b{width:27.136000pt;}
._15{width:28.187947pt;}
._14{width:29.130667pt;}
._21{width:30.339413pt;}
._22{width:32.298667pt;}
._23{width:33.441280pt;}
._1e{width:35.377280pt;}
._5{width:37.610667pt;}
._6{width:38.758613pt;}
._1f{width:48.414933pt;}
._20{width:49.962667pt;}
._1d{width:175.978667pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:3.993333pt;}
.y50{bottom:48.998667pt;}
.y4f{bottom:52.992000pt;}
.y4{bottom:86.333337pt;}
.y4d{bottom:106.592000pt;}
.y82{bottom:112.032000pt;}
.y1c{bottom:123.790666pt;}
.y4c{bottom:124.992000pt;}
.y81{bottom:130.432000pt;}
.y4b{bottom:143.386667pt;}
.y80{bottom:148.826667pt;}
.y4a{bottom:161.786667pt;}
.y7f{bottom:167.226667pt;}
.y13{bottom:175.052000pt;}
.y49{bottom:180.186667pt;}
.y7e{bottom:185.626667pt;}
.y1b{bottom:186.238666pt;}
.y12{bottom:186.252002pt;}
.y1a{bottom:197.438668pt;}
.y11{bottom:197.452004pt;}
.y48{bottom:198.586667pt;}
.y7d{bottom:204.026667pt;}
.y19{bottom:208.638670pt;}
.y10{bottom:208.651996pt;}
.y47{bottom:216.986667pt;}
.y7c{bottom:222.426667pt;}
.y18{bottom:231.038664pt;}
.yf{bottom:231.052000pt;}
.y46{bottom:235.386667pt;}
.y7b{bottom:240.826667pt;}
.y17{bottom:242.238666pt;}
.ye{bottom:242.252002pt;}
.y16{bottom:253.438668pt;}
.yd{bottom:253.451999pt;}
.y45{bottom:253.826667pt;}
.y7a{bottom:259.266667pt;}
.y44{bottom:272.226667pt;}
.y15{bottom:275.838667pt;}
.yc{bottom:275.852001pt;}
.y79{bottom:277.666667pt;}
.y14{bottom:287.038667pt;}
.yb{bottom:287.052000pt;}
.y43{bottom:290.626667pt;}
.y78{bottom:296.066667pt;}
.y42{bottom:309.026667pt;}
.ya{bottom:309.452000pt;}
.y77{bottom:314.466667pt;}
.y41{bottom:327.426667pt;}
.y76{bottom:332.866667pt;}
.y9{bottom:343.809333pt;}
.y40{bottom:345.826667pt;}
.y75{bottom:351.266667pt;}
.y8{bottom:362.706666pt;}
.y3f{bottom:364.226667pt;}
.y74{bottom:369.666667pt;}
.y3e{bottom:382.626667pt;}
.y73{bottom:387.906667pt;}
.y3d{bottom:401.026667pt;}
.y72{bottom:406.306667pt;}
.y3c{bottom:419.426667pt;}
.y84{bottom:424.386667pt;}
.y71{bottom:424.706667pt;}
.y3b{bottom:437.826667pt;}
.y70{bottom:443.106667pt;}
.y3a{bottom:456.226667pt;}
.y6f{bottom:461.506667pt;}
.y7{bottom:462.990669pt;}
.y39{bottom:474.626667pt;}
.y6{bottom:478.990666pt;}
.y6e{bottom:479.906667pt;}
.y38{bottom:493.026667pt;}
.y5{bottom:494.990666pt;}
.y6d{bottom:498.333333pt;}
.y37{bottom:511.453333pt;}
.y6c{bottom:516.733333pt;}
.y36{bottom:529.853333pt;}
.y6b{bottom:535.133333pt;}
.y35{bottom:548.253333pt;}
.y6a{bottom:553.533333pt;}
.y34{bottom:566.653333pt;}
.y69{bottom:571.933333pt;}
.y33{bottom:584.733333pt;}
.y68{bottom:590.333333pt;}
.y32{bottom:603.133333pt;}
.y67{bottom:608.733333pt;}
.y31{bottom:621.533333pt;}
.y66{bottom:627.133333pt;}
.y30{bottom:640.253333pt;}
.y65{bottom:645.533333pt;}
.y2f{bottom:658.653333pt;}
.y64{bottom:663.933333pt;}
.y3{bottom:668.977329pt;}
.y2e{bottom:677.053333pt;}
.y63{bottom:682.333333pt;}
.y2d{bottom:695.453333pt;}
.y62{bottom:700.733333pt;}
.y2c{bottom:713.853333pt;}
.y61{bottom:719.133333pt;}
.y2b{bottom:732.253333pt;}
.y60{bottom:737.533333pt;}
.y2a{bottom:750.693333pt;}
.y83{bottom:755.973333pt;}
.y29{bottom:769.093333pt;}
.y5f{bottom:774.373333pt;}
.y2{bottom:781.661334pt;}
.y28{bottom:787.493333pt;}
.y5e{bottom:792.773333pt;}
.y27{bottom:805.893333pt;}
.y5d{bottom:811.173333pt;}
.y26{bottom:824.293333pt;}
.y5c{bottom:829.573333pt;}
.y25{bottom:842.693333pt;}
.y5b{bottom:847.973333pt;}
.y1{bottom:859.312000pt;}
.y24{bottom:861.093333pt;}
.y5a{bottom:866.373333pt;}
.y23{bottom:880.613333pt;}
.y59{bottom:884.773333pt;}
.y58{bottom:903.173333pt;}
.y22{bottom:904.773333pt;}
.y57{bottom:921.573333pt;}
.y56{bottom:939.973333pt;}
.y55{bottom:958.373333pt;}
.y21{bottom:966.053333pt;}
.y54{bottom:976.773333pt;}
.y20{bottom:990.533333pt;}
.y53{bottom:995.173333pt;}
.y52{bottom:1013.600000pt;}
.y1f{bottom:1013.760000pt;}
.y1e{bottom:1029.120000pt;}
.y4e{bottom:1042.080000pt;}
.y1d{bottom:1044.480000pt;}
.he{height:18.393333pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hf{height:46.281250pt;}
.h2{height:48.960000pt;}
.h9{height:52.134375pt;}
.hc{height:62.812500pt;}
.hd{height:64.500000pt;}
.h5{height:69.360000pt;}
.h10{height:71.524375pt;}
.hb{height:83.540625pt;}
.ha{height:85.785000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:8.160000pt;}
.w5{width:16.160000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x8{left:113.472000pt;}
.x5{left:123.552000pt;}
.xd{left:137.466667pt;}
.x6{left:154.586667pt;}
.x4{left:180.874667pt;}
.x7{left:286.946667pt;}
.xb{left:317.186667pt;}
.xa{left:339.746667pt;}
.xe{left:388.866667pt;}
.xc{left:392.866667pt;}
.x9{left:396.866667pt;}
.x3{left:404.408000pt;}
}




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