
    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_4ab0b675e2d15a505962e397.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.386719;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_1fc54ab0ba3df21a7386c74b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_35eb527af26173533666e81e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.325195;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_9004888adebce7871a86fa4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.152344;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_7014e7f2e80fe523bb0641e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.083984;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_dd64802eb57ca7eaca01ec9b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.325195;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_2a979ea1b725da0a27d08c84.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.152344;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:20.880000px;}
.ls8{letter-spacing:-0.453000px;}
.ls9{letter-spacing:-0.313200px;}
.lsf{letter-spacing:-0.276000px;}
.ls11{letter-spacing:-0.093000px;}
.ls18{letter-spacing:-0.065400px;}
.lsb{letter-spacing:-0.060600px;}
.lse{letter-spacing:-0.046800px;}
.ls10{letter-spacing:-0.043920px;}
.ls17{letter-spacing:-0.027720px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024120px;}
.ls0{letter-spacing:0.046800px;}
.lsd{letter-spacing:0.054000px;}
.lsa{letter-spacing:0.078600px;}
.ls1{letter-spacing:0.083880px;}
.ls6{letter-spacing:0.084000px;}
.ls13{letter-spacing:0.096600px;}
.ls5{letter-spacing:0.100080px;}
.ls12{letter-spacing:0.115800px;}
.ls14{letter-spacing:0.124920px;}
.lsc{letter-spacing:0.137400px;}
.ls3{letter-spacing:0.317880px;}
.ls16{letter-spacing:0.497400px;}
.ls15{letter-spacing:2.620080px;}
.ls4{letter-spacing:14.483880px;}
.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:-32.292000px;}
.ws6{word-spacing:-28.818480px;}
.ws5{word-spacing:-28.739880px;}
.ws12{word-spacing:-26.026680px;}
.ws2{word-spacing:-25.778880px;}
.ws9{word-spacing:-20.917320px;}
.ws8{word-spacing:-20.779920px;}
.ws11{word-spacing:-18.072480px;}
.ws4{word-spacing:-18.022680px;}
.ws1{word-spacing:-17.975880px;}
.ws10{word-spacing:-17.948160px;}
.wsd{word-spacing:-17.931960px;}
.ws3{word-spacing:-17.662680px;}
.wsf{word-spacing:-14.813520px;}
.wsb{word-spacing:-14.370120px;}
.wsa{word-spacing:-14.316120px;}
.wsc{word-spacing:-14.269320px;}
.ws7{word-spacing:-14.255520px;}
.wse{word-spacing:0.000000px;}
._1{margin-left:-1.022040px;}
._2{width:1.079280px;}
._b{width:2.323560px;}
._c{width:3.782520px;}
._11{width:4.809600px;}
._10{width:5.831640px;}
._a{width:7.266360px;}
._9{width:8.331120px;}
._6{width:10.006920px;}
._4{width:11.145360px;}
._3{width:12.332520px;}
._8{width:14.116320px;}
._7{width:15.310080px;}
._5{width:16.422840px;}
._12{width:23.340240px;}
._13{width:24.553440px;}
._14{width:38.155080px;}
._15{width:39.339600px;}
._f{width:139.082400px;}
._d{width:163.162800px;}
._e{width:198.203880px;}
._0{width:382.344120px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:11.880000px;}
.fs7{font-size:18.000000px;}
.fs8{font-size:24.120000px;}
.fs6{font-size:29.880000px;}
.fs3{font-size:36.000000px;}
.fs2{font-size:47.880000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y66{bottom:3.510000px;}
.y68{bottom:5.220000px;}
.y9{bottom:7.830000px;}
.y3{bottom:11.250000px;}
.y65{bottom:20.250000px;}
.y2{bottom:27.720000px;}
.y64{bottom:37.080000px;}
.y8{bottom:42.030000px;}
.yc{bottom:57.240000px;}
.y7{bottom:63.000000px;}
.yb{bottom:77.940000px;}
.y6{bottom:82.080000px;}
.y4{bottom:92.160000px;}
.y5{bottom:95.670000px;}
.y63{bottom:107.910000px;}
.y41{bottom:112.860000px;}
.y40{bottom:133.560000px;}
.y3f{bottom:153.630000px;}
.y3e{bottom:166.770000px;}
.y62{bottom:169.110000px;}
.y3d{bottom:192.960000px;}
.y3c{bottom:216.300000px;}
.y3b{bottom:234.120000px;}
.y3a{bottom:253.920000px;}
.y39{bottom:267.150000px;}
.y38{bottom:293.250000px;}
.y37{bottom:316.650000px;}
.y36{bottom:334.200000px;}
.y35{bottom:355.170000px;}
.y34{bottom:376.050000px;}
.y33{bottom:396.930000px;}
.y32{bottom:417.900000px;}
.y31{bottom:438.780000px;}
.y30{bottom:459.840000px;}
.y2f{bottom:480.720000px;}
.y2e{bottom:501.690000px;}
.y2d{bottom:522.390000px;}
.y61{bottom:534.450000px;}
.y2c{bottom:543.270000px;}
.y60{bottom:555.420000px;}
.y2b{bottom:564.330000px;}
.y5f{bottom:576.300000px;}
.y2a{bottom:581.610000px;}
.y29{bottom:587.460000px;}
.y5e{bottom:597.180000px;}
.y28{bottom:599.970000px;}
.y27{bottom:611.760000px;}
.y5d{bottom:618.060000px;}
.y26{bottom:621.930000px;}
.y25{bottom:638.700000px;}
.y5c{bottom:639.060000px;}
.y24{bottom:653.640000px;}
.y5b{bottom:659.940000px;}
.y23{bottom:663.720000px;}
.y22{bottom:678.750000px;}
.y5a{bottom:680.820000px;}
.y21{bottom:688.740000px;}
.y59{bottom:701.700000px;}
.y20{bottom:705.570000px;}
.y1f{bottom:722.220000px;}
.y58{bottom:722.670000px;}
.y1e{bottom:738.960000px;}
.y57{bottom:743.550000px;}
.y1d{bottom:755.790000px;}
.y56{bottom:764.430000px;}
.y1c{bottom:772.350000px;}
.y55{bottom:785.310000px;}
.y1b{bottom:789.180000px;}
.y67{bottom:793.320000px;}
.y1a{bottom:805.830000px;}
.y54{bottom:806.280000px;}
.y19{bottom:822.660000px;}
.y53{bottom:827.160000px;}
.y18{bottom:839.310000px;}
.y52{bottom:848.040000px;}
.y17{bottom:856.050000px;}
.y51{bottom:869.190000px;}
.y16{bottom:872.790000px;}
.y50{bottom:889.890000px;}
.y15{bottom:890.340000px;}
.y14{bottom:909.420000px;}
.y4f{bottom:909.960000px;}
.y13{bottom:922.920000px;}
.y4e{bottom:927.690000px;}
.y12{bottom:944.880000px;}
.y4d{bottom:948.390000px;}
.y11{bottom:958.020000px;}
.y4c{bottom:969.270000px;}
.y10{bottom:981.420000px;}
.y4b{bottom:990.240000px;}
.yf{bottom:1001.670000px;}
.y4a{bottom:1010.220000px;}
.y49{bottom:1028.040000px;}
.ye{bottom:1035.060000px;}
.y48{bottom:1048.920000px;}
.yd{bottom:1065.060000px;}
.y47{bottom:1068.840000px;}
.ya{bottom:1082.340000px;}
.y46{bottom:1086.570000px;}
.y1{bottom:1098.900000px;}
.y45{bottom:1107.450000px;}
.y44{bottom:1128.240000px;}
.y43{bottom:1148.760000px;}
.y42{bottom:1172.610000px;}
.he{height:13.011152px;}
.h12{height:25.020000px;}
.hd{height:26.416582px;}
.hc{height:32.725020px;}
.h7{height:39.427734px;}
.h6{height:49.469766px;}
.h11{height:50.128500px;}
.h5{height:50.273438px;}
.hf{height:52.223379px;}
.h9{height:52.438887px;}
.h3{height:65.844316px;}
.hb{height:78.855469px;}
.ha{height:105.272051px;}
.h2{height:108.717000px;}
.h4{height:108.720000px;}
.h8{height:111.585938px;}
.h10{height:656.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:33.750000px;}
.w3{width:42.570000px;}
.w2{width:337.740000px;}
.w4{width:367.320000px;}
.w5{width:438.450000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x16{left:10.800000px;}
.x9{left:13.050000px;}
.x3{left:20.340000px;}
.x1{left:72.720000px;}
.xa{left:80.820000px;}
.xd{left:98.820000px;}
.x8{left:103.410000px;}
.x13{left:122.520000px;}
.x11{left:133.950000px;}
.x2{left:174.630000px;}
.x14{left:222.330000px;}
.x17{left:233.940000px;}
.x10{left:252.030000px;}
.x7{left:259.680000px;}
.x12{left:295.770000px;}
.xf{left:345.360000px;}
.x4{left:410.460000px;}
.xe{left:422.610000px;}
.x15{left:427.650000px;}
.xc{left:446.550000px;}
.x6{left:453.030000px;}
.xb{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.402667pt;}
.ls9{letter-spacing:-0.278400pt;}
.lsf{letter-spacing:-0.245333pt;}
.ls11{letter-spacing:-0.082667pt;}
.ls18{letter-spacing:-0.058133pt;}
.lsb{letter-spacing:-0.053867pt;}
.lse{letter-spacing:-0.041600pt;}
.ls10{letter-spacing:-0.039040pt;}
.ls17{letter-spacing:-0.024640pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021440pt;}
.ls0{letter-spacing:0.041600pt;}
.lsd{letter-spacing:0.048000pt;}
.lsa{letter-spacing:0.069867pt;}
.ls1{letter-spacing:0.074560pt;}
.ls6{letter-spacing:0.074667pt;}
.ls13{letter-spacing:0.085867pt;}
.ls5{letter-spacing:0.088960pt;}
.ls12{letter-spacing:0.102933pt;}
.ls14{letter-spacing:0.111040pt;}
.lsc{letter-spacing:0.122133pt;}
.ls3{letter-spacing:0.282560pt;}
.ls16{letter-spacing:0.442133pt;}
.ls15{letter-spacing:2.328960pt;}
.ls4{letter-spacing:12.874560pt;}
.ws0{word-spacing:-28.704000pt;}
.ws6{word-spacing:-25.616427pt;}
.ws5{word-spacing:-25.546560pt;}
.ws12{word-spacing:-23.134827pt;}
.ws2{word-spacing:-22.914560pt;}
.ws9{word-spacing:-18.593173pt;}
.ws8{word-spacing:-18.471040pt;}
.ws11{word-spacing:-16.064427pt;}
.ws4{word-spacing:-16.020160pt;}
.ws1{word-spacing:-15.978560pt;}
.ws10{word-spacing:-15.953920pt;}
.wsd{word-spacing:-15.939520pt;}
.ws3{word-spacing:-15.700160pt;}
.wsf{word-spacing:-13.167573pt;}
.wsb{word-spacing:-12.773440pt;}
.wsa{word-spacing:-12.725440pt;}
.wsc{word-spacing:-12.683840pt;}
.ws7{word-spacing:-12.671573pt;}
.wse{word-spacing:0.000000pt;}
._1{margin-left:-0.908480pt;}
._2{width:0.959360pt;}
._b{width:2.065387pt;}
._c{width:3.362240pt;}
._11{width:4.275200pt;}
._10{width:5.183680pt;}
._a{width:6.458987pt;}
._9{width:7.405440pt;}
._6{width:8.895040pt;}
._4{width:9.906987pt;}
._3{width:10.962240pt;}
._8{width:12.547840pt;}
._7{width:13.608960pt;}
._5{width:14.598080pt;}
._12{width:20.746880pt;}
._13{width:21.825280pt;}
._14{width:33.915627pt;}
._15{width:34.968533pt;}
._f{width:123.628800pt;}
._d{width:145.033600pt;}
._e{width:176.181227pt;}
._0{width:339.861440pt;}
.fs9{font-size:10.560000pt;}
.fs7{font-size:16.000000pt;}
.fs8{font-size:21.440000pt;}
.fs6{font-size:26.560000pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:42.560000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:3.120000pt;}
.y68{bottom:4.640000pt;}
.y9{bottom:6.960000pt;}
.y3{bottom:10.000000pt;}
.y65{bottom:18.000000pt;}
.y2{bottom:24.640000pt;}
.y64{bottom:32.960000pt;}
.y8{bottom:37.360000pt;}
.yc{bottom:50.880000pt;}
.y7{bottom:56.000000pt;}
.yb{bottom:69.280000pt;}
.y6{bottom:72.960000pt;}
.y4{bottom:81.920000pt;}
.y5{bottom:85.040000pt;}
.y63{bottom:95.920000pt;}
.y41{bottom:100.320000pt;}
.y40{bottom:118.720000pt;}
.y3f{bottom:136.560000pt;}
.y3e{bottom:148.240000pt;}
.y62{bottom:150.320000pt;}
.y3d{bottom:171.520000pt;}
.y3c{bottom:192.266667pt;}
.y3b{bottom:208.106667pt;}
.y3a{bottom:225.706667pt;}
.y39{bottom:237.466667pt;}
.y38{bottom:260.666667pt;}
.y37{bottom:281.466667pt;}
.y36{bottom:297.066667pt;}
.y35{bottom:315.706667pt;}
.y34{bottom:334.266667pt;}
.y33{bottom:352.826667pt;}
.y32{bottom:371.466667pt;}
.y31{bottom:390.026667pt;}
.y30{bottom:408.746667pt;}
.y2f{bottom:427.306667pt;}
.y2e{bottom:445.946667pt;}
.y2d{bottom:464.346667pt;}
.y61{bottom:475.066667pt;}
.y2c{bottom:482.906667pt;}
.y60{bottom:493.706667pt;}
.y2b{bottom:501.626667pt;}
.y5f{bottom:512.266667pt;}
.y2a{bottom:516.986667pt;}
.y29{bottom:522.186667pt;}
.y5e{bottom:530.826667pt;}
.y28{bottom:533.306667pt;}
.y27{bottom:543.786667pt;}
.y5d{bottom:549.386667pt;}
.y26{bottom:552.826667pt;}
.y25{bottom:567.733333pt;}
.y5c{bottom:568.053333pt;}
.y24{bottom:581.013333pt;}
.y5b{bottom:586.613333pt;}
.y23{bottom:589.973333pt;}
.y22{bottom:603.333333pt;}
.y5a{bottom:605.173333pt;}
.y21{bottom:612.213333pt;}
.y59{bottom:623.733333pt;}
.y20{bottom:627.173333pt;}
.y1f{bottom:641.973333pt;}
.y58{bottom:642.373333pt;}
.y1e{bottom:656.853333pt;}
.y57{bottom:660.933333pt;}
.y1d{bottom:671.813333pt;}
.y56{bottom:679.493333pt;}
.y1c{bottom:686.533333pt;}
.y55{bottom:698.053333pt;}
.y1b{bottom:701.493333pt;}
.y67{bottom:705.173333pt;}
.y1a{bottom:716.293333pt;}
.y54{bottom:716.693333pt;}
.y19{bottom:731.253333pt;}
.y53{bottom:735.253333pt;}
.y18{bottom:746.053333pt;}
.y52{bottom:753.813333pt;}
.y17{bottom:760.933333pt;}
.y51{bottom:772.613333pt;}
.y16{bottom:775.813333pt;}
.y50{bottom:791.013333pt;}
.y15{bottom:791.413333pt;}
.y14{bottom:808.373333pt;}
.y4f{bottom:808.853333pt;}
.y13{bottom:820.373333pt;}
.y4e{bottom:824.613333pt;}
.y12{bottom:839.893333pt;}
.y4d{bottom:843.013333pt;}
.y11{bottom:851.573333pt;}
.y4c{bottom:861.573333pt;}
.y10{bottom:872.373333pt;}
.y4b{bottom:880.213333pt;}
.yf{bottom:890.373333pt;}
.y4a{bottom:897.973333pt;}
.y49{bottom:913.813333pt;}
.ye{bottom:920.053333pt;}
.y48{bottom:932.373333pt;}
.yd{bottom:946.720000pt;}
.y47{bottom:950.080000pt;}
.ya{bottom:962.080000pt;}
.y46{bottom:965.840000pt;}
.y1{bottom:976.800000pt;}
.y45{bottom:984.400000pt;}
.y44{bottom:1002.880000pt;}
.y43{bottom:1021.120000pt;}
.y42{bottom:1042.320000pt;}
.he{height:11.565469pt;}
.h12{height:22.240000pt;}
.hd{height:23.481406pt;}
.hc{height:29.088906pt;}
.h7{height:35.046875pt;}
.h6{height:43.973125pt;}
.h11{height:44.558667pt;}
.h5{height:44.687500pt;}
.hf{height:46.420781pt;}
.h9{height:46.612344pt;}
.h3{height:58.528281pt;}
.hb{height:70.093750pt;}
.ha{height:93.575156pt;}
.h2{height:96.637333pt;}
.h4{height:96.640000pt;}
.h8{height:99.187500pt;}
.h10{height:583.973333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:30.000000pt;}
.w3{width:37.840000pt;}
.w2{width:300.213333pt;}
.w4{width:326.506667pt;}
.w5{width:389.733333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x16{left:9.600000pt;}
.x9{left:11.600000pt;}
.x3{left:18.080000pt;}
.x1{left:64.640000pt;}
.xa{left:71.840000pt;}
.xd{left:87.840000pt;}
.x8{left:91.920000pt;}
.x13{left:108.906667pt;}
.x11{left:119.066667pt;}
.x2{left:155.226667pt;}
.x14{left:197.626667pt;}
.x17{left:207.946667pt;}
.x10{left:224.026667pt;}
.x7{left:230.826667pt;}
.x12{left:262.906667pt;}
.xf{left:306.986667pt;}
.x4{left:364.853333pt;}
.xe{left:375.653333pt;}
.x15{left:380.133333pt;}
.xc{left:396.933333pt;}
.x6{left:402.693333pt;}
.xb{left:698.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; }
  