
    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_35be810bffe9a46801cab42d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_e5eb6d4277fd654e60b26f9f.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_0a7db720344c46a9a5824e9c.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_a2a6456982187d9f7717096f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4b487241e622132748f56e7c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_cf4dc10706932cdc03779680.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_38ca2a876b7be2da695a86e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a5d3b01ae013d5a988198c6b.woff2')format("woff");}.ff9{font-family:ff9;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);}
.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;}
.ls7{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.027360px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.864000px;}
.lse{letter-spacing:2.160000px;}
.lsc{letter-spacing:4.320000px;}
.ls4{letter-spacing:7.200000px;}
.lsb{letter-spacing:10.260000px;}
.ls10{letter-spacing:18.000000px;}
.ls2{letter-spacing:28.980000px;}
.lsf{letter-spacing:172.002720px;}
.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:-66.496200px;}
.ws8{word-spacing:-59.760000px;}
.wsa{word-spacing:-23.940000px;}
.ws9{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-14.220000px;}
.ws7{word-spacing:-14.192640px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-9.619200px;}
._4{margin-left:-7.513200px;}
._3{margin-left:-6.382800px;}
._1{margin-left:-4.623120px;}
._11{margin-left:-3.008880px;}
._0{margin-left:-1.247760px;}
._5{width:1.355520px;}
._9{width:2.390880px;}
._14{width:3.394080px;}
._a{width:4.407120px;}
._b{width:6.287520px;}
._8{width:7.488000px;}
._12{width:8.928000px;}
._f{width:10.872000px;}
._e{width:12.263760px;}
._6{width:13.680000px;}
._7{width:15.324000px;}
._10{width:16.632000px;}
._c{width:19.800000px;}
._d{width:20.892480px;}
._1b{width:22.680000px;}
._1c{width:23.721360px;}
._1e{width:25.104000px;}
._17{width:27.144000px;}
._18{width:28.656000px;}
._1f{width:29.689200px;}
._13{width:30.764640px;}
._20{width:31.907040px;}
._21{width:33.696000px;}
._19{width:34.992000px;}
._1a{width:36.228480px;}
._22{width:37.958400px;}
._23{width:39.415680px;}
._1d{width:43.200000px;}
._16{width:50.832000px;}
._15{width:53.136000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(47,85,151);}
.fs0{font-size:48.240000px;}
.fs4{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.420000px;}
.y3{bottom:77.616000px;}
.y72{bottom:110.016000px;}
.y23{bottom:112.716000px;}
.y69{bottom:123.156000px;}
.y4a{bottom:126.756000px;}
.y7e{bottom:128.196000px;}
.y71{bottom:130.716000px;}
.y40{bottom:133.416000px;}
.y22{bottom:143.856000px;}
.y70{bottom:151.410000px;}
.y68{bottom:154.110000px;}
.y49{bottom:157.890000px;}
.y82{bottom:158.250000px;}
.y7d{bottom:159.330000px;}
.y3f{bottom:164.550000px;}
.y6f{bottom:172.110000px;}
.y81{bottom:172.650000px;}
.y21{bottom:174.810000px;}
.y67{bottom:185.070000px;}
.y48{bottom:188.850000px;}
.y7c{bottom:190.290000px;}
.y6e{bottom:192.810000px;}
.y3e{bottom:195.510000px;}
.y6d{bottom:199.650000px;}
.y20{bottom:205.770000px;}
.y6c{bottom:214.050000px;}
.y66{bottom:216.210000px;}
.y47{bottom:219.990000px;}
.y7b{bottom:221.430000px;}
.y3d{bottom:226.470000px;}
.y1f{bottom:236.910000px;}
.y65{bottom:247.170000px;}
.y46{bottom:250.950000px;}
.y7a{bottom:252.390000px;}
.y3c{bottom:257.610000px;}
.y1e{bottom:267.870000px;}
.y64{bottom:278.310000px;}
.y45{bottom:282.090000px;}
.y79{bottom:283.530000px;}
.y3b{bottom:288.570000px;}
.y1d{bottom:299.010000px;}
.y63{bottom:309.270000px;}
.y78{bottom:314.490000px;}
.y3a{bottom:319.755000px;}
.y44{bottom:323.895000px;}
.y1c{bottom:330.015000px;}
.y62{bottom:340.455000px;}
.y77{bottom:345.675000px;}
.y80{bottom:347.835000px;}
.y39{bottom:350.715000px;}
.y1b{bottom:361.155000px;}
.y43{bottom:364.215000px;}
.y61{bottom:371.415000px;}
.y87{bottom:376.635000px;}
.y76{bottom:378.975000px;}
.y38{bottom:381.855000px;}
.y1a{bottom:392.115000px;}
.y60{bottom:402.555000px;}
.y42{bottom:404.715000px;}
.y86{bottom:407.775000px;}
.y37{bottom:412.815000px;}
.y19{bottom:423.255000px;}
.y75{bottom:425.595000px;}
.y5f{bottom:433.515000px;}
.y6a{bottom:438.375000px;}
.y85{bottom:438.735000px;}
.y36{bottom:443.955000px;}
.y41{bottom:445.215000px;}
.y7f{bottom:450.795000px;}
.y18{bottom:454.215000px;}
.y74{bottom:461.775000px;}
.y5e{bottom:464.655000px;}
.y84{bottom:472.035000px;}
.y35{bottom:474.915000px;}
.y17{bottom:485.355000px;}
.y5d{bottom:495.615000px;}
.y34{bottom:506.055000px;}
.y16{bottom:516.315000px;}
.y5c{bottom:526.755000px;}
.y33{bottom:537.015000px;}
.y8a{bottom:541.875000px;}
.y15{bottom:547.455000px;}
.y5b{bottom:557.715000px;}
.y32{bottom:568.185000px;}
.y83{bottom:575.025000px;}
.y14{bottom:578.445000px;}
.y89{bottom:583.305000px;}
.y5a{bottom:588.885000px;}
.y31{bottom:599.145000px;}
.y13{bottom:609.585000px;}
.y59{bottom:619.845000px;}
.y88{bottom:624.705000px;}
.y30{bottom:630.285000px;}
.y12{bottom:640.545000px;}
.y58{bottom:650.985000px;}
.y2f{bottom:661.245000px;}
.y11{bottom:671.685000px;}
.y57{bottom:681.945000px;}
.y2e{bottom:692.385000px;}
.y10{bottom:702.645000px;}
.y56{bottom:713.085000px;}
.y2d{bottom:723.345000px;}
.yf{bottom:733.785000px;}
.y55{bottom:744.045000px;}
.y8b{bottom:748.905000px;}
.y2c{bottom:754.485000px;}
.ye{bottom:764.745000px;}
.y54{bottom:775.185000px;}
.y2b{bottom:785.445000px;}
.yd{bottom:795.885000px;}
.y53{bottom:806.145000px;}
.y73{bottom:811.005000px;}
.y2a{bottom:816.585000px;}
.y6b{bottom:823.470000px;}
.yc{bottom:826.890000px;}
.y52{bottom:837.330000px;}
.y29{bottom:847.590000px;}
.yb{bottom:858.030000px;}
.y51{bottom:868.290000px;}
.y28{bottom:878.730000px;}
.ya{bottom:891.330000px;}
.y50{bottom:899.430000px;}
.y27{bottom:909.690000px;}
.y9{bottom:927.510000px;}
.y4f{bottom:930.390000px;}
.y26{bottom:940.830000px;}
.y4e{bottom:961.530000px;}
.y8{bottom:963.690000px;}
.y25{bottom:971.790000px;}
.y4d{bottom:992.490000px;}
.y7{bottom:1000.050000px;}
.y24{bottom:1002.930000px;}
.y4c{bottom:1023.630000px;}
.y6{bottom:1033.890000px;}
.y4b{bottom:1059.450000px;}
.y5{bottom:1065.030000px;}
.y2{bottom:1105.380000px;}
.y1{bottom:1123.560000px;}
.h1{height:47.344922px;}
.h5{height:64.546875px;}
.h7{height:65.010937px;}
.h2{height:65.884219px;}
.h3{height:70.664062px;}
.h6{height:74.953125px;}
.ha{height:85.052461px;}
.h4{height:87.695156px;}
.h9{height:93.983203px;}
.h8{height:99.687656px;}
.h0{height:1188.000000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:127.655986px;}
.x10{left:133.775986px;}
.x7{left:167.969986px;}
.x1a{left:178.409986px;}
.x1d{left:180.749986px;}
.x8{left:197.129986px;}
.x9{left:199.289986px;}
.xb{left:223.769986px;}
.x12{left:275.069986px;}
.x13{left:283.709986px;}
.x16{left:316.694986px;}
.xf{left:343.694986px;}
.x11{left:354.854986px;}
.x19{left:361.514986px;}
.xa{left:380.594986px;}
.xc{left:383.114986px;}
.x1c{left:389.594986px;}
.x1b{left:407.054986px;}
.x17{left:427.574973px;}
.x18{left:433.694986px;}
.x6{left:459.074986px;}
.xd{left:522.644973px;}
.xe{left:528.764986px;}
.x1{left:614.444986px;}
.x5{left:730.589986px;}
.x14{left:746.789973px;}
.x15{left:752.909986px;}
.x4{left:759.029986px;}
.x3{left:773.789986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.024320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.768000pt;}
.lse{letter-spacing:1.920000pt;}
.lsc{letter-spacing:3.840000pt;}
.ls4{letter-spacing:6.400000pt;}
.lsb{letter-spacing:9.120000pt;}
.ls10{letter-spacing:16.000000pt;}
.ls2{letter-spacing:25.760000pt;}
.lsf{letter-spacing:152.891307pt;}
.ws0{word-spacing:-59.107733pt;}
.ws8{word-spacing:-53.120000pt;}
.wsa{word-spacing:-21.280000pt;}
.ws9{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.615680pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-8.550400pt;}
._4{margin-left:-6.678400pt;}
._3{margin-left:-5.673600pt;}
._1{margin-left:-4.109440pt;}
._11{margin-left:-2.674560pt;}
._0{margin-left:-1.109120pt;}
._5{width:1.204907pt;}
._9{width:2.125227pt;}
._14{width:3.016960pt;}
._a{width:3.917440pt;}
._b{width:5.588907pt;}
._8{width:6.656000pt;}
._12{width:7.936000pt;}
._f{width:9.664000pt;}
._e{width:10.901120pt;}
._6{width:12.160000pt;}
._7{width:13.621333pt;}
._10{width:14.784000pt;}
._c{width:17.600000pt;}
._d{width:18.571093pt;}
._1b{width:20.160000pt;}
._1c{width:21.085653pt;}
._1e{width:22.314667pt;}
._17{width:24.128000pt;}
._18{width:25.472000pt;}
._1f{width:26.390400pt;}
._13{width:27.346347pt;}
._20{width:28.361813pt;}
._21{width:29.952000pt;}
._19{width:31.104000pt;}
._1a{width:32.203093pt;}
._22{width:33.740800pt;}
._23{width:35.036160pt;}
._1d{width:38.400000pt;}
._16{width:45.184000pt;}
._15{width:47.232000pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.040000pt;}
.y3{bottom:68.992000pt;}
.y72{bottom:97.792000pt;}
.y23{bottom:100.192000pt;}
.y69{bottom:109.472000pt;}
.y4a{bottom:112.672000pt;}
.y7e{bottom:113.952000pt;}
.y71{bottom:116.192000pt;}
.y40{bottom:118.592000pt;}
.y22{bottom:127.872000pt;}
.y70{bottom:134.586667pt;}
.y68{bottom:136.986667pt;}
.y49{bottom:140.346667pt;}
.y82{bottom:140.666667pt;}
.y7d{bottom:141.626667pt;}
.y3f{bottom:146.266667pt;}
.y6f{bottom:152.986667pt;}
.y81{bottom:153.466667pt;}
.y21{bottom:155.386667pt;}
.y67{bottom:164.506667pt;}
.y48{bottom:167.866667pt;}
.y7c{bottom:169.146667pt;}
.y6e{bottom:171.386667pt;}
.y3e{bottom:173.786667pt;}
.y6d{bottom:177.466667pt;}
.y20{bottom:182.906667pt;}
.y6c{bottom:190.266667pt;}
.y66{bottom:192.186667pt;}
.y47{bottom:195.546667pt;}
.y7b{bottom:196.826667pt;}
.y3d{bottom:201.306667pt;}
.y1f{bottom:210.586667pt;}
.y65{bottom:219.706667pt;}
.y46{bottom:223.066667pt;}
.y7a{bottom:224.346667pt;}
.y3c{bottom:228.986667pt;}
.y1e{bottom:238.106667pt;}
.y64{bottom:247.386667pt;}
.y45{bottom:250.746667pt;}
.y79{bottom:252.026667pt;}
.y3b{bottom:256.506667pt;}
.y1d{bottom:265.786667pt;}
.y63{bottom:274.906667pt;}
.y78{bottom:279.546667pt;}
.y3a{bottom:284.226667pt;}
.y44{bottom:287.906667pt;}
.y1c{bottom:293.346667pt;}
.y62{bottom:302.626667pt;}
.y77{bottom:307.266667pt;}
.y80{bottom:309.186667pt;}
.y39{bottom:311.746667pt;}
.y1b{bottom:321.026667pt;}
.y43{bottom:323.746667pt;}
.y61{bottom:330.146667pt;}
.y87{bottom:334.786667pt;}
.y76{bottom:336.866667pt;}
.y38{bottom:339.426667pt;}
.y1a{bottom:348.546667pt;}
.y60{bottom:357.826667pt;}
.y42{bottom:359.746667pt;}
.y86{bottom:362.466667pt;}
.y37{bottom:366.946667pt;}
.y19{bottom:376.226667pt;}
.y75{bottom:378.306667pt;}
.y5f{bottom:385.346667pt;}
.y6a{bottom:389.666667pt;}
.y85{bottom:389.986667pt;}
.y36{bottom:394.626667pt;}
.y41{bottom:395.746667pt;}
.y7f{bottom:400.706667pt;}
.y18{bottom:403.746667pt;}
.y74{bottom:410.466667pt;}
.y5e{bottom:413.026667pt;}
.y84{bottom:419.586667pt;}
.y35{bottom:422.146667pt;}
.y17{bottom:431.426667pt;}
.y5d{bottom:440.546667pt;}
.y34{bottom:449.826667pt;}
.y16{bottom:458.946667pt;}
.y5c{bottom:468.226667pt;}
.y33{bottom:477.346667pt;}
.y8a{bottom:481.666667pt;}
.y15{bottom:486.626667pt;}
.y5b{bottom:495.746667pt;}
.y32{bottom:505.053333pt;}
.y83{bottom:511.133333pt;}
.y14{bottom:514.173333pt;}
.y89{bottom:518.493333pt;}
.y5a{bottom:523.453333pt;}
.y31{bottom:532.573333pt;}
.y13{bottom:541.853333pt;}
.y59{bottom:550.973333pt;}
.y88{bottom:555.293333pt;}
.y30{bottom:560.253333pt;}
.y12{bottom:569.373333pt;}
.y58{bottom:578.653333pt;}
.y2f{bottom:587.773333pt;}
.y11{bottom:597.053333pt;}
.y57{bottom:606.173333pt;}
.y2e{bottom:615.453333pt;}
.y10{bottom:624.573333pt;}
.y56{bottom:633.853333pt;}
.y2d{bottom:642.973333pt;}
.yf{bottom:652.253333pt;}
.y55{bottom:661.373333pt;}
.y8b{bottom:665.693333pt;}
.y2c{bottom:670.653333pt;}
.ye{bottom:679.773333pt;}
.y54{bottom:689.053333pt;}
.y2b{bottom:698.173333pt;}
.yd{bottom:707.453333pt;}
.y53{bottom:716.573333pt;}
.y73{bottom:720.893333pt;}
.y2a{bottom:725.853333pt;}
.y6b{bottom:731.973333pt;}
.yc{bottom:735.013333pt;}
.y52{bottom:744.293333pt;}
.y29{bottom:753.413333pt;}
.yb{bottom:762.693333pt;}
.y51{bottom:771.813333pt;}
.y28{bottom:781.093333pt;}
.ya{bottom:792.293333pt;}
.y50{bottom:799.493333pt;}
.y27{bottom:808.613333pt;}
.y9{bottom:824.453333pt;}
.y4f{bottom:827.013333pt;}
.y26{bottom:836.293333pt;}
.y4e{bottom:854.693333pt;}
.y8{bottom:856.613333pt;}
.y25{bottom:863.813333pt;}
.y4d{bottom:882.213333pt;}
.y7{bottom:888.933333pt;}
.y24{bottom:891.493333pt;}
.y4c{bottom:909.893333pt;}
.y6{bottom:919.013333pt;}
.y4b{bottom:941.733333pt;}
.y5{bottom:946.693333pt;}
.y2{bottom:982.560000pt;}
.y1{bottom:998.720000pt;}
.h1{height:42.084375pt;}
.h5{height:57.375000pt;}
.h7{height:57.787500pt;}
.h2{height:58.563750pt;}
.h3{height:62.812500pt;}
.h6{height:66.625000pt;}
.ha{height:75.602187pt;}
.h4{height:77.951250pt;}
.h9{height:83.540625pt;}
.h8{height:88.611250pt;}
.h0{height:1056.000000pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x10{left:118.911988pt;}
.x7{left:149.306655pt;}
.x1a{left:158.586655pt;}
.x1d{left:160.666655pt;}
.x8{left:175.226655pt;}
.x9{left:177.146655pt;}
.xb{left:198.906655pt;}
.x12{left:244.506655pt;}
.x13{left:252.186655pt;}
.x16{left:281.506655pt;}
.xf{left:305.506655pt;}
.x11{left:315.426655pt;}
.x19{left:321.346655pt;}
.xa{left:338.306655pt;}
.xc{left:340.546655pt;}
.x1c{left:346.306655pt;}
.x1b{left:361.826655pt;}
.x17{left:380.066642pt;}
.x18{left:385.506655pt;}
.x6{left:408.066655pt;}
.xd{left:464.573309pt;}
.xe{left:470.013321pt;}
.x1{left:546.173321pt;}
.x5{left:649.413321pt;}
.x14{left:663.813309pt;}
.x15{left:669.253321pt;}
.x4{left:674.693321pt;}
.x3{left:687.813321pt;}
}




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