
    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_2f4e241d2b019074e6d870d8.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_6a2741e7d9617b3f70d13e7e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_71998a17ac6bb71b4db6e8e3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.949219;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_4d0b16d8076dda397d07c94b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929199;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_95cf0eeaadcd7100484b4154.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_61115bdf15b86ef7a9c958ea.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8030049f7aee68aa652bcc42.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_273709b0398617e9da9f3507.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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.216000px;}
.ls7{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.378000px;}
.lsc{letter-spacing:7.200000px;}
.ls0{letter-spacing:57.029760px;}
.ls1{letter-spacing:201.209760px;}
.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;}
}
.ws5{word-spacing:-22.860000px;}
.ws9{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:-12.240000px;}
.ws3{word-spacing:-12.204000px;}
.ws2{word-spacing:-9.437760px;}
.ws1{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-10.260000px;}
._12{margin-left:-8.283600px;}
._6{margin-left:-7.200000px;}
._8{margin-left:-5.805600px;}
._7{margin-left:-4.431600px;}
._4{margin-left:-2.970000px;}
._0{margin-left:-1.436400px;}
._1{width:1.149120px;}
._2{width:3.094800px;}
._9{width:4.107600px;}
._10{width:5.212320px;}
._b{width:6.264000px;}
._a{width:7.848000px;}
._c{width:9.984000px;}
._d{width:11.328000px;}
._e{width:12.888000px;}
._15{width:13.923600px;}
._11{width:15.480000px;}
._f{width:16.848000px;}
._14{width:24.919200px;}
._13{width:26.420400px;}
._3{width:66.374400px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(32,33,36);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.y57{bottom:8.460000px;}
.y8{bottom:11.160000px;}
.y50{bottom:12.780000px;}
.y54{bottom:13.680000px;}
.y59{bottom:13.725000px;}
.y3c{bottom:14.220000px;}
.y34{bottom:14.265000px;}
.y32{bottom:14.400000px;}
.y4e{bottom:25.380000px;}
.y52{bottom:26.460000px;}
.y7{bottom:30.810000px;}
.y4{bottom:37.650000px;}
.y4f{bottom:37.980000px;}
.y3a{bottom:45.360000px;}
.y3e{bottom:45.390000px;}
.y6{bottom:50.610000px;}
.yd{bottom:57.420000px;}
.y56{bottom:59.625000px;}
.y3{bottom:61.950000px;}
.y5{bottom:70.410000px;}
.yc{bottom:74.016000px;}
.y39{bottom:76.500000px;}
.yb{bottom:89.496000px;}
.ya{bottom:104.976000px;}
.y38{bottom:107.460000px;}
.y4b{bottom:127.116000px;}
.y78{bottom:137.376000px;}
.y2b{bottom:138.096000px;}
.y37{bottom:138.600000px;}
.y4a{bottom:158.250000px;}
.y77{bottom:168.330000px;}
.y2a{bottom:169.050000px;}
.y36{bottom:169.560000px;}
.y62{bottom:182.010000px;}
.y49{bottom:189.210000px;}
.y29{bottom:200.190000px;}
.y76{bottom:203.970000px;}
.y61{bottom:212.970000px;}
.y48{bottom:220.350000px;}
.y28{bottom:231.150000px;}
.y75{bottom:234.930000px;}
.y60{bottom:244.110000px;}
.y47{bottom:251.310000px;}
.y27{bottom:262.290000px;}
.y74{bottom:266.070000px;}
.y5f{bottom:275.070000px;}
.y46{bottom:282.450000px;}
.y26{bottom:293.250000px;}
.y73{bottom:301.530000px;}
.y5e{bottom:306.210000px;}
.y45{bottom:313.455000px;}
.y25{bottom:327.675000px;}
.y72{bottom:332.715000px;}
.y5d{bottom:337.935000px;}
.y44{bottom:344.595000px;}
.y71{bottom:363.675000px;}
.y24{bottom:370.695000px;}
.y43{bottom:375.555000px;}
.y70{bottom:399.315000px;}
.y23{bottom:401.655000px;}
.y42{bottom:406.695000px;}
.y6f{bottom:430.275000px;}
.y22{bottom:432.795000px;}
.y41{bottom:433.155000px;}
.y21{bottom:463.755000px;}
.y40{bottom:464.835000px;}
.y6e{bottom:465.915000px;}
.y20{bottom:494.895000px;}
.y3f{bottom:496.695000px;}
.y6d{bottom:496.875000px;}
.y1f{bottom:525.855000px;}
.y3d{bottom:528.555000px;}
.y6c{bottom:531.255000px;}
.y1e{bottom:556.995000px;}
.y6b{bottom:565.665000px;}
.y1d{bottom:587.985000px;}
.y3b{bottom:591.405000px;}
.y6a{bottom:596.625000px;}
.y1c{bottom:619.125000px;}
.y35{bottom:623.085000px;}
.y69{bottom:627.765000px;}
.y1b{bottom:650.085000px;}
.y68{bottom:658.725000px;}
.y1a{bottom:681.225000px;}
.y67{bottom:689.865000px;}
.y5c{bottom:696.885000px;}
.y19{bottom:712.185000px;}
.y5b{bottom:732.885000px;}
.y18{bottom:743.325000px;}
.y5a{bottom:759.705000px;}
.y66{bottom:763.845000px;}
.y17{bottom:774.285000px;}
.y55{bottom:786.165000px;}
.y65{bottom:794.985000px;}
.y16{bottom:805.425000px;}
.y33{bottom:810.285000px;}
.y58{bottom:816.765000px;}
.y64{bottom:825.990000px;}
.y15{bottom:836.430000px;}
.y31{bottom:842.010000px;}
.y51{bottom:852.450000px;}
.y63{bottom:857.130000px;}
.y14{bottom:867.570000px;}
.y53{bottom:883.050000px;}
.y7b{bottom:883.590000px;}
.y30{bottom:888.090000px;}
.y13{bottom:890.790000px;}
.y7a{bottom:914.730000px;}
.y12{bottom:915.990000px;}
.y4d{bottom:918.690000px;}
.y2f{bottom:919.230000px;}
.y11{bottom:938.310000px;}
.y79{bottom:945.690000px;}
.y2e{bottom:950.190000px;}
.y10{bottom:960.630000px;}
.y2d{bottom:981.330000px;}
.yf{bottom:982.230000px;}
.y4c{bottom:989.970000px;}
.ye{bottom:1008.150000px;}
.y2c{bottom:1012.290000px;}
.y9{bottom:1033.530000px;}
.y1{bottom:1049.190000px;}
.h15{height:29.700000px;}
.hf{height:30.960000px;}
.hd{height:30.996000px;}
.hc{height:31.140000px;}
.h13{height:34.920000px;}
.h17{height:34.956000px;}
.h6{height:40.579102px;}
.h7{height:50.273438px;}
.ha{height:50.800781px;}
.h8{height:53.709961px;}
.hb{height:59.436914px;}
.h5{height:59.439023px;}
.h10{height:62.136000px;}
.h9{height:63.500977px;}
.h11{height:63.540000px;}
.h12{height:65.520000px;}
.h16{height:65.556000px;}
.h2{height:65.884219px;}
.h4{height:67.824844px;}
.h1{height:84.816000px;}
.h3{height:95.245664px;}
.h14{height:131.796000px;}
.he{height:186.300000px;}
.h0{height:1188.000000px;}
.w8{width:53.676000px;}
.wb{width:71.676000px;}
.wa{width:79.020000px;}
.wd{width:86.220000px;}
.w9{width:89.640000px;}
.w1{width:124.200000px;}
.w3{width:159.690000px;}
.wc{width:180.030000px;}
.w5{width:188.310000px;}
.w7{width:266.970000px;}
.w2{width:384.375000px;}
.w6{width:390.855000px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1c{left:13.365000px;}
.x1f{left:15.480000px;}
.x1e{left:17.820000px;}
.x15{left:20.340000px;}
.x17{left:22.680000px;}
.x1b{left:26.865000px;}
.x19{left:27.900000px;}
.x6{left:39.420000px;}
.x8{left:54.720000px;}
.x7{left:57.060000px;}
.x2{left:98.094000px;}
.x13{left:104.580000px;}
.x1{left:108.036000px;}
.x9{left:134.675986px;}
.x22{left:155.549986px;}
.xe{left:162.029986px;}
.x12{left:176.970000px;}
.xd{left:219.089986px;}
.x3{left:232.230000px;}
.xc{left:257.609986px;}
.xf{left:297.795000px;}
.x11{left:319.574986px;}
.xb{left:340.454986px;}
.x1d{left:357.735000px;}
.x10{left:417.134986px;}
.x20{left:439.994986px;}
.x14{left:444.855000px;}
.xa{left:459.074986px;}
.x16{left:499.425000px;}
.x18{left:589.785000px;}
.x5{left:616.605000px;}
.x1a{left:669.525000px;}
.x21{left:715.649986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.336000pt;}
.lsc{letter-spacing:6.400000pt;}
.ls0{letter-spacing:50.693120pt;}
.ls1{letter-spacing:178.853120pt;}
.ws5{word-spacing:-20.320000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws2{word-spacing:-8.389120pt;}
.ws1{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-9.120000pt;}
._12{margin-left:-7.363200pt;}
._6{margin-left:-6.400000pt;}
._8{margin-left:-5.160533pt;}
._7{margin-left:-3.939200pt;}
._4{margin-left:-2.640000pt;}
._0{margin-left:-1.276800pt;}
._1{width:1.021440pt;}
._2{width:2.750933pt;}
._9{width:3.651200pt;}
._10{width:4.633173pt;}
._b{width:5.568000pt;}
._a{width:6.976000pt;}
._c{width:8.874667pt;}
._d{width:10.069333pt;}
._e{width:11.456000pt;}
._15{width:12.376533pt;}
._11{width:13.760000pt;}
._f{width:14.976000pt;}
._14{width:22.150400pt;}
._13{width:23.484800pt;}
._3{width:58.999467pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.y57{bottom:7.520000pt;}
.y8{bottom:9.920000pt;}
.y50{bottom:11.360000pt;}
.y54{bottom:12.160000pt;}
.y59{bottom:12.200000pt;}
.y3c{bottom:12.640000pt;}
.y34{bottom:12.680000pt;}
.y32{bottom:12.800000pt;}
.y4e{bottom:22.560000pt;}
.y52{bottom:23.520000pt;}
.y7{bottom:27.386667pt;}
.y4{bottom:33.466667pt;}
.y4f{bottom:33.760000pt;}
.y3a{bottom:40.320000pt;}
.y3e{bottom:40.346667pt;}
.y6{bottom:44.986667pt;}
.yd{bottom:51.040000pt;}
.y56{bottom:53.000000pt;}
.y3{bottom:55.066667pt;}
.y5{bottom:62.586667pt;}
.yc{bottom:65.792000pt;}
.y39{bottom:68.000000pt;}
.yb{bottom:79.552000pt;}
.ya{bottom:93.312000pt;}
.y38{bottom:95.520000pt;}
.y4b{bottom:112.992000pt;}
.y78{bottom:122.112000pt;}
.y2b{bottom:122.752000pt;}
.y37{bottom:123.200000pt;}
.y4a{bottom:140.666667pt;}
.y77{bottom:149.626667pt;}
.y2a{bottom:150.266667pt;}
.y36{bottom:150.720000pt;}
.y62{bottom:161.786667pt;}
.y49{bottom:168.186667pt;}
.y29{bottom:177.946667pt;}
.y76{bottom:181.306667pt;}
.y61{bottom:189.306667pt;}
.y48{bottom:195.866667pt;}
.y28{bottom:205.466667pt;}
.y75{bottom:208.826667pt;}
.y60{bottom:216.986667pt;}
.y47{bottom:223.386667pt;}
.y27{bottom:233.146667pt;}
.y74{bottom:236.506667pt;}
.y5f{bottom:244.506667pt;}
.y46{bottom:251.066667pt;}
.y26{bottom:260.666667pt;}
.y73{bottom:268.026667pt;}
.y5e{bottom:272.186667pt;}
.y45{bottom:278.626667pt;}
.y25{bottom:291.266667pt;}
.y72{bottom:295.746667pt;}
.y5d{bottom:300.386667pt;}
.y44{bottom:306.306667pt;}
.y71{bottom:323.266667pt;}
.y24{bottom:329.506667pt;}
.y43{bottom:333.826667pt;}
.y70{bottom:354.946667pt;}
.y23{bottom:357.026667pt;}
.y42{bottom:361.506667pt;}
.y6f{bottom:382.466667pt;}
.y22{bottom:384.706667pt;}
.y41{bottom:385.026667pt;}
.y21{bottom:412.226667pt;}
.y40{bottom:413.186667pt;}
.y6e{bottom:414.146667pt;}
.y20{bottom:439.906667pt;}
.y3f{bottom:441.506667pt;}
.y6d{bottom:441.666667pt;}
.y1f{bottom:467.426667pt;}
.y3d{bottom:469.826667pt;}
.y6c{bottom:472.226667pt;}
.y1e{bottom:495.106667pt;}
.y6b{bottom:502.813333pt;}
.y1d{bottom:522.653333pt;}
.y3b{bottom:525.693333pt;}
.y6a{bottom:530.333333pt;}
.y1c{bottom:550.333333pt;}
.y35{bottom:553.853333pt;}
.y69{bottom:558.013333pt;}
.y1b{bottom:577.853333pt;}
.y68{bottom:585.533333pt;}
.y1a{bottom:605.533333pt;}
.y67{bottom:613.213333pt;}
.y5c{bottom:619.453333pt;}
.y19{bottom:633.053333pt;}
.y5b{bottom:651.453333pt;}
.y18{bottom:660.733333pt;}
.y5a{bottom:675.293333pt;}
.y66{bottom:678.973333pt;}
.y17{bottom:688.253333pt;}
.y55{bottom:698.813333pt;}
.y65{bottom:706.653333pt;}
.y16{bottom:715.933333pt;}
.y33{bottom:720.253333pt;}
.y58{bottom:726.013333pt;}
.y64{bottom:734.213333pt;}
.y15{bottom:743.493333pt;}
.y31{bottom:748.453333pt;}
.y51{bottom:757.733333pt;}
.y63{bottom:761.893333pt;}
.y14{bottom:771.173333pt;}
.y53{bottom:784.933333pt;}
.y7b{bottom:785.413333pt;}
.y30{bottom:789.413333pt;}
.y13{bottom:791.813333pt;}
.y7a{bottom:813.093333pt;}
.y12{bottom:814.213333pt;}
.y4d{bottom:816.613333pt;}
.y2f{bottom:817.093333pt;}
.y11{bottom:834.053333pt;}
.y79{bottom:840.613333pt;}
.y2e{bottom:844.613333pt;}
.y10{bottom:853.893333pt;}
.y2d{bottom:872.293333pt;}
.yf{bottom:873.093333pt;}
.y4c{bottom:879.973333pt;}
.ye{bottom:896.133333pt;}
.y2c{bottom:899.813333pt;}
.y9{bottom:918.693333pt;}
.y1{bottom:932.613333pt;}
.h15{height:26.400000pt;}
.hf{height:27.520000pt;}
.hd{height:27.552000pt;}
.hc{height:27.680000pt;}
.h13{height:31.040000pt;}
.h17{height:31.072000pt;}
.h6{height:36.070312pt;}
.h7{height:44.687500pt;}
.ha{height:45.156250pt;}
.h8{height:47.742188pt;}
.hb{height:52.832812pt;}
.h5{height:52.834688pt;}
.h10{height:55.232000pt;}
.h9{height:56.445312pt;}
.h11{height:56.480000pt;}
.h12{height:58.240000pt;}
.h16{height:58.272000pt;}
.h2{height:58.563750pt;}
.h4{height:60.288750pt;}
.h1{height:75.392000pt;}
.h3{height:84.662813pt;}
.h14{height:117.152000pt;}
.he{height:165.600000pt;}
.h0{height:1056.000000pt;}
.w8{width:47.712000pt;}
.wb{width:63.712000pt;}
.wa{width:70.240000pt;}
.wd{width:76.640000pt;}
.w9{width:79.680000pt;}
.w1{width:110.400000pt;}
.w3{width:141.946667pt;}
.wc{width:160.026667pt;}
.w5{width:167.386667pt;}
.w7{width:237.306667pt;}
.w2{width:341.666667pt;}
.w6{width:347.426667pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1c{left:11.880000pt;}
.x1f{left:13.760000pt;}
.x1e{left:15.840000pt;}
.x15{left:18.080000pt;}
.x17{left:20.160000pt;}
.x1b{left:23.880000pt;}
.x19{left:24.800000pt;}
.x6{left:35.040000pt;}
.x8{left:48.640000pt;}
.x7{left:50.720000pt;}
.x2{left:87.194667pt;}
.x13{left:92.960000pt;}
.x1{left:96.032000pt;}
.x9{left:119.711988pt;}
.x22{left:138.266655pt;}
.xe{left:144.026655pt;}
.x12{left:157.306667pt;}
.xd{left:194.746655pt;}
.x3{left:206.426667pt;}
.xc{left:228.986655pt;}
.xf{left:264.706667pt;}
.x11{left:284.066655pt;}
.xb{left:302.626655pt;}
.x1d{left:317.986667pt;}
.x10{left:370.786655pt;}
.x20{left:391.106655pt;}
.x14{left:395.426667pt;}
.xa{left:408.066655pt;}
.x16{left:443.933333pt;}
.x18{left:524.253333pt;}
.x5{left:548.093333pt;}
.x1a{left:595.133333pt;}
.x21{left:636.133321pt;}
}




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