
    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_4762059ced415edc939f1b3f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_30af612460f9e5dbde6d63d8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5b004b92f1b17b7ad680b2dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133789;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_c09feaeb3993ac5ff1d5faeb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.148926;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9969cdaaaaab26d26bbed53c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.222168;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_ad93f582fa84990926b9a4e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.148926;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_4b8594b7efec46100e0dd59b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_afeac4873b073e15afb449b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.096680;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);}
.v5{vertical-align:-96.480000px;}
.v4{vertical-align:-10.800000px;}
.v2{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.160000px;}
.v3{vertical-align:10.800000px;}
.v6{vertical-align:14.400000px;}
.ls10{letter-spacing:-0.378600px;}
.ls9{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.341400px;}
.ls8{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018720px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.341400px;}
.lsb{letter-spacing:0.350640px;}
.lsf{letter-spacing:0.354720px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378600px;}
.lse{letter-spacing:0.522720px;}
.lsd{letter-spacing:0.720000px;}
.ls15{letter-spacing:21.221280px;}
.lsc{letter-spacing:118.421280px;}
.ls11{letter-spacing:187.716000px;}
.ls14{letter-spacing:826.536000px;}
.ls3{letter-spacing:1333.872960px;}
.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;}
}
.ws2{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.401400px;}
.ws6{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-21.041280px;}
.ws0{word-spacing:-20.718600px;}
.ws5{word-spacing:-20.700000px;}
.wsa{word-spacing:-20.681400px;}
.wsb{word-spacing:-16.560000px;}
.ws8{word-spacing:-0.084240px;}
.ws9{word-spacing:0.000000px;}
._c{margin-left:-2910.724800px;}
._e{margin-left:-2908.638960px;}
._8{margin-left:-2519.851920px;}
._16{margin-left:-1495.361520px;}
._15{margin-left:-1478.640000px;}
._10{margin-left:-982.302480px;}
._13{margin-left:-491.147280px;}
._7{margin-left:-202.372560px;}
._11{margin-left:-59.940000px;}
._14{margin-left:-48.931920px;}
._38{margin-left:-27.366720px;}
._9{margin-left:-21.818160px;}
._f{margin-left:-8.207280px;}
._37{margin-left:-6.098400px;}
._d{margin-left:-4.815840px;}
._1b{margin-left:-3.070080px;}
._0{margin-left:-1.413360px;}
._1{width:1.320960px;}
._a{width:2.382000px;}
._5{width:4.137600px;}
._4{width:5.760480px;}
._3{width:6.798000px;}
._b{width:8.339760px;}
._29{width:9.369120px;}
._2a{width:10.903920px;}
._2b{width:12.036480px;}
._6{width:14.237040px;}
._26{width:16.089840px;}
._25{width:17.184960px;}
._33{width:18.799200px;}
._32{width:19.908720px;}
._2c{width:22.276560px;}
._36{width:24.225600px;}
._27{width:25.693200px;}
._28{width:26.934240px;}
._19{width:27.967680px;}
._1a{width:29.568240px;}
._23{width:35.549280px;}
._2d{width:36.982560px;}
._2e{width:38.561280px;}
._30{width:40.672080px;}
._3a{width:42.629040px;}
._39{width:43.835760px;}
._1d{width:46.378800px;}
._1c{width:47.427120px;}
._22{width:48.812400px;}
._21{width:50.272560px;}
._24{width:52.041600px;}
._20{width:53.557920px;}
._1e{width:56.777760px;}
._1f{width:58.237920px;}
._17{width:60.250080px;}
._18{width:61.458000px;}
._35{width:72.596160px;}
._34{width:73.607040px;}
._2{width:83.200320px;}
._2f{width:109.143840px;}
._31{width:165.416160px;}
._12{width:323.100000px;}
._3b{width:843.240000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y5b{bottom:88.416000px;}
.y2c{bottom:91.656000px;}
.y5a{bottom:105.696000px;}
.y2b{bottom:115.956000px;}
.y59{bottom:122.976000px;}
.y58{bottom:128.196000px;}
.y53{bottom:134.856000px;}
.y2a{bottom:140.076000px;}
.y57{bottom:141.516000px;}
.y52{bottom:159.150000px;}
.y29{bottom:164.190000px;}
.y51{bottom:183.270000px;}
.y28{bottom:188.310000px;}
.y50{bottom:207.390000px;}
.y27{bottom:212.430000px;}
.y4f{bottom:231.510000px;}
.y26{bottom:236.550000px;}
.y56{bottom:255.630000px;}
.y25{bottom:260.670000px;}
.y4e{bottom:279.795000px;}
.y24{bottom:285.015000px;}
.y4d{bottom:303.915000px;}
.y23{bottom:309.135000px;}
.y4c{bottom:328.215000px;}
.y22{bottom:333.255000px;}
.y4b{bottom:352.335000px;}
.y21{bottom:357.375000px;}
.y55{bottom:376.455000px;}
.y20{bottom:381.495000px;}
.y4a{bottom:400.575000px;}
.y1f{bottom:405.615000px;}
.y49{bottom:424.695000px;}
.y1e{bottom:429.915000px;}
.y48{bottom:448.815000px;}
.y1d{bottom:454.035000px;}
.y47{bottom:473.115000px;}
.y1c{bottom:478.155000px;}
.y46{bottom:497.235000px;}
.y1b{bottom:502.275000px;}
.y45{bottom:521.355000px;}
.y1a{bottom:526.395000px;}
.y44{bottom:545.475000px;}
.y19{bottom:550.515000px;}
.y43{bottom:569.625000px;}
.y42{bottom:593.745000px;}
.y41{bottom:618.045000px;}
.y18{bottom:623.085000px;}
.y40{bottom:642.165000px;}
.y17{bottom:647.205000px;}
.y3f{bottom:666.285000px;}
.y16{bottom:671.325000px;}
.y3e{bottom:690.405000px;}
.y15{bottom:695.445000px;}
.y3d{bottom:714.525000px;}
.y14{bottom:719.565000px;}
.y3c{bottom:738.645000px;}
.y13{bottom:743.865000px;}
.y3b{bottom:762.765000px;}
.y12{bottom:767.985000px;}
.y54{bottom:770.325000px;}
.y3a{bottom:787.065000px;}
.y11{bottom:792.105000px;}
.y39{bottom:811.185000px;}
.y10{bottom:816.225000px;}
.y38{bottom:835.305000px;}
.yf{bottom:840.390000px;}
.y37{bottom:859.470000px;}
.ye{bottom:864.510000px;}
.y36{bottom:883.590000px;}
.yd{bottom:888.810000px;}
.y35{bottom:907.710000px;}
.yc{bottom:923.730000px;}
.y34{bottom:932.010000px;}
.yb{bottom:947.850000px;}
.y33{bottom:956.130000px;}
.ya{bottom:971.970000px;}
.y32{bottom:980.250000px;}
.y31{bottom:1004.370000px;}
.y9{bottom:1006.890000px;}
.y30{bottom:1028.490000px;}
.y8{bottom:1031.010000px;}
.y2f{bottom:1052.610000px;}
.y7{bottom:1065.930000px;}
.y2e{bottom:1076.730000px;}
.y6{bottom:1090.230000px;}
.y2d{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.hc{height:38.158594px;}
.hb{height:52.998047px;}
.he{height:58.651172px;}
.hd{height:62.327813px;}
.h4{height:77.329687px;}
.h8{height:78.604805px;}
.h6{height:80.764805px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.h5{height:85.103789px;}
.ha{height:87.859687px;}
.h7{height:89.404805px;}
.h9{height:93.004805px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:80.279987px;}
.x1{left:85.319987px;}
.x3{left:92.699987px;}
.x5{left:94.319987px;}
.x15{left:112.355987px;}
.xa{left:137.915987px;}
.xc{left:139.355987px;}
.x7{left:140.975987px;}
.x11{left:193.349987px;}
.x8{left:226.289987px;}
.x10{left:233.669987px;}
.xb{left:257.789987px;}
.x9{left:295.589987px;}
.x14{left:301.394987px;}
.x4{left:303.914987px;}
.x12{left:332.174973px;}
.x13{left:345.854987px;}
.x6{left:377.714987px;}
.x2{left:430.814987px;}
.xe{left:560.084987px;}
.xd{left:710.429987px;}
@media print{
.v5{vertical-align:-85.760000pt;}
.v4{vertical-align:-9.600000pt;}
.v2{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.920000pt;}
.v3{vertical-align:9.600000pt;}
.v6{vertical-align:12.800000pt;}
.ls10{letter-spacing:-0.336533pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.303467pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.303467pt;}
.lsb{letter-spacing:0.311680pt;}
.lsf{letter-spacing:0.315307pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336533pt;}
.lse{letter-spacing:0.464640pt;}
.lsd{letter-spacing:0.640000pt;}
.ls15{letter-spacing:18.863360pt;}
.lsc{letter-spacing:105.263360pt;}
.ls11{letter-spacing:166.858667pt;}
.ls14{letter-spacing:734.698667pt;}
.ls3{letter-spacing:1185.664853pt;}
.ws2{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.023467pt;}
.ws6{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.703360pt;}
.ws0{word-spacing:-18.416533pt;}
.ws5{word-spacing:-18.400000pt;}
.wsa{word-spacing:-18.383467pt;}
.wsb{word-spacing:-14.720000pt;}
.ws8{word-spacing:-0.074880pt;}
.ws9{word-spacing:0.000000pt;}
._c{margin-left:-2587.310933pt;}
._e{margin-left:-2585.456853pt;}
._8{margin-left:-2239.868373pt;}
._16{margin-left:-1329.210240pt;}
._15{margin-left:-1314.346667pt;}
._10{margin-left:-873.157760pt;}
._13{margin-left:-436.575360pt;}
._7{margin-left:-179.886720pt;}
._11{margin-left:-53.280000pt;}
._14{margin-left:-43.495040pt;}
._38{margin-left:-24.325973pt;}
._9{margin-left:-19.393920pt;}
._f{margin-left:-7.295360pt;}
._37{margin-left:-5.420800pt;}
._d{margin-left:-4.280747pt;}
._1b{margin-left:-2.728960pt;}
._0{margin-left:-1.256320pt;}
._1{width:1.174187pt;}
._a{width:2.117333pt;}
._5{width:3.677867pt;}
._4{width:5.120427pt;}
._3{width:6.042667pt;}
._b{width:7.413120pt;}
._29{width:8.328107pt;}
._2a{width:9.692373pt;}
._2b{width:10.699093pt;}
._6{width:12.655147pt;}
._26{width:14.302080pt;}
._25{width:15.275520pt;}
._33{width:16.710400pt;}
._32{width:17.696640pt;}
._2c{width:19.801387pt;}
._36{width:21.533867pt;}
._27{width:22.838400pt;}
._28{width:23.941547pt;}
._19{width:24.860160pt;}
._1a{width:26.282880pt;}
._23{width:31.599360pt;}
._2d{width:32.873387pt;}
._2e{width:34.276693pt;}
._30{width:36.152960pt;}
._3a{width:37.892480pt;}
._39{width:38.965120pt;}
._1d{width:41.225600pt;}
._1c{width:42.157440pt;}
._22{width:43.388800pt;}
._21{width:44.686720pt;}
._24{width:46.259200pt;}
._20{width:47.607040pt;}
._1e{width:50.469120pt;}
._1f{width:51.767040pt;}
._17{width:53.555627pt;}
._18{width:54.629333pt;}
._35{width:64.529920pt;}
._34{width:65.428480pt;}
._2{width:73.955840pt;}
._2f{width:97.016747pt;}
._31{width:147.036587pt;}
._12{width:287.200000pt;}
._3b{width:749.546667pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y5b{bottom:78.592000pt;}
.y2c{bottom:81.472000pt;}
.y5a{bottom:93.952000pt;}
.y2b{bottom:103.072000pt;}
.y59{bottom:109.312000pt;}
.y58{bottom:113.952000pt;}
.y53{bottom:119.872000pt;}
.y2a{bottom:124.512000pt;}
.y57{bottom:125.792000pt;}
.y52{bottom:141.466667pt;}
.y29{bottom:145.946667pt;}
.y51{bottom:162.906667pt;}
.y28{bottom:167.386667pt;}
.y50{bottom:184.346667pt;}
.y27{bottom:188.826667pt;}
.y4f{bottom:205.786667pt;}
.y26{bottom:210.266667pt;}
.y56{bottom:227.226667pt;}
.y25{bottom:231.706667pt;}
.y4e{bottom:248.706667pt;}
.y24{bottom:253.346667pt;}
.y4d{bottom:270.146667pt;}
.y23{bottom:274.786667pt;}
.y4c{bottom:291.746667pt;}
.y22{bottom:296.226667pt;}
.y4b{bottom:313.186667pt;}
.y21{bottom:317.666667pt;}
.y55{bottom:334.626667pt;}
.y20{bottom:339.106667pt;}
.y4a{bottom:356.066667pt;}
.y1f{bottom:360.546667pt;}
.y49{bottom:377.506667pt;}
.y1e{bottom:382.146667pt;}
.y48{bottom:398.946667pt;}
.y1d{bottom:403.586667pt;}
.y47{bottom:420.546667pt;}
.y1c{bottom:425.026667pt;}
.y46{bottom:441.986667pt;}
.y1b{bottom:446.466667pt;}
.y45{bottom:463.426667pt;}
.y1a{bottom:467.906667pt;}
.y44{bottom:484.866667pt;}
.y19{bottom:489.346667pt;}
.y43{bottom:506.333333pt;}
.y42{bottom:527.773333pt;}
.y41{bottom:549.373333pt;}
.y18{bottom:553.853333pt;}
.y40{bottom:570.813333pt;}
.y17{bottom:575.293333pt;}
.y3f{bottom:592.253333pt;}
.y16{bottom:596.733333pt;}
.y3e{bottom:613.693333pt;}
.y15{bottom:618.173333pt;}
.y3d{bottom:635.133333pt;}
.y14{bottom:639.613333pt;}
.y3c{bottom:656.573333pt;}
.y13{bottom:661.213333pt;}
.y3b{bottom:678.013333pt;}
.y12{bottom:682.653333pt;}
.y54{bottom:684.733333pt;}
.y3a{bottom:699.613333pt;}
.y11{bottom:704.093333pt;}
.y39{bottom:721.053333pt;}
.y10{bottom:725.533333pt;}
.y38{bottom:742.493333pt;}
.yf{bottom:747.013333pt;}
.y37{bottom:763.973333pt;}
.ye{bottom:768.453333pt;}
.y36{bottom:785.413333pt;}
.yd{bottom:790.053333pt;}
.y35{bottom:806.853333pt;}
.yc{bottom:821.093333pt;}
.y34{bottom:828.453333pt;}
.yb{bottom:842.533333pt;}
.y33{bottom:849.893333pt;}
.ya{bottom:863.973333pt;}
.y32{bottom:871.333333pt;}
.y31{bottom:892.773333pt;}
.y9{bottom:895.013333pt;}
.y30{bottom:914.213333pt;}
.y8{bottom:916.453333pt;}
.y2f{bottom:935.653333pt;}
.y7{bottom:947.493333pt;}
.y2e{bottom:957.093333pt;}
.y6{bottom:969.093333pt;}
.y2d{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.hc{height:33.918750pt;}
.hb{height:47.109375pt;}
.he{height:52.134375pt;}
.hd{height:55.402500pt;}
.h4{height:68.737500pt;}
.h8{height:69.870937pt;}
.h6{height:71.790937pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.h5{height:75.647813pt;}
.ha{height:78.097500pt;}
.h7{height:79.470938pt;}
.h9{height:82.670938pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:71.359988pt;}
.x1{left:75.839988pt;}
.x3{left:82.399988pt;}
.x5{left:83.839988pt;}
.x15{left:99.871988pt;}
.xa{left:122.591988pt;}
.xc{left:123.871988pt;}
.x7{left:125.311988pt;}
.x11{left:171.866655pt;}
.x8{left:201.146655pt;}
.x10{left:207.706655pt;}
.xb{left:229.146655pt;}
.x9{left:262.746655pt;}
.x14{left:267.906655pt;}
.x4{left:270.146655pt;}
.x12{left:295.266643pt;}
.x13{left:307.426655pt;}
.x6{left:335.746655pt;}
.x2{left:382.946655pt;}
.xe{left:497.853322pt;}
.xd{left:631.493322pt;}
}




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