
    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_063c991ea4145a82ed8a493d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_01dfe653e960b0e6d74414bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_a9260ebbd224ede0f6453c03.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_66acc4ff176760c4070db304.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_a629525f58fa0bcd3d5bd600.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8e27d567f89855d7de97b24d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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;}
.v1{vertical-align:15.120000px;}
.ls5{letter-spacing:-0.597600px;}
.ls3{letter-spacing:-0.270600px;}
.ls8{letter-spacing:-0.227400px;}
.ls6{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.094800px;}
.ls2{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.023040px;}
.ls0{letter-spacing:0.180000px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws6{word-spacing:-17.856000px;}
.ws9{word-spacing:-14.595840px;}
.ws7{word-spacing:-14.572800px;}
.ws8{word-spacing:-14.345400px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.612800px;}
.ws5{word-spacing:-9.092400px;}
.ws3{word-spacing:-7.920000px;}
.ws2{word-spacing:-7.884000px;}
.ws4{word-spacing:0.000000px;}
._19{margin-left:-3.815280px;}
._c{margin-left:-2.808720px;}
._2{margin-left:-1.404000px;}
._1{width:1.254000px;}
._d{width:2.748960px;}
._8{width:4.302720px;}
._9{width:5.440080px;}
._11{width:6.453120px;}
._10{width:7.947120px;}
._14{width:9.264720px;}
._13{width:10.398240px;}
._a{width:11.922720px;}
._18{width:12.945840px;}
._f{width:14.521680px;}
._e{width:15.657120px;}
._15{width:17.131680px;}
._b{width:18.227760px;}
._7{width:19.482720px;}
._6{width:20.557440px;}
._1c{width:22.720320px;}
._1a{width:24.177600px;}
._1b{width:25.184160px;}
._12{width:26.473680px;}
._16{width:47.216880px;}
._0{width:75.000000px;}
._3{width:181.620000px;}
._4{width:194.343840px;}
._5{width:202.852800px;}
._17{width:1056.007200px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y95{bottom:6.660000px;}
.y52{bottom:8.640000px;}
.y8d{bottom:11.340000px;}
.y98{bottom:11.565000px;}
.y91{bottom:21.810000px;}
.y93{bottom:27.360000px;}
.y51{bottom:29.340000px;}
.y8f{bottom:32.040000px;}
.y8c{bottom:32.085000px;}
.y97{bottom:32.265000px;}
.y50{bottom:48.060000px;}
.y7{bottom:56.520000px;}
.y4f{bottom:58.500000px;}
.y4e{bottom:69.120000px;}
.y6{bottom:70.596000px;}
.y4d{bottom:79.560000px;}
.y4c{bottom:97.200000px;}
.y3f{bottom:111.636000px;}
.y8a{bottom:113.796000px;}
.y3e{bottom:130.896000px;}
.y89{bottom:133.236000px;}
.y3d{bottom:150.330000px;}
.y4b{bottom:151.380000px;}
.y88{bottom:152.490000px;}
.y3c{bottom:169.590000px;}
.y4a{bottom:170.820000px;}
.y87{bottom:171.930000px;}
.y49{bottom:184.860000px;}
.y3b{bottom:188.850000px;}
.y86{bottom:191.190000px;}
.y48{bottom:199.125000px;}
.y3a{bottom:208.290000px;}
.y85{bottom:210.630000px;}
.y47{bottom:214.425000px;}
.y39{bottom:227.550000px;}
.y84{bottom:229.890000px;}
.y46{bottom:233.865000px;}
.y38{bottom:246.990000px;}
.y45{bottom:247.905000px;}
.y83{bottom:249.330000px;}
.y44{bottom:261.945000px;}
.y37{bottom:266.250000px;}
.y82{bottom:268.590000px;}
.y43{bottom:275.985000px;}
.y36{bottom:285.690000px;}
.y81{bottom:287.850000px;}
.y42{bottom:290.025000px;}
.y41{bottom:304.425000px;}
.y35{bottom:304.950000px;}
.y80{bottom:307.290000px;}
.y34{bottom:324.030000px;}
.y7f{bottom:326.550000px;}
.y33{bottom:341.715000px;}
.y7e{bottom:346.035000px;}
.y32{bottom:359.355000px;}
.y7d{bottom:365.295000px;}
.y31{bottom:376.815000px;}
.y7c{bottom:384.735000px;}
.y30{bottom:394.455000px;}
.y7b{bottom:403.995000px;}
.y2f{bottom:412.095000px;}
.y7a{bottom:423.435000px;}
.y2e{bottom:429.555000px;}
.y79{bottom:442.695000px;}
.y2d{bottom:447.195000px;}
.y78{bottom:462.135000px;}
.y2c{bottom:464.835000px;}
.y77{bottom:481.395000px;}
.y2b{bottom:482.475000px;}
.y2a{bottom:499.935000px;}
.y76{bottom:500.835000px;}
.y29{bottom:517.575000px;}
.y75{bottom:520.095000px;}
.y28{bottom:535.215000px;}
.y74{bottom:539.535000px;}
.y27{bottom:552.675000px;}
.y73{bottom:558.795000px;}
.y26{bottom:570.315000px;}
.y72{bottom:578.055000px;}
.y25{bottom:587.955000px;}
.y90{bottom:596.055000px;}
.y71{bottom:597.495000px;}
.y24{bottom:607.785000px;}
.y70{bottom:616.785000px;}
.y23{bottom:625.425000px;}
.y6f{bottom:636.225000px;}
.y22{bottom:642.885000px;}
.y6e{bottom:655.485000px;}
.y21{bottom:660.525000px;}
.y40{bottom:671.685000px;}
.y6d{bottom:674.925000px;}
.y20{bottom:678.165000px;}
.y8e{bottom:682.665000px;}
.y6c{bottom:694.185000px;}
.y1f{bottom:695.625000px;}
.y9d{bottom:701.025000px;}
.y1e{bottom:713.265000px;}
.y6b{bottom:713.625000px;}
.y9c{bottom:718.665000px;}
.y1d{bottom:730.905000px;}
.y6a{bottom:732.885000px;}
.y9b{bottom:736.125000px;}
.y1c{bottom:748.545000px;}
.y69{bottom:752.325000px;}
.y9a{bottom:753.765000px;}
.y1b{bottom:766.005000px;}
.y94{bottom:767.265000px;}
.y92{bottom:768.345000px;}
.y68{bottom:771.585000px;}
.y1a{bottom:783.645000px;}
.y67{bottom:791.025000px;}
.y19{bottom:801.285000px;}
.y66{bottom:810.285000px;}
.y18{bottom:818.745000px;}
.y65{bottom:829.725000px;}
.y17{bottom:836.385000px;}
.y64{bottom:848.985000px;}
.y16{bottom:854.025000px;}
.y8b{bottom:858.345000px;}
.y96{bottom:859.065000px;}
.y63{bottom:868.245000px;}
.y15{bottom:871.530000px;}
.y62{bottom:887.730000px;}
.y14{bottom:889.170000px;}
.y13{bottom:906.810000px;}
.y61{bottom:906.990000px;}
.y99{bottom:922.650000px;}
.y12{bottom:924.270000px;}
.y60{bottom:926.430000px;}
.y11{bottom:941.910000px;}
.y5f{bottom:945.690000px;}
.y10{bottom:959.550000px;}
.y5e{bottom:965.130000px;}
.yf{bottom:977.190000px;}
.y5d{bottom:984.390000px;}
.ye{bottom:994.650000px;}
.y5c{bottom:1003.830000px;}
.yd{bottom:1012.290000px;}
.y5b{bottom:1023.090000px;}
.yc{bottom:1030.110000px;}
.y5a{bottom:1042.530000px;}
.yb{bottom:1049.190000px;}
.y59{bottom:1061.790000px;}
.ya{bottom:1067.730000px;}
.y58{bottom:1081.230000px;}
.y9{bottom:1090.590000px;}
.y57{bottom:1100.490000px;}
.y8{bottom:1112.550000px;}
.y56{bottom:1119.930000px;}
.y5{bottom:1133.250000px;}
.y55{bottom:1139.220000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y54{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y53{bottom:1197.540000px;}
.ha{height:30.480469px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.h9{height:50.273438px;}
.h5{height:50.597578px;}
.hd{height:50.800781px;}
.h7{height:56.084062px;}
.hc{height:56.196000px;}
.he{height:56.340000px;}
.hf{height:56.376000px;}
.hb{height:58.819922px;}
.h6{height:65.837812px;}
.h10{height:67.500000px;}
.h8{height:317.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:148.536000px;}
.w4{width:171.390000px;}
.w5{width:180.750000px;}
.w7{width:189.210000px;}
.w3{width:208.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:12.600000px;}
.xe{left:15.660000px;}
.x11{left:19.260000px;}
.x13{left:20.880000px;}
.x1c{left:23.220000px;}
.x1a{left:24.660000px;}
.x17{left:28.800000px;}
.x1d{left:29.880000px;}
.x19{left:44.640000px;}
.x1e{left:52.740000px;}
.xd{left:55.980000px;}
.x10{left:68.760000px;}
.x18{left:76.500000px;}
.x1{left:108.035987px;}
.x9{left:113.616000px;}
.x3{left:117.935987px;}
.xa{left:134.994000px;}
.x1f{left:140.075987px;}
.x8{left:161.129987px;}
.x4{left:171.209987px;}
.x14{left:177.870000px;}
.x5{left:303.194987px;}
.x6{left:309.134987px;}
.xf{left:333.075000px;}
.x7{left:336.494987px;}
.x12{left:349.275000px;}
.x1b{left:351.795000px;}
.xb{left:434.054987px;}
.x2{left:448.274987px;}
.x15{left:516.705000px;}
.xc{left:526.245000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls5{letter-spacing:-0.531200pt;}
.ls3{letter-spacing:-0.240533pt;}
.ls8{letter-spacing:-0.202133pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.084267pt;}
.ls2{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.020480pt;}
.ls0{letter-spacing:0.160000pt;}
.wsa{word-spacing:-58.880000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws9{word-spacing:-12.974080pt;}
.ws7{word-spacing:-12.953600pt;}
.ws8{word-spacing:-12.751467pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.433600pt;}
.ws5{word-spacing:-8.082133pt;}
.ws3{word-spacing:-7.040000pt;}
.ws2{word-spacing:-7.008000pt;}
.ws4{word-spacing:0.000000pt;}
._19{margin-left:-3.391360pt;}
._c{margin-left:-2.496640pt;}
._2{margin-left:-1.248000pt;}
._1{width:1.114667pt;}
._d{width:2.443520pt;}
._8{width:3.824640pt;}
._9{width:4.835627pt;}
._11{width:5.736107pt;}
._10{width:7.064107pt;}
._14{width:8.235307pt;}
._13{width:9.242880pt;}
._a{width:10.597973pt;}
._18{width:11.507413pt;}
._f{width:12.908160pt;}
._e{width:13.917440pt;}
._15{width:15.228160pt;}
._b{width:16.202453pt;}
._7{width:17.317973pt;}
._6{width:18.273280pt;}
._1c{width:20.195840pt;}
._1a{width:21.491200pt;}
._1b{width:22.385920pt;}
._12{width:23.532160pt;}
._16{width:41.970560pt;}
._0{width:66.666667pt;}
._3{width:161.440000pt;}
._4{width:172.750080pt;}
._5{width:180.313600pt;}
._17{width:938.673067pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:5.920000pt;}
.y52{bottom:7.680000pt;}
.y8d{bottom:10.080000pt;}
.y98{bottom:10.280000pt;}
.y91{bottom:19.386667pt;}
.y93{bottom:24.320000pt;}
.y51{bottom:26.080000pt;}
.y8f{bottom:28.480000pt;}
.y8c{bottom:28.520000pt;}
.y97{bottom:28.680000pt;}
.y50{bottom:42.720000pt;}
.y7{bottom:50.240000pt;}
.y4f{bottom:52.000000pt;}
.y4e{bottom:61.440000pt;}
.y6{bottom:62.752000pt;}
.y4d{bottom:70.720000pt;}
.y4c{bottom:86.400000pt;}
.y3f{bottom:99.232000pt;}
.y8a{bottom:101.152000pt;}
.y3e{bottom:116.352000pt;}
.y89{bottom:118.432000pt;}
.y3d{bottom:133.626667pt;}
.y4b{bottom:134.560000pt;}
.y88{bottom:135.546667pt;}
.y3c{bottom:150.746667pt;}
.y4a{bottom:151.840000pt;}
.y87{bottom:152.826667pt;}
.y49{bottom:164.320000pt;}
.y3b{bottom:167.866667pt;}
.y86{bottom:169.946667pt;}
.y48{bottom:177.000000pt;}
.y3a{bottom:185.146667pt;}
.y85{bottom:187.226667pt;}
.y47{bottom:190.600000pt;}
.y39{bottom:202.266667pt;}
.y84{bottom:204.346667pt;}
.y46{bottom:207.880000pt;}
.y38{bottom:219.546667pt;}
.y45{bottom:220.360000pt;}
.y83{bottom:221.626667pt;}
.y44{bottom:232.840000pt;}
.y37{bottom:236.666667pt;}
.y82{bottom:238.746667pt;}
.y43{bottom:245.320000pt;}
.y36{bottom:253.946667pt;}
.y81{bottom:255.866667pt;}
.y42{bottom:257.800000pt;}
.y41{bottom:270.600000pt;}
.y35{bottom:271.066667pt;}
.y80{bottom:273.146667pt;}
.y34{bottom:288.026667pt;}
.y7f{bottom:290.266667pt;}
.y33{bottom:303.746667pt;}
.y7e{bottom:307.586667pt;}
.y32{bottom:319.426667pt;}
.y7d{bottom:324.706667pt;}
.y31{bottom:334.946667pt;}
.y7c{bottom:341.986667pt;}
.y30{bottom:350.626667pt;}
.y7b{bottom:359.106667pt;}
.y2f{bottom:366.306667pt;}
.y7a{bottom:376.386667pt;}
.y2e{bottom:381.826667pt;}
.y79{bottom:393.506667pt;}
.y2d{bottom:397.506667pt;}
.y78{bottom:410.786667pt;}
.y2c{bottom:413.186667pt;}
.y77{bottom:427.906667pt;}
.y2b{bottom:428.866667pt;}
.y2a{bottom:444.386667pt;}
.y76{bottom:445.186667pt;}
.y29{bottom:460.066667pt;}
.y75{bottom:462.306667pt;}
.y28{bottom:475.746667pt;}
.y74{bottom:479.586667pt;}
.y27{bottom:491.266667pt;}
.y73{bottom:496.706667pt;}
.y26{bottom:506.946667pt;}
.y72{bottom:513.826667pt;}
.y25{bottom:522.626667pt;}
.y90{bottom:529.826667pt;}
.y71{bottom:531.106667pt;}
.y24{bottom:540.253333pt;}
.y70{bottom:548.253333pt;}
.y23{bottom:555.933333pt;}
.y6f{bottom:565.533333pt;}
.y22{bottom:571.453333pt;}
.y6e{bottom:582.653333pt;}
.y21{bottom:587.133333pt;}
.y40{bottom:597.053333pt;}
.y6d{bottom:599.933333pt;}
.y20{bottom:602.813333pt;}
.y8e{bottom:606.813333pt;}
.y6c{bottom:617.053333pt;}
.y1f{bottom:618.333333pt;}
.y9d{bottom:623.133333pt;}
.y1e{bottom:634.013333pt;}
.y6b{bottom:634.333333pt;}
.y9c{bottom:638.813333pt;}
.y1d{bottom:649.693333pt;}
.y6a{bottom:651.453333pt;}
.y9b{bottom:654.333333pt;}
.y1c{bottom:665.373333pt;}
.y69{bottom:668.733333pt;}
.y9a{bottom:670.013333pt;}
.y1b{bottom:680.893333pt;}
.y94{bottom:682.013333pt;}
.y92{bottom:682.973333pt;}
.y68{bottom:685.853333pt;}
.y1a{bottom:696.573333pt;}
.y67{bottom:703.133333pt;}
.y19{bottom:712.253333pt;}
.y66{bottom:720.253333pt;}
.y18{bottom:727.773333pt;}
.y65{bottom:737.533333pt;}
.y17{bottom:743.453333pt;}
.y64{bottom:754.653333pt;}
.y16{bottom:759.133333pt;}
.y8b{bottom:762.973333pt;}
.y96{bottom:763.613333pt;}
.y63{bottom:771.773333pt;}
.y15{bottom:774.693333pt;}
.y62{bottom:789.093333pt;}
.y14{bottom:790.373333pt;}
.y13{bottom:806.053333pt;}
.y61{bottom:806.213333pt;}
.y99{bottom:820.133333pt;}
.y12{bottom:821.573333pt;}
.y60{bottom:823.493333pt;}
.y11{bottom:837.253333pt;}
.y5f{bottom:840.613333pt;}
.y10{bottom:852.933333pt;}
.y5e{bottom:857.893333pt;}
.yf{bottom:868.613333pt;}
.y5d{bottom:875.013333pt;}
.ye{bottom:884.133333pt;}
.y5c{bottom:892.293333pt;}
.yd{bottom:899.813333pt;}
.y5b{bottom:909.413333pt;}
.yc{bottom:915.653333pt;}
.y5a{bottom:926.693333pt;}
.yb{bottom:932.613333pt;}
.y59{bottom:943.813333pt;}
.ya{bottom:949.093333pt;}
.y58{bottom:961.093333pt;}
.y9{bottom:969.413333pt;}
.y57{bottom:978.213333pt;}
.y8{bottom:988.933333pt;}
.y56{bottom:995.493333pt;}
.y5{bottom:1007.333333pt;}
.y55{bottom:1012.640000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y54{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y53{bottom:1064.480000pt;}
.ha{height:27.093750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.h9{height:44.687500pt;}
.h5{height:44.975625pt;}
.hd{height:45.156250pt;}
.h7{height:49.852500pt;}
.hc{height:49.952000pt;}
.he{height:50.080000pt;}
.hf{height:50.112000pt;}
.hb{height:52.284375pt;}
.h6{height:58.522500pt;}
.h10{height:60.000000pt;}
.h8{height:281.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:132.032000pt;}
.w4{width:152.346667pt;}
.w5{width:160.666667pt;}
.w7{width:168.186667pt;}
.w3{width:184.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:11.200000pt;}
.xe{left:13.920000pt;}
.x11{left:17.120000pt;}
.x13{left:18.560000pt;}
.x1c{left:20.640000pt;}
.x1a{left:21.920000pt;}
.x17{left:25.600000pt;}
.x1d{left:26.560000pt;}
.x19{left:39.680000pt;}
.x1e{left:46.880000pt;}
.xd{left:49.760000pt;}
.x10{left:61.120000pt;}
.x18{left:68.000000pt;}
.x1{left:96.031988pt;}
.x9{left:100.992000pt;}
.x3{left:104.831988pt;}
.xa{left:119.994667pt;}
.x1f{left:124.511988pt;}
.x8{left:143.226655pt;}
.x4{left:152.186655pt;}
.x14{left:158.106667pt;}
.x5{left:269.506655pt;}
.x6{left:274.786655pt;}
.xf{left:296.066667pt;}
.x7{left:299.106655pt;}
.x12{left:310.466667pt;}
.x1b{left:312.706667pt;}
.xb{left:385.826655pt;}
.x2{left:398.466655pt;}
.x15{left:459.293333pt;}
.xc{left:467.773333pt;}
}




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