
    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_1b31fa2f877554742f68af71.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3eacc7ebd173f7b9305e14ce.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_94c78cf83ddd58378af35452.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_ea017771ddf513e56d805d60.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2b809ec238cb9ef6eba75f31.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.720703;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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_f4adbe8a4807a114feb5c115.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.106800px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.926640px;}
.lse{letter-spacing:46.026720px;}
.lsd{letter-spacing:64.026720px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.093600px;}
.ws2{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.580000px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-2.900160px;}
._2{margin-left:-1.080000px;}
._0{width:1.195200px;}
._1{width:2.825520px;}
._5{width:4.637040px;}
._8{width:6.124320px;}
._4{width:8.105760px;}
._3{width:9.270720px;}
._11{width:10.329120px;}
._9{width:12.047040px;}
._a{width:13.206960px;}
._d{width:16.553520px;}
._e{width:17.959440px;}
._c{width:19.605600px;}
._b{width:20.676960px;}
._10{width:21.931920px;}
._f{width:22.947840px;}
._6{width:201.204000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:3.420000px;}
.y71{bottom:3.600000px;}
.y56{bottom:3.780000px;}
.y58{bottom:3.825000px;}
.y5{bottom:4.320000px;}
.y52{bottom:12.060000px;}
.y73{bottom:12.600000px;}
.y5a{bottom:12.780000px;}
.y53{bottom:20.700000px;}
.y4{bottom:24.660000px;}
.y8b{bottom:59.760000px;}
.y45{bottom:66.600000px;}
.y8a{bottom:77.040000px;}
.y44{bottom:83.880000px;}
.y89{bottom:94.320000px;}
.y43{bottom:101.160000px;}
.y88{bottom:111.600000px;}
.y42{bottom:118.440000px;}
.y87{bottom:128.520000px;}
.y41{bottom:135.720000px;}
.y86{bottom:146.160000px;}
.y40{bottom:152.460000px;}
.y85{bottom:163.260000px;}
.y3f{bottom:170.100000px;}
.y84{bottom:181.620000px;}
.y3e{bottom:187.380000px;}
.y83{bottom:198.900000px;}
.y3d{bottom:204.660000px;}
.y82{bottom:216.900000px;}
.y3c{bottom:221.940000px;}
.y81{bottom:234.570000px;}
.y3b{bottom:239.070000px;}
.y80{bottom:251.670000px;}
.y3a{bottom:256.350000px;}
.y7f{bottom:268.950000px;}
.y39{bottom:273.630000px;}
.y7e{bottom:286.230000px;}
.y38{bottom:290.910000px;}
.y7d{bottom:303.510000px;}
.y37{bottom:308.190000px;}
.y7c{bottom:320.790000px;}
.y36{bottom:325.470000px;}
.y7b{bottom:338.070000px;}
.y35{bottom:342.570000px;}
.y7a{bottom:355.170000px;}
.y34{bottom:359.850000px;}
.y78{bottom:369.570000px;}
.y33{bottom:377.130000px;}
.y79{bottom:387.570000px;}
.y32{bottom:394.410000px;}
.y77{bottom:405.570000px;}
.y31{bottom:411.690000px;}
.y76{bottom:423.570000px;}
.y30{bottom:428.970000px;}
.y75{bottom:441.570000px;}
.y2f{bottom:446.070000px;}
.y74{bottom:459.615000px;}
.y2e{bottom:463.395000px;}
.y72{bottom:477.615000px;}
.y2d{bottom:480.675000px;}
.y70{bottom:495.615000px;}
.y2c{bottom:497.955000px;}
.y6f{bottom:513.435000px;}
.y2b{bottom:515.235000px;}
.y6e{bottom:531.435000px;}
.y2a{bottom:532.335000px;}
.y29{bottom:549.615000px;}
.y28{bottom:566.895000px;}
.y6d{bottom:570.495000px;}
.y27{bottom:584.175000px;}
.y6c{bottom:587.775000px;}
.y26{bottom:601.455000px;}
.y6b{bottom:605.055000px;}
.y25{bottom:618.735000px;}
.y6a{bottom:622.335000px;}
.y24{bottom:635.835000px;}
.y69{bottom:639.075000px;}
.y23{bottom:653.115000px;}
.y68{bottom:656.715000px;}
.y22{bottom:670.395000px;}
.y67{bottom:673.995000px;}
.y21{bottom:687.675000px;}
.y66{bottom:691.305000px;}
.y20{bottom:704.985000px;}
.y65{bottom:708.585000px;}
.y1f{bottom:721.905000px;}
.y64{bottom:725.865000px;}
.y1e{bottom:739.365000px;}
.y63{bottom:742.965000px;}
.y1d{bottom:756.645000px;}
.y62{bottom:760.245000px;}
.y1c{bottom:773.925000px;}
.y61{bottom:777.525000px;}
.y1b{bottom:791.205000px;}
.y5f{bottom:791.745000px;}
.y1a{bottom:808.485000px;}
.y60{bottom:809.745000px;}
.y19{bottom:825.765000px;}
.y5e{bottom:827.745000px;}
.y18{bottom:842.865000px;}
.y5d{bottom:845.745000px;}
.y17{bottom:860.145000px;}
.y5c{bottom:863.745000px;}
.y16{bottom:877.425000px;}
.y5b{bottom:881.745000px;}
.y15{bottom:894.705000px;}
.y59{bottom:899.745000px;}
.y14{bottom:911.985000px;}
.y57{bottom:917.745000px;}
.y13{bottom:929.130000px;}
.y55{bottom:935.790000px;}
.y90{bottom:941.010000px;}
.y12{bottom:946.410000px;}
.y51{bottom:953.790000px;}
.y8f{bottom:958.290000px;}
.y11{bottom:963.330000px;}
.y8e{bottom:975.570000px;}
.y10{bottom:981.690000px;}
.y50{bottom:992.850000px;}
.yf{bottom:998.970000px;}
.y4f{bottom:1010.130000px;}
.ye{bottom:1016.250000px;}
.y4e{bottom:1027.230000px;}
.yd{bottom:1033.530000px;}
.y4d{bottom:1044.510000px;}
.yc{bottom:1050.630000px;}
.y4c{bottom:1061.430000px;}
.y8d{bottom:1061.790000px;}
.yb{bottom:1067.910000px;}
.y4b{bottom:1078.710000px;}
.y8c{bottom:1079.070000px;}
.ya{bottom:1085.910000px;}
.y4a{bottom:1096.350000px;}
.y9{bottom:1103.190000px;}
.y49{bottom:1113.630000px;}
.y8{bottom:1120.830000px;}
.y48{bottom:1130.730000px;}
.y7{bottom:1141.530000px;}
.y47{bottom:1148.040000px;}
.y6{bottom:1162.260000px;}
.y46{bottom:1165.320000px;}
.y3{bottom:1182.240000px;}
.y2{bottom:1199.520000px;}
.y1{bottom:1216.620000px;}
.he{height:17.100000px;}
.h9{height:17.280000px;}
.ha{height:17.316000px;}
.h8{height:34.560000px;}
.hf{height:35.100000px;}
.hc{height:35.280000px;}
.hb{height:35.316000px;}
.h7{height:41.726953px;}
.hd{height:42.164648px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h10{height:61.423863px;}
.h3{height:70.664062px;}
.h4{height:72.562500px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:57.636000px;}
.wb{width:78.696000px;}
.w2{width:78.876000px;}
.w10{width:79.560000px;}
.w6{width:84.600000px;}
.w4{width:87.300000px;}
.w5{width:88.056000px;}
.wd{width:90.720000px;}
.we{width:92.016000px;}
.wf{width:93.420000px;}
.w8{width:98.640000px;}
.w9{width:105.156000px;}
.w11{width:105.696000px;}
.wc{width:129.996000px;}
.w3{width:137.736000px;}
.w12{width:733.140000px;}
.wa{width:743.220000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.740000px;}
.x21{left:10.980000px;}
.x19{left:13.680000px;}
.x13{left:14.760000px;}
.x1b{left:16.380000px;}
.x16{left:18.540000px;}
.x2f{left:20.160000px;}
.x29{left:21.240000px;}
.x17{left:22.320000px;}
.x1f{left:23.400000px;}
.x11{left:25.776000px;}
.x25{left:29.160000px;}
.x1e{left:30.960000px;}
.x2a{left:32.400000px;}
.x34{left:33.480000px;}
.x22{left:34.920000px;}
.x26{left:36.180000px;}
.x27{left:39.240000px;}
.x2d{left:43.740000px;}
.x14{left:47.340000px;}
.x24{left:51.660000px;}
.x5{left:54.000000px;}
.x28{left:55.440000px;}
.xe{left:63.000000px;}
.x10{left:75.060000px;}
.x2b{left:80.100000px;}
.x35{left:108.036000px;}
.x12{left:154.830000px;}
.x2c{left:159.510000px;}
.xd{left:182.370000px;}
.x6{left:191.550000px;}
.xc{left:205.770000px;}
.xb{left:209.190000px;}
.xa{left:222.150000px;}
.x9{left:231.330000px;}
.x2{left:236.730000px;}
.x3{left:262.155000px;}
.x2e{left:290.415000px;}
.x15{left:293.295000px;}
.x7{left:297.255000px;}
.x1{left:324.435000px;}
.x8{left:378.435000px;}
.x18{left:381.315000px;}
.xf{left:424.515000px;}
.x1a{left:470.085000px;}
.x30{left:474.585000px;}
.x1c{left:555.405000px;}
.x31{left:568.905000px;}
.x1d{left:613.770000px;}
.x32{left:627.270000px;}
.x33{left:707.550000px;}
.x20{left:713.130000px;}
.x4{left:821.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.823680pt;}
.lse{letter-spacing:40.912640pt;}
.lsd{letter-spacing:56.912640pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.416533pt;}
.ws2{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-2.577920pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._1{width:2.511573pt;}
._5{width:4.121813pt;}
._8{width:5.443840pt;}
._4{width:7.205120pt;}
._3{width:8.240640pt;}
._11{width:9.181440pt;}
._9{width:10.708480pt;}
._a{width:11.739520pt;}
._d{width:14.714240pt;}
._e{width:15.963947pt;}
._c{width:17.427200pt;}
._b{width:18.379520pt;}
._10{width:19.495040pt;}
._f{width:20.398080pt;}
._6{width:178.848000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:3.040000pt;}
.y71{bottom:3.200000pt;}
.y56{bottom:3.360000pt;}
.y58{bottom:3.400000pt;}
.y5{bottom:3.840000pt;}
.y52{bottom:10.720000pt;}
.y73{bottom:11.200000pt;}
.y5a{bottom:11.360000pt;}
.y53{bottom:18.400000pt;}
.y4{bottom:21.920000pt;}
.y8b{bottom:53.120000pt;}
.y45{bottom:59.200000pt;}
.y8a{bottom:68.480000pt;}
.y44{bottom:74.560000pt;}
.y89{bottom:83.840000pt;}
.y43{bottom:89.920000pt;}
.y88{bottom:99.200000pt;}
.y42{bottom:105.280000pt;}
.y87{bottom:114.240000pt;}
.y41{bottom:120.640000pt;}
.y86{bottom:129.920000pt;}
.y40{bottom:135.520000pt;}
.y85{bottom:145.120000pt;}
.y3f{bottom:151.200000pt;}
.y84{bottom:161.440000pt;}
.y3e{bottom:166.560000pt;}
.y83{bottom:176.800000pt;}
.y3d{bottom:181.920000pt;}
.y82{bottom:192.800000pt;}
.y3c{bottom:197.280000pt;}
.y81{bottom:208.506667pt;}
.y3b{bottom:212.506667pt;}
.y80{bottom:223.706667pt;}
.y3a{bottom:227.866667pt;}
.y7f{bottom:239.066667pt;}
.y39{bottom:243.226667pt;}
.y7e{bottom:254.426667pt;}
.y38{bottom:258.586667pt;}
.y7d{bottom:269.786667pt;}
.y37{bottom:273.946667pt;}
.y7c{bottom:285.146667pt;}
.y36{bottom:289.306667pt;}
.y7b{bottom:300.506667pt;}
.y35{bottom:304.506667pt;}
.y7a{bottom:315.706667pt;}
.y34{bottom:319.866667pt;}
.y78{bottom:328.506667pt;}
.y33{bottom:335.226667pt;}
.y79{bottom:344.506667pt;}
.y32{bottom:350.586667pt;}
.y77{bottom:360.506667pt;}
.y31{bottom:365.946667pt;}
.y76{bottom:376.506667pt;}
.y30{bottom:381.306667pt;}
.y75{bottom:392.506667pt;}
.y2f{bottom:396.506667pt;}
.y74{bottom:408.546667pt;}
.y2e{bottom:411.906667pt;}
.y72{bottom:424.546667pt;}
.y2d{bottom:427.266667pt;}
.y70{bottom:440.546667pt;}
.y2c{bottom:442.626667pt;}
.y6f{bottom:456.386667pt;}
.y2b{bottom:457.986667pt;}
.y6e{bottom:472.386667pt;}
.y2a{bottom:473.186667pt;}
.y29{bottom:488.546667pt;}
.y28{bottom:503.906667pt;}
.y6d{bottom:507.106667pt;}
.y27{bottom:519.266667pt;}
.y6c{bottom:522.466667pt;}
.y26{bottom:534.626667pt;}
.y6b{bottom:537.826667pt;}
.y25{bottom:549.986667pt;}
.y6a{bottom:553.186667pt;}
.y24{bottom:565.186667pt;}
.y69{bottom:568.066667pt;}
.y23{bottom:580.546667pt;}
.y68{bottom:583.746667pt;}
.y22{bottom:595.906667pt;}
.y67{bottom:599.106667pt;}
.y21{bottom:611.266667pt;}
.y66{bottom:614.493333pt;}
.y20{bottom:626.653333pt;}
.y65{bottom:629.853333pt;}
.y1f{bottom:641.693333pt;}
.y64{bottom:645.213333pt;}
.y1e{bottom:657.213333pt;}
.y63{bottom:660.413333pt;}
.y1d{bottom:672.573333pt;}
.y62{bottom:675.773333pt;}
.y1c{bottom:687.933333pt;}
.y61{bottom:691.133333pt;}
.y1b{bottom:703.293333pt;}
.y5f{bottom:703.773333pt;}
.y1a{bottom:718.653333pt;}
.y60{bottom:719.773333pt;}
.y19{bottom:734.013333pt;}
.y5e{bottom:735.773333pt;}
.y18{bottom:749.213333pt;}
.y5d{bottom:751.773333pt;}
.y17{bottom:764.573333pt;}
.y5c{bottom:767.773333pt;}
.y16{bottom:779.933333pt;}
.y5b{bottom:783.773333pt;}
.y15{bottom:795.293333pt;}
.y59{bottom:799.773333pt;}
.y14{bottom:810.653333pt;}
.y57{bottom:815.773333pt;}
.y13{bottom:825.893333pt;}
.y55{bottom:831.813333pt;}
.y90{bottom:836.453333pt;}
.y12{bottom:841.253333pt;}
.y51{bottom:847.813333pt;}
.y8f{bottom:851.813333pt;}
.y11{bottom:856.293333pt;}
.y8e{bottom:867.173333pt;}
.y10{bottom:872.613333pt;}
.y50{bottom:882.533333pt;}
.yf{bottom:887.973333pt;}
.y4f{bottom:897.893333pt;}
.ye{bottom:903.333333pt;}
.y4e{bottom:913.093333pt;}
.yd{bottom:918.693333pt;}
.y4d{bottom:928.453333pt;}
.yc{bottom:933.893333pt;}
.y4c{bottom:943.493333pt;}
.y8d{bottom:943.813333pt;}
.yb{bottom:949.253333pt;}
.y4b{bottom:958.853333pt;}
.y8c{bottom:959.173333pt;}
.ya{bottom:965.253333pt;}
.y4a{bottom:974.533333pt;}
.y9{bottom:980.613333pt;}
.y49{bottom:989.893333pt;}
.y8{bottom:996.293333pt;}
.y48{bottom:1005.093333pt;}
.y7{bottom:1014.693333pt;}
.y47{bottom:1020.480000pt;}
.y6{bottom:1033.120000pt;}
.y46{bottom:1035.840000pt;}
.y3{bottom:1050.880000pt;}
.y2{bottom:1066.240000pt;}
.y1{bottom:1081.440000pt;}
.he{height:15.200000pt;}
.h9{height:15.360000pt;}
.ha{height:15.392000pt;}
.h8{height:30.720000pt;}
.hf{height:31.200000pt;}
.hc{height:31.360000pt;}
.hb{height:31.392000pt;}
.h7{height:37.090625pt;}
.hd{height:37.479688pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h10{height:54.598989pt;}
.h3{height:62.812500pt;}
.h4{height:64.500000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:51.232000pt;}
.wb{width:69.952000pt;}
.w2{width:70.112000pt;}
.w10{width:70.720000pt;}
.w6{width:75.200000pt;}
.w4{width:77.600000pt;}
.w5{width:78.272000pt;}
.wd{width:80.640000pt;}
.we{width:81.792000pt;}
.wf{width:83.040000pt;}
.w8{width:87.680000pt;}
.w9{width:93.472000pt;}
.w11{width:93.952000pt;}
.wc{width:115.552000pt;}
.w3{width:122.432000pt;}
.w12{width:651.680000pt;}
.wa{width:660.640000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.880000pt;}
.x21{left:9.760000pt;}
.x19{left:12.160000pt;}
.x13{left:13.120000pt;}
.x1b{left:14.560000pt;}
.x16{left:16.480000pt;}
.x2f{left:17.920000pt;}
.x29{left:18.880000pt;}
.x17{left:19.840000pt;}
.x1f{left:20.800000pt;}
.x11{left:22.912000pt;}
.x25{left:25.920000pt;}
.x1e{left:27.520000pt;}
.x2a{left:28.800000pt;}
.x34{left:29.760000pt;}
.x22{left:31.040000pt;}
.x26{left:32.160000pt;}
.x27{left:34.880000pt;}
.x2d{left:38.880000pt;}
.x14{left:42.080000pt;}
.x24{left:45.920000pt;}
.x5{left:48.000000pt;}
.x28{left:49.280000pt;}
.xe{left:56.000000pt;}
.x10{left:66.720000pt;}
.x2b{left:71.200000pt;}
.x35{left:96.032000pt;}
.x12{left:137.626667pt;}
.x2c{left:141.786667pt;}
.xd{left:162.106667pt;}
.x6{left:170.266667pt;}
.xc{left:182.906667pt;}
.xb{left:185.946667pt;}
.xa{left:197.466667pt;}
.x9{left:205.626667pt;}
.x2{left:210.426667pt;}
.x3{left:233.026667pt;}
.x2e{left:258.146667pt;}
.x15{left:260.706667pt;}
.x7{left:264.226667pt;}
.x1{left:288.386667pt;}
.x8{left:336.386667pt;}
.x18{left:338.946667pt;}
.xf{left:377.346667pt;}
.x1a{left:417.853333pt;}
.x30{left:421.853333pt;}
.x1c{left:493.693333pt;}
.x31{left:505.693333pt;}
.x1d{left:545.573333pt;}
.x32{left:557.573333pt;}
.x33{left:628.933333pt;}
.x20{left:633.893333pt;}
.x4{left:730.080000pt;}
}




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