
    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_b334349fc25ecb8e3969f14d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_a0620d62fbade96e5b968afa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_30c10f9146a10cfa24b9a9f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_a308ed928359ffed13bc7fb1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_ac627e350d044d88331e1ad5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.ls4{letter-spacing:-0.181200px;}
.ls8{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.045360px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.269280px;}
.ls2{letter-spacing:0.288000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.232000px;}
.ws2{word-spacing:-20.160000px;}
.ws0{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.872000px;}
.ws1{word-spacing:-13.410720px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.152000px;}
._3{width:1.068000px;}
._5{width:8.784000px;}
._4{width:10.296000px;}
._2{width:23.616000px;}
._0{width:24.624000px;}
._6{width:844.140000px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:14.040000px;}
.ya3{bottom:14.220000px;}
.ya5{bottom:31.140000px;}
.y62{bottom:32.040000px;}
.y38{bottom:32.085000px;}
.y67{bottom:32.220000px;}
.y95{bottom:32.265000px;}
.y6e{bottom:35.820000px;}
.y42{bottom:37.074000px;}
.y3a{bottom:37.080000px;}
.y4b{bottom:37.110000px;}
.y47{bottom:37.125000px;}
.y81{bottom:49.140000px;}
.y88{bottom:56.010000px;}
.y61{bottom:63.180000px;}
.y92{bottom:63.210000px;}
.y37{bottom:63.225000px;}
.y6d{bottom:66.780000px;}
.y80{bottom:80.280000px;}
.y87{bottom:87.150000px;}
.y83{bottom:92.160000px;}
.y7c{bottom:93.240000px;}
.y78{bottom:93.285000px;}
.y72{bottom:93.420000px;}
.y74{bottom:93.450000px;}
.y60{bottom:94.140000px;}
.y36{bottom:94.185000px;}
.y76{bottom:95.580000px;}
.y6c{bottom:97.920000px;}
.y70{bottom:110.385000px;}
.y7f{bottom:111.240000px;}
.y86{bottom:118.110000px;}
.y28{bottom:118.116000px;}
.y35{bottom:125.325000px;}
.y41{bottom:140.436000px;}
.y50{bottom:151.050000px;}
.y84{bottom:154.470000px;}
.y6a{bottom:155.730000px;}
.y34{bottom:156.285000px;}
.y96{bottom:165.270000px;}
.y27{bottom:167.250000px;}
.y33{bottom:187.425000px;}
.y77{bottom:194.070000px;}
.y4f{bottom:194.610000px;}
.y26{bottom:198.210000px;}
.y69{bottom:204.690000px;}
.y40{bottom:228.630000px;}
.y25{bottom:229.170000px;}
.y68{bottom:248.250000px;}
.y24{bottom:260.310000px;}
.y9f{bottom:271.830000px;}
.y5b{bottom:278.310000px;}
.y94{bottom:279.390000px;}
.y4e{bottom:282.675000px;}
.y23{bottom:291.315000px;}
.y82{bottom:298.875000px;}
.y3f{bottom:316.695000px;}
.y9e{bottom:320.835000px;}
.y5a{bottom:321.915000px;}
.y22{bottom:322.455000px;}
.y8b{bottom:324.795000px;}
.y66{bottom:331.455000px;}
.y75{bottom:338.475000px;}
.y21{bottom:353.415000px;}
.y20{bottom:359.355000px;}
.y9d{bottom:364.395000px;}
.y4d{bottom:370.875000px;}
.y8a{bottom:373.755000px;}
.y1f{bottom:384.555000px;}
.y1e{bottom:390.495000px;}
.y93{bottom:393.735000px;}
.y3e{bottom:404.895000px;}
.y59{bottom:409.935000px;}
.y65{bottom:414.795000px;}
.y1d{bottom:415.515000px;}
.y89{bottom:417.315000px;}
.y1c{bottom:421.455000px;}
.y7e{bottom:442.155000px;}
.y1b{bottom:446.655000px;}
.y4c{bottom:459.075000px;}
.y1a{bottom:477.615000px;}
.y9c{bottom:478.695000px;}
.y19{bottom:483.555000px;}
.y73{bottom:484.995000px;}
.y3d{bottom:492.915000px;}
.y64{bottom:497.955000px;}
.y58{bottom:498.135000px;}
.y91{bottom:507.855000px;}
.y18{bottom:508.755000px;}
.y17{bottom:514.695000px;}
.y16{bottom:539.715000px;}
.y15{bottom:545.655000px;}
.y4a{bottom:547.095000px;}
.y85{bottom:561.675000px;}
.y14{bottom:570.885000px;}
.y3c{bottom:581.145000px;}
.y57{bottom:586.185000px;}
.y7d{bottom:586.545000px;}
.y9b{bottom:592.845000px;}
.y13{bottom:601.845000px;}
.y12{bottom:607.785000px;}
.y90{bottom:622.185000px;}
.y71{bottom:629.385000px;}
.y11{bottom:632.985000px;}
.y49{bottom:635.325000px;}
.y10{bottom:663.945000px;}
.y63{bottom:664.305000px;}
.y3b{bottom:669.345000px;}
.y56{bottom:674.385000px;}
.yf{bottom:695.085000px;}
.y9a{bottom:707.145000px;}
.y48{bottom:723.345000px;}
.ye{bottom:726.045000px;}
.y7b{bottom:730.905000px;}
.y8f{bottom:736.305000px;}
.y30{bottom:747.285000px;}
.y5f{bottom:747.465000px;}
.yd{bottom:757.185000px;}
.y39{bottom:757.365000px;}
.y55{bottom:762.405000px;}
.yc{bottom:763.125000px;}
.y6f{bottom:773.745000px;}
.yb{bottom:788.145000px;}
.y2f{bottom:796.245000px;}
.y46{bottom:811.545000px;}
.ya{bottom:819.285000px;}
.y99{bottom:821.445000px;}
.y8e{bottom:824.505000px;}
.ya7{bottom:842.505000px;}
.y2e{bottom:845.385000px;}
.y32{bottom:845.565000px;}
.y9{bottom:850.290000px;}
.y54{bottom:850.650000px;}
.y8{bottom:856.230000px;}
.y7a{bottom:875.310000px;}
.ya6{bottom:884.310000px;}
.y2d{bottom:894.390000px;}
.y7{bottom:899.430000px;}
.y45{bottom:899.610000px;}
.ya4{bottom:910.230000px;}
.y8d{bottom:912.750000px;}
.y6{bottom:930.390000px;}
.y6b{bottom:935.070000px;}
.y98{bottom:935.610000px;}
.y53{bottom:938.850000px;}
.y2c{bottom:943.530000px;}
.y5e{bottom:948.390000px;}
.ya2{bottom:957.750000px;}
.y5{bottom:961.530000px;}
.y44{bottom:987.810000px;}
.y2b{bottom:992.490000px;}
.y5d{bottom:997.530000px;}
.y8c{bottom:1000.770000px;}
.ya0{bottom:1005.450000px;}
.y4{bottom:1010.490000px;}
.y79{bottom:1019.670000px;}
.y52{bottom:1026.870000px;}
.y5c{bottom:1028.490000px;}
.y2a{bottom:1041.630000px;}
.y97{bottom:1049.910000px;}
.y3{bottom:1059.630000px;}
.y43{bottom:1076.010000px;}
.y2{bottom:1090.590000px;}
.y31{bottom:1108.590000px;}
.y1{bottom:1121.730000px;}
.y29{bottom:1139.580000px;}
.y51{bottom:1139.760000px;}
.h19{height:30.960000px;}
.h1a{height:31.140000px;}
.h5{height:50.312812px;}
.h4{height:51.333750px;}
.h3{height:65.884219px;}
.ha{height:66.960000px;}
.hb{height:66.996000px;}
.hc{height:67.140000px;}
.hd{height:67.176000px;}
.h7{height:72.000000px;}
.h8{height:72.036000px;}
.h2{height:75.093750px;}
.h17{height:98.100000px;}
.h18{height:98.136000px;}
.h15{height:127.080000px;}
.h14{height:128.160000px;}
.h13{height:128.196000px;}
.h10{height:128.340000px;}
.h11{height:128.376000px;}
.h12{height:130.500000px;}
.he{height:132.840000px;}
.hf{height:145.296000px;}
.h16{height:153.030000px;}
.h9{height:160.230000px;}
.h6{height:222.330000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:64.080000px;}
.w6{width:90.360000px;}
.w7{width:97.416000px;}
.w16{width:98.136000px;}
.w17{width:106.920000px;}
.w8{width:113.580000px;}
.w5{width:119.376000px;}
.wc{width:122.580000px;}
.wd{width:122.616000px;}
.w11{width:129.060000px;}
.w13{width:129.240000px;}
.w15{width:129.636000px;}
.we{width:141.696000px;}
.wf{width:173.550000px;}
.w9{width:187.950000px;}
.w18{width:188.130000px;}
.w14{width:210.090000px;}
.w10{width:212.430000px;}
.wb{width:233.130000px;}
.w19{width:236.730000px;}
.w1a{width:247.350000px;}
.w12{width:334.695000px;}
.wa{width:424.155000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:6.840000px;}
.x10{left:8.280000px;}
.x6{left:10.980000px;}
.xe{left:12.600000px;}
.xd{left:14.580000px;}
.x8{left:15.660000px;}
.x16{left:16.920000px;}
.xb{left:18.900000px;}
.x38{left:19.980000px;}
.x14{left:21.960000px;}
.x3a{left:23.760000px;}
.x24{left:25.200000px;}
.x22{left:26.280000px;}
.x11{left:27.900000px;}
.x3d{left:29.190000px;}
.x23{left:30.240000px;}
.x42{left:31.860000px;}
.x13{left:32.940000px;}
.x2f{left:35.820000px;}
.x40{left:36.900000px;}
.x17{left:39.240000px;}
.x29{left:40.680000px;}
.x2b{left:41.760000px;}
.x2d{left:43.560000px;}
.x9{left:44.640000px;}
.x1b{left:46.800000px;}
.x31{left:49.500000px;}
.x1a{left:51.840000px;}
.x25{left:54.360000px;}
.x28{left:56.154000px;}
.x33{left:58.494000px;}
.x2c{left:60.840000px;}
.x4{left:62.279973px;}
.x2a{left:65.700000px;}
.x41{left:68.985000px;}
.x2{left:70.739973px;}
.x3{left:79.199987px;}
.x39{left:81.534000px;}
.x37{left:83.514000px;}
.x36{left:85.494000px;}
.x15{left:88.065000px;}
.x35{left:89.994000px;}
.x18{left:91.485000px;}
.x1f{left:96.480000px;}
.x1d{left:101.520000px;}
.x1{left:106.235987px;}
.x5{left:107.496000px;}
.x46{left:108.540000px;}
.x1e{left:111.420000px;}
.x45{left:118.620000px;}
.x7{left:172.650000px;}
.x20{left:231.150000px;}
.x3b{left:237.630000px;}
.x32{left:273.675000px;}
.xa{left:293.115000px;}
.x43{left:297.615000px;}
.x34{left:308.595000px;}
.x2e{left:321.015000px;}
.x21{left:354.675000px;}
.xc{left:384.555000px;}
.x3c{left:448.815000px;}
.x30{left:450.975000px;}
.xf{left:483.045000px;}
.x26{left:497.445000px;}
.x1c{left:532.725000px;}
.x44{left:535.965000px;}
.x3e{left:579.525000px;}
.x12{left:597.705000px;}
.x27{left:672.090000px;}
.x3f{left:678.750000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.161067pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.040320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.239360pt;}
.ls2{letter-spacing:0.256000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.920000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.664000pt;}
.ws1{word-spacing:-11.920640pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-1.024000pt;}
._3{width:0.949333pt;}
._5{width:7.808000pt;}
._4{width:9.152000pt;}
._2{width:20.992000pt;}
._0{width:21.888000pt;}
._6{width:750.346667pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:12.480000pt;}
.ya3{bottom:12.640000pt;}
.ya5{bottom:27.680000pt;}
.y62{bottom:28.480000pt;}
.y38{bottom:28.520000pt;}
.y67{bottom:28.640000pt;}
.y95{bottom:28.680000pt;}
.y6e{bottom:31.840000pt;}
.y42{bottom:32.954667pt;}
.y3a{bottom:32.960000pt;}
.y4b{bottom:32.986667pt;}
.y47{bottom:33.000000pt;}
.y81{bottom:43.680000pt;}
.y88{bottom:49.786667pt;}
.y61{bottom:56.160000pt;}
.y92{bottom:56.186667pt;}
.y37{bottom:56.200000pt;}
.y6d{bottom:59.360000pt;}
.y80{bottom:71.360000pt;}
.y87{bottom:77.466667pt;}
.y83{bottom:81.920000pt;}
.y7c{bottom:82.880000pt;}
.y78{bottom:82.920000pt;}
.y72{bottom:83.040000pt;}
.y74{bottom:83.066667pt;}
.y60{bottom:83.680000pt;}
.y36{bottom:83.720000pt;}
.y76{bottom:84.960000pt;}
.y6c{bottom:87.040000pt;}
.y70{bottom:98.120000pt;}
.y7f{bottom:98.880000pt;}
.y86{bottom:104.986667pt;}
.y28{bottom:104.992000pt;}
.y35{bottom:111.400000pt;}
.y41{bottom:124.832000pt;}
.y50{bottom:134.266667pt;}
.y84{bottom:137.306667pt;}
.y6a{bottom:138.426667pt;}
.y34{bottom:138.920000pt;}
.y96{bottom:146.906667pt;}
.y27{bottom:148.666667pt;}
.y33{bottom:166.600000pt;}
.y77{bottom:172.506667pt;}
.y4f{bottom:172.986667pt;}
.y26{bottom:176.186667pt;}
.y69{bottom:181.946667pt;}
.y40{bottom:203.226667pt;}
.y25{bottom:203.706667pt;}
.y68{bottom:220.666667pt;}
.y24{bottom:231.386667pt;}
.y9f{bottom:241.626667pt;}
.y5b{bottom:247.386667pt;}
.y94{bottom:248.346667pt;}
.y4e{bottom:251.266667pt;}
.y23{bottom:258.946667pt;}
.y82{bottom:265.666667pt;}
.y3f{bottom:281.506667pt;}
.y9e{bottom:285.186667pt;}
.y5a{bottom:286.146667pt;}
.y22{bottom:286.626667pt;}
.y8b{bottom:288.706667pt;}
.y66{bottom:294.626667pt;}
.y75{bottom:300.866667pt;}
.y21{bottom:314.146667pt;}
.y20{bottom:319.426667pt;}
.y9d{bottom:323.906667pt;}
.y4d{bottom:329.666667pt;}
.y8a{bottom:332.226667pt;}
.y1f{bottom:341.826667pt;}
.y1e{bottom:347.106667pt;}
.y93{bottom:349.986667pt;}
.y3e{bottom:359.906667pt;}
.y59{bottom:364.386667pt;}
.y65{bottom:368.706667pt;}
.y1d{bottom:369.346667pt;}
.y89{bottom:370.946667pt;}
.y1c{bottom:374.626667pt;}
.y7e{bottom:393.026667pt;}
.y1b{bottom:397.026667pt;}
.y4c{bottom:408.066667pt;}
.y1a{bottom:424.546667pt;}
.y9c{bottom:425.506667pt;}
.y19{bottom:429.826667pt;}
.y73{bottom:431.106667pt;}
.y3d{bottom:438.146667pt;}
.y64{bottom:442.626667pt;}
.y58{bottom:442.786667pt;}
.y91{bottom:451.426667pt;}
.y18{bottom:452.226667pt;}
.y17{bottom:457.506667pt;}
.y16{bottom:479.746667pt;}
.y15{bottom:485.026667pt;}
.y4a{bottom:486.306667pt;}
.y85{bottom:499.266667pt;}
.y14{bottom:507.453333pt;}
.y3c{bottom:516.573333pt;}
.y57{bottom:521.053333pt;}
.y7d{bottom:521.373333pt;}
.y9b{bottom:526.973333pt;}
.y13{bottom:534.973333pt;}
.y12{bottom:540.253333pt;}
.y90{bottom:553.053333pt;}
.y71{bottom:559.453333pt;}
.y11{bottom:562.653333pt;}
.y49{bottom:564.733333pt;}
.y10{bottom:590.173333pt;}
.y63{bottom:590.493333pt;}
.y3b{bottom:594.973333pt;}
.y56{bottom:599.453333pt;}
.yf{bottom:617.853333pt;}
.y9a{bottom:628.573333pt;}
.y48{bottom:642.973333pt;}
.ye{bottom:645.373333pt;}
.y7b{bottom:649.693333pt;}
.y8f{bottom:654.493333pt;}
.y30{bottom:664.253333pt;}
.y5f{bottom:664.413333pt;}
.yd{bottom:673.053333pt;}
.y39{bottom:673.213333pt;}
.y55{bottom:677.693333pt;}
.yc{bottom:678.333333pt;}
.y6f{bottom:687.773333pt;}
.yb{bottom:700.573333pt;}
.y2f{bottom:707.773333pt;}
.y46{bottom:721.373333pt;}
.ya{bottom:728.253333pt;}
.y99{bottom:730.173333pt;}
.y8e{bottom:732.893333pt;}
.ya7{bottom:748.893333pt;}
.y2e{bottom:751.453333pt;}
.y32{bottom:751.613333pt;}
.y9{bottom:755.813333pt;}
.y54{bottom:756.133333pt;}
.y8{bottom:761.093333pt;}
.y7a{bottom:778.053333pt;}
.ya6{bottom:786.053333pt;}
.y2d{bottom:795.013333pt;}
.y7{bottom:799.493333pt;}
.y45{bottom:799.653333pt;}
.ya4{bottom:809.093333pt;}
.y8d{bottom:811.333333pt;}
.y6{bottom:827.013333pt;}
.y6b{bottom:831.173333pt;}
.y98{bottom:831.653333pt;}
.y53{bottom:834.533333pt;}
.y2c{bottom:838.693333pt;}
.y5e{bottom:843.013333pt;}
.ya2{bottom:851.333333pt;}
.y5{bottom:854.693333pt;}
.y44{bottom:878.053333pt;}
.y2b{bottom:882.213333pt;}
.y5d{bottom:886.693333pt;}
.y8c{bottom:889.573333pt;}
.ya0{bottom:893.733333pt;}
.y4{bottom:898.213333pt;}
.y79{bottom:906.373333pt;}
.y52{bottom:912.773333pt;}
.y5c{bottom:914.213333pt;}
.y2a{bottom:925.893333pt;}
.y97{bottom:933.253333pt;}
.y3{bottom:941.893333pt;}
.y43{bottom:956.453333pt;}
.y2{bottom:969.413333pt;}
.y31{bottom:985.413333pt;}
.y1{bottom:997.093333pt;}
.y29{bottom:1012.960000pt;}
.y51{bottom:1013.120000pt;}
.h19{height:27.520000pt;}
.h1a{height:27.680000pt;}
.h5{height:44.722500pt;}
.h4{height:45.630000pt;}
.h3{height:58.563750pt;}
.ha{height:59.520000pt;}
.hb{height:59.552000pt;}
.hc{height:59.680000pt;}
.hd{height:59.712000pt;}
.h7{height:64.000000pt;}
.h8{height:64.032000pt;}
.h2{height:66.750000pt;}
.h17{height:87.200000pt;}
.h18{height:87.232000pt;}
.h15{height:112.960000pt;}
.h14{height:113.920000pt;}
.h13{height:113.952000pt;}
.h10{height:114.080000pt;}
.h11{height:114.112000pt;}
.h12{height:116.000000pt;}
.he{height:118.080000pt;}
.hf{height:129.152000pt;}
.h16{height:136.026667pt;}
.h9{height:142.426667pt;}
.h6{height:197.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:56.960000pt;}
.w6{width:80.320000pt;}
.w7{width:86.592000pt;}
.w16{width:87.232000pt;}
.w17{width:95.040000pt;}
.w8{width:100.960000pt;}
.w5{width:106.112000pt;}
.wc{width:108.960000pt;}
.wd{width:108.992000pt;}
.w11{width:114.720000pt;}
.w13{width:114.880000pt;}
.w15{width:115.232000pt;}
.we{width:125.952000pt;}
.wf{width:154.266667pt;}
.w9{width:167.066667pt;}
.w18{width:167.226667pt;}
.w14{width:186.746667pt;}
.w10{width:188.826667pt;}
.wb{width:207.226667pt;}
.w19{width:210.426667pt;}
.w1a{width:219.866667pt;}
.w12{width:297.506667pt;}
.wa{width:377.026667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.080000pt;}
.x10{left:7.360000pt;}
.x6{left:9.760000pt;}
.xe{left:11.200000pt;}
.xd{left:12.960000pt;}
.x8{left:13.920000pt;}
.x16{left:15.040000pt;}
.xb{left:16.800000pt;}
.x38{left:17.760000pt;}
.x14{left:19.520000pt;}
.x3a{left:21.120000pt;}
.x24{left:22.400000pt;}
.x22{left:23.360000pt;}
.x11{left:24.800000pt;}
.x3d{left:25.946667pt;}
.x23{left:26.880000pt;}
.x42{left:28.320000pt;}
.x13{left:29.280000pt;}
.x2f{left:31.840000pt;}
.x40{left:32.800000pt;}
.x17{left:34.880000pt;}
.x29{left:36.160000pt;}
.x2b{left:37.120000pt;}
.x2d{left:38.720000pt;}
.x9{left:39.680000pt;}
.x1b{left:41.600000pt;}
.x31{left:44.000000pt;}
.x1a{left:46.080000pt;}
.x25{left:48.320000pt;}
.x28{left:49.914667pt;}
.x33{left:51.994667pt;}
.x2c{left:54.080000pt;}
.x4{left:55.359976pt;}
.x2a{left:58.400000pt;}
.x41{left:61.320000pt;}
.x2{left:62.879976pt;}
.x3{left:70.399988pt;}
.x39{left:72.474667pt;}
.x37{left:74.234667pt;}
.x36{left:75.994667pt;}
.x15{left:78.280000pt;}
.x35{left:79.994667pt;}
.x18{left:81.320000pt;}
.x1f{left:85.760000pt;}
.x1d{left:90.240000pt;}
.x1{left:94.431988pt;}
.x5{left:95.552000pt;}
.x46{left:96.480000pt;}
.x1e{left:99.040000pt;}
.x45{left:105.440000pt;}
.x7{left:153.466667pt;}
.x20{left:205.466667pt;}
.x3b{left:211.226667pt;}
.x32{left:243.266667pt;}
.xa{left:260.546667pt;}
.x43{left:264.546667pt;}
.x34{left:274.306667pt;}
.x2e{left:285.346667pt;}
.x21{left:315.266667pt;}
.xc{left:341.826667pt;}
.x3c{left:398.946667pt;}
.x30{left:400.866667pt;}
.xf{left:429.373333pt;}
.x26{left:442.173333pt;}
.x1c{left:473.533333pt;}
.x44{left:476.413333pt;}
.x3e{left:515.133333pt;}
.x12{left:531.293333pt;}
.x27{left:597.413333pt;}
.x3f{left:603.333333pt;}
}




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