
    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_fb201b3143aa7c9b6ecefeae.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.767578;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_1235ad90234e3acba65144f9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4b9d6444ac0ca567376f776e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_581d090a98cbad3308dfa4c4.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.672000px;}
.lsf{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.269400px;}
.lse{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.089280px;}
.ls3{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls0{letter-spacing:9.540000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.208000px;}
.ws2{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.790600px;}
.ws1{word-spacing:-11.388000px;}
.ws5{word-spacing:-9.324000px;}
.ws3{word-spacing:-9.000000px;}
.ws4{word-spacing:-8.280000px;}
.wsb{word-spacing:0.000000px;}
._0{margin-left:-1.688400px;}
._2{width:1.157760px;}
._7{width:2.978640px;}
._6{width:4.068000px;}
._8{width:5.119920px;}
._9{width:6.185040px;}
._16{width:7.520160px;}
._3{width:8.654640px;}
._1{width:9.792720px;}
._17{width:10.793520px;}
._10{width:11.952000px;}
._f{width:12.960000px;}
._11{width:14.774640px;}
._a{width:16.632000px;}
._12{width:20.160000px;}
._d{width:21.312000px;}
._e{width:22.464000px;}
._b{width:23.688000px;}
._c{width:25.344000px;}
._15{width:26.352000px;}
._13{width:27.720000px;}
._18{width:30.744000px;}
._19{width:32.184000px;}
._20{width:34.795440px;}
._1f{width:36.000000px;}
._14{width:52.370640px;}
._1d{width:58.032000px;}
._1c{width:59.040000px;}
._1e{width:60.528000px;}
._4{width:109.058880px;}
._5{width:110.433120px;}
._1a{width:353.160000px;}
._1b{width:354.528000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:14.580000px;}
.y63{bottom:14.610000px;}
.y38{bottom:14.760000px;}
.y54{bottom:30.060000px;}
.y57{bottom:30.240000px;}
.y3e{bottom:45.720000px;}
.y62{bottom:45.750000px;}
.y5b{bottom:45.765000px;}
.y2{bottom:46.800000px;}
.y56{bottom:61.200000px;}
.y1{bottom:66.600000px;}
.y3d{bottom:76.680000px;}
.y61{bottom:76.710000px;}
.y5a{bottom:76.725000px;}
.y45{bottom:76.860000px;}
.y41{bottom:107.820000px;}
.y44{bottom:107.850000px;}
.y3c{bottom:107.865000px;}
.y52{bottom:110.916000px;}
.y31{bottom:112.536000px;}
.y89{bottom:115.056000px;}
.y60{bottom:138.810000px;}
.y3b{bottom:138.825000px;}
.y43{bottom:138.990000px;}
.y6c{bottom:140.436000px;}
.y51{bottom:142.056000px;}
.y30{bottom:143.496000px;}
.y88{bottom:146.556000px;}
.y5f{bottom:169.950000px;}
.y6b{bottom:171.570000px;}
.y50{bottom:173.010000px;}
.y2f{bottom:174.990000px;}
.y87{bottom:177.150000px;}
.y5e{bottom:200.910000px;}
.y6a{bottom:202.530000px;}
.y4f{bottom:204.150000px;}
.y2e{bottom:205.950000px;}
.y86{bottom:208.650000px;}
.y5d{bottom:231.870000px;}
.y69{bottom:233.670000px;}
.y4e{bottom:235.110000px;}
.y2d{bottom:237.090000px;}
.y85{bottom:239.250000px;}
.y68{bottom:264.630000px;}
.y4d{bottom:266.250000px;}
.y2c{bottom:268.050000px;}
.y84{bottom:270.750000px;}
.y67{bottom:295.770000px;}
.y4c{bottom:297.210000px;}
.y2b{bottom:299.190000px;}
.y83{bottom:301.350000px;}
.y66{bottom:326.730000px;}
.y4b{bottom:328.350000px;}
.y2a{bottom:330.150000px;}
.y82{bottom:332.850000px;}
.y65{bottom:343.875000px;}
.y4a{bottom:359.355000px;}
.y29{bottom:361.335000px;}
.y81{bottom:363.855000px;}
.y49{bottom:390.495000px;}
.y28{bottom:392.295000px;}
.y80{bottom:394.995000px;}
.y48{bottom:421.455000px;}
.y27{bottom:423.435000px;}
.y7f{bottom:425.955000px;}
.y47{bottom:452.415000px;}
.y26{bottom:454.035000px;}
.y7e{bottom:456.915000px;}
.y64{bottom:468.795000px;}
.y46{bottom:483.555000px;}
.y25{bottom:485.175000px;}
.y7d{bottom:488.055000px;}
.y42{bottom:500.655000px;}
.y7c{bottom:519.015000px;}
.y24{bottom:522.075000px;}
.y23{bottom:547.275000px;}
.y7b{bottom:550.155000px;}
.y7a{bottom:581.115000px;}
.y22{bottom:584.175000px;}
.y5c{bottom:593.895000px;}
.y79{bottom:612.285000px;}
.y21{bottom:615.345000px;}
.y78{bottom:643.245000px;}
.y20{bottom:646.305000px;}
.y40{bottom:656.745000px;}
.y1f{bottom:671.505000px;}
.y77{bottom:674.385000px;}
.y1e{bottom:702.465000px;}
.y76{bottom:705.345000px;}
.y1d{bottom:733.605000px;}
.y75{bottom:736.485000px;}
.y1c{bottom:764.565000px;}
.y74{bottom:767.445000px;}
.y3a{bottom:781.665000px;}
.y1b{bottom:796.065000px;}
.y73{bottom:798.585000px;}
.y1a{bottom:827.025000px;}
.y72{bottom:829.545000px;}
.y59{bottom:843.045000px;}
.y19{bottom:858.165000px;}
.y71{bottom:860.685000px;}
.y18{bottom:889.170000px;}
.y70{bottom:891.690000px;}
.y17{bottom:907.890000px;}
.y16{bottom:918.150000px;}
.y8d{bottom:922.470000px;}
.y6f{bottom:922.830000px;}
.y15{bottom:928.590000px;}
.y58{bottom:936.870000px;}
.y39{bottom:937.590000px;}
.y14{bottom:938.850000px;}
.y13{bottom:949.290000px;}
.y8c{bottom:953.430000px;}
.y6e{bottom:953.790000px;}
.y12{bottom:959.550000px;}
.y55{bottom:968.730000px;}
.y37{bottom:969.450000px;}
.y11{bottom:969.990000px;}
.y10{bottom:980.250000px;}
.y6d{bottom:984.930000px;}
.yf{bottom:990.690000px;}
.ye{bottom:1000.950000px;}
.yd{bottom:1011.390000px;}
.y8b{bottom:1015.530000px;}
.y36{bottom:1015.890000px;}
.yc{bottom:1021.650000px;}
.yb{bottom:1032.630000px;}
.ya{bottom:1046.850000px;}
.y35{bottom:1047.030000px;}
.y9{bottom:1061.430000px;}
.y53{bottom:1062.690000px;}
.y8{bottom:1076.190000px;}
.y8a{bottom:1077.630000px;}
.y34{bottom:1077.990000px;}
.y7{bottom:1090.230000px;}
.y6{bottom:1104.090000px;}
.y33{bottom:1109.130000px;}
.y5{bottom:1117.770000px;}
.y4{bottom:1131.630000px;}
.y32{bottom:1140.120000px;}
.y3{bottom:1145.520000px;}
.h8{height:26.033203px;}
.hc{height:31.140000px;}
.h7{height:35.332031px;}
.h5{height:36.580430px;}
.h6{height:47.344922px;}
.h4{height:48.616875px;}
.hb{height:48.802500px;}
.h3{height:50.229844px;}
.h14{height:52.066406px;}
.h10{height:62.100000px;}
.h2{height:65.010937px;}
.h9{height:70.664062px;}
.ha{height:72.562500px;}
.h11{height:93.060000px;}
.h12{height:93.096000px;}
.he{height:124.200000px;}
.hd{height:155.190000px;}
.hf{height:155.370000px;}
.h13{height:248.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:30.960000px;}
.w3{width:59.220000px;}
.wa{width:150.690000px;}
.w8{width:162.390000px;}
.w9{width:163.260000px;}
.wb{width:169.050000px;}
.w6{width:174.810000px;}
.w4{width:193.710000px;}
.w5{width:252.570000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x32{left:9.930000px;}
.x24{left:10.980000px;}
.xc{left:12.420000px;}
.x16{left:15.480000px;}
.x25{left:16.590000px;}
.x2c{left:17.640000px;}
.x31{left:18.720000px;}
.x28{left:20.370000px;}
.x27{left:22.140000px;}
.x20{left:23.580000px;}
.x13{left:25.200000px;}
.x2f{left:27.030000px;}
.x2d{left:28.080000px;}
.x21{left:31.140000px;}
.xe{left:32.220000px;}
.x2e{left:33.480000px;}
.x1b{left:36.570000px;}
.x26{left:37.830000px;}
.x22{left:39.810000px;}
.x2b{left:40.905000px;}
.x1d{left:45.405000px;}
.x2a{left:47.550000px;}
.x29{left:50.970000px;}
.x33{left:53.310000px;}
.x1f{left:59.574000px;}
.x30{left:61.965000px;}
.x10{left:63.540000px;}
.x23{left:75.270000px;}
.x18{left:80.994000px;}
.x1e{left:84.645000px;}
.x2{left:106.415987px;}
.x5{left:109.115987px;}
.x17{left:138.636000px;}
.x14{left:146.915987px;}
.xb{left:159.509987px;}
.x8{left:163.289987px;}
.xd{left:166.890000px;}
.x7{left:214.769987px;}
.xa{left:237.269987px;}
.x3{left:258.869987px;}
.x15{left:261.209987px;}
.x9{left:263.549987px;}
.x19{left:301.755000px;}
.xf{left:361.335000px;}
.x6{left:386.534987px;}
.x1{left:442.334987px;}
.x4{left:446.474987px;}
.x1a{left:465.735000px;}
.x11{left:614.625000px;}
.x1c{left:617.145000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.597333pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.239467pt;}
.lse{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.079360pt;}
.ls3{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls0{letter-spacing:8.480000pt;}
.ws7{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.296000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.480533pt;}
.ws1{word-spacing:-10.122667pt;}
.ws5{word-spacing:-8.288000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws4{word-spacing:-7.360000pt;}
.wsb{word-spacing:0.000000pt;}
._0{margin-left:-1.500800pt;}
._2{width:1.029120pt;}
._7{width:2.647680pt;}
._6{width:3.616000pt;}
._8{width:4.551040pt;}
._9{width:5.497813pt;}
._16{width:6.684587pt;}
._3{width:7.693013pt;}
._1{width:8.704640pt;}
._17{width:9.594240pt;}
._10{width:10.624000pt;}
._f{width:11.520000pt;}
._11{width:13.133013pt;}
._a{width:14.784000pt;}
._12{width:17.920000pt;}
._d{width:18.944000pt;}
._e{width:19.968000pt;}
._b{width:21.056000pt;}
._c{width:22.528000pt;}
._15{width:23.424000pt;}
._13{width:24.640000pt;}
._18{width:27.328000pt;}
._19{width:28.608000pt;}
._20{width:30.929280pt;}
._1f{width:32.000000pt;}
._14{width:46.551680pt;}
._1d{width:51.584000pt;}
._1c{width:52.480000pt;}
._1e{width:53.802667pt;}
._4{width:96.941227pt;}
._5{width:98.162773pt;}
._1a{width:313.920000pt;}
._1b{width:315.136000pt;}
.fs2{font-size:32.000000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:12.960000pt;}
.y63{bottom:12.986667pt;}
.y38{bottom:13.120000pt;}
.y54{bottom:26.720000pt;}
.y57{bottom:26.880000pt;}
.y3e{bottom:40.640000pt;}
.y62{bottom:40.666667pt;}
.y5b{bottom:40.680000pt;}
.y2{bottom:41.600000pt;}
.y56{bottom:54.400000pt;}
.y1{bottom:59.200000pt;}
.y3d{bottom:68.160000pt;}
.y61{bottom:68.186667pt;}
.y5a{bottom:68.200000pt;}
.y45{bottom:68.320000pt;}
.y41{bottom:95.840000pt;}
.y44{bottom:95.866667pt;}
.y3c{bottom:95.880000pt;}
.y52{bottom:98.592000pt;}
.y31{bottom:100.032000pt;}
.y89{bottom:102.272000pt;}
.y60{bottom:123.386667pt;}
.y3b{bottom:123.400000pt;}
.y43{bottom:123.546667pt;}
.y6c{bottom:124.832000pt;}
.y51{bottom:126.272000pt;}
.y30{bottom:127.552000pt;}
.y88{bottom:130.272000pt;}
.y5f{bottom:151.066667pt;}
.y6b{bottom:152.506667pt;}
.y50{bottom:153.786667pt;}
.y2f{bottom:155.546667pt;}
.y87{bottom:157.466667pt;}
.y5e{bottom:178.586667pt;}
.y6a{bottom:180.026667pt;}
.y4f{bottom:181.466667pt;}
.y2e{bottom:183.066667pt;}
.y86{bottom:185.466667pt;}
.y5d{bottom:206.106667pt;}
.y69{bottom:207.706667pt;}
.y4e{bottom:208.986667pt;}
.y2d{bottom:210.746667pt;}
.y85{bottom:212.666667pt;}
.y68{bottom:235.226667pt;}
.y4d{bottom:236.666667pt;}
.y2c{bottom:238.266667pt;}
.y84{bottom:240.666667pt;}
.y67{bottom:262.906667pt;}
.y4c{bottom:264.186667pt;}
.y2b{bottom:265.946667pt;}
.y83{bottom:267.866667pt;}
.y66{bottom:290.426667pt;}
.y4b{bottom:291.866667pt;}
.y2a{bottom:293.466667pt;}
.y82{bottom:295.866667pt;}
.y65{bottom:305.666667pt;}
.y4a{bottom:319.426667pt;}
.y29{bottom:321.186667pt;}
.y81{bottom:323.426667pt;}
.y49{bottom:347.106667pt;}
.y28{bottom:348.706667pt;}
.y80{bottom:351.106667pt;}
.y48{bottom:374.626667pt;}
.y27{bottom:376.386667pt;}
.y7f{bottom:378.626667pt;}
.y47{bottom:402.146667pt;}
.y26{bottom:403.586667pt;}
.y7e{bottom:406.146667pt;}
.y64{bottom:416.706667pt;}
.y46{bottom:429.826667pt;}
.y25{bottom:431.266667pt;}
.y7d{bottom:433.826667pt;}
.y42{bottom:445.026667pt;}
.y7c{bottom:461.346667pt;}
.y24{bottom:464.066667pt;}
.y23{bottom:486.466667pt;}
.y7b{bottom:489.026667pt;}
.y7a{bottom:516.546667pt;}
.y22{bottom:519.266667pt;}
.y5c{bottom:527.906667pt;}
.y79{bottom:544.253333pt;}
.y21{bottom:546.973333pt;}
.y78{bottom:571.773333pt;}
.y20{bottom:574.493333pt;}
.y40{bottom:583.773333pt;}
.y1f{bottom:596.893333pt;}
.y77{bottom:599.453333pt;}
.y1e{bottom:624.413333pt;}
.y76{bottom:626.973333pt;}
.y1d{bottom:652.093333pt;}
.y75{bottom:654.653333pt;}
.y1c{bottom:679.613333pt;}
.y74{bottom:682.173333pt;}
.y3a{bottom:694.813333pt;}
.y1b{bottom:707.613333pt;}
.y73{bottom:709.853333pt;}
.y1a{bottom:735.133333pt;}
.y72{bottom:737.373333pt;}
.y59{bottom:749.373333pt;}
.y19{bottom:762.813333pt;}
.y71{bottom:765.053333pt;}
.y18{bottom:790.373333pt;}
.y70{bottom:792.613333pt;}
.y17{bottom:807.013333pt;}
.y16{bottom:816.133333pt;}
.y8d{bottom:819.973333pt;}
.y6f{bottom:820.293333pt;}
.y15{bottom:825.413333pt;}
.y58{bottom:832.773333pt;}
.y39{bottom:833.413333pt;}
.y14{bottom:834.533333pt;}
.y13{bottom:843.813333pt;}
.y8c{bottom:847.493333pt;}
.y6e{bottom:847.813333pt;}
.y12{bottom:852.933333pt;}
.y55{bottom:861.093333pt;}
.y37{bottom:861.733333pt;}
.y11{bottom:862.213333pt;}
.y10{bottom:871.333333pt;}
.y6d{bottom:875.493333pt;}
.yf{bottom:880.613333pt;}
.ye{bottom:889.733333pt;}
.yd{bottom:899.013333pt;}
.y8b{bottom:902.693333pt;}
.y36{bottom:903.013333pt;}
.yc{bottom:908.133333pt;}
.yb{bottom:917.893333pt;}
.ya{bottom:930.533333pt;}
.y35{bottom:930.693333pt;}
.y9{bottom:943.493333pt;}
.y53{bottom:944.613333pt;}
.y8{bottom:956.613333pt;}
.y8a{bottom:957.893333pt;}
.y34{bottom:958.213333pt;}
.y7{bottom:969.093333pt;}
.y6{bottom:981.413333pt;}
.y33{bottom:985.893333pt;}
.y5{bottom:993.573333pt;}
.y4{bottom:1005.893333pt;}
.y32{bottom:1013.440000pt;}
.y3{bottom:1018.240000pt;}
.h8{height:23.140625pt;}
.hc{height:27.680000pt;}
.h7{height:31.406250pt;}
.h5{height:32.515937pt;}
.h6{height:42.084375pt;}
.h4{height:43.215000pt;}
.hb{height:43.380000pt;}
.h3{height:44.648750pt;}
.h14{height:46.281250pt;}
.h10{height:55.200000pt;}
.h2{height:57.787500pt;}
.h9{height:62.812500pt;}
.ha{height:64.500000pt;}
.h11{height:82.720000pt;}
.h12{height:82.752000pt;}
.he{height:110.400000pt;}
.hd{height:137.946667pt;}
.hf{height:138.106667pt;}
.h13{height:220.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.520000pt;}
.w3{width:52.640000pt;}
.wa{width:133.946667pt;}
.w8{width:144.346667pt;}
.w9{width:145.120000pt;}
.wb{width:150.266667pt;}
.w6{width:155.386667pt;}
.w4{width:172.186667pt;}
.w5{width:224.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x32{left:8.826667pt;}
.x24{left:9.760000pt;}
.xc{left:11.040000pt;}
.x16{left:13.760000pt;}
.x25{left:14.746667pt;}
.x2c{left:15.680000pt;}
.x31{left:16.640000pt;}
.x28{left:18.106667pt;}
.x27{left:19.680000pt;}
.x20{left:20.960000pt;}
.x13{left:22.400000pt;}
.x2f{left:24.026667pt;}
.x2d{left:24.960000pt;}
.x21{left:27.680000pt;}
.xe{left:28.640000pt;}
.x2e{left:29.760000pt;}
.x1b{left:32.506667pt;}
.x26{left:33.626667pt;}
.x22{left:35.386667pt;}
.x2b{left:36.360000pt;}
.x1d{left:40.360000pt;}
.x2a{left:42.266667pt;}
.x29{left:45.306667pt;}
.x33{left:47.386667pt;}
.x1f{left:52.954667pt;}
.x30{left:55.080000pt;}
.x10{left:56.480000pt;}
.x23{left:66.906667pt;}
.x18{left:71.994667pt;}
.x1e{left:75.240000pt;}
.x2{left:94.591988pt;}
.x5{left:96.991988pt;}
.x17{left:123.232000pt;}
.x14{left:130.591988pt;}
.xb{left:141.786655pt;}
.x8{left:145.146655pt;}
.xd{left:148.346667pt;}
.x7{left:190.906655pt;}
.xa{left:210.906655pt;}
.x3{left:230.106655pt;}
.x15{left:232.186655pt;}
.x9{left:234.266655pt;}
.x19{left:268.226667pt;}
.xf{left:321.186667pt;}
.x6{left:343.586655pt;}
.x1{left:393.186655pt;}
.x4{left:396.866655pt;}
.x1a{left:413.986667pt;}
.x11{left:546.333333pt;}
.x1c{left:548.573333pt;}
}




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