
    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_848228543582e3fbaf478bab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.236000;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_96fb5dba61ae9e7d972a6544.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.842285;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_1cb6871e2225a0257e132cb9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_f0c43c78d13ea8fe8ec03c8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.149000;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_23e21a24686e0160be4a693e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119000;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_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_ca137b4ecc70c1bdc5296207.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.020000;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_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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_95288940ec28aefd49c3c64c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008000;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:ffa;src:url('chunks/assets/font_4d47de0bbdda96f64a341f88.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.088000;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:ffb;src:url('chunks/assets/font_0f025b77d610a1cfee9702a9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.246000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.630000px;}
.ls2{letter-spacing:4.025400px;}
.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;}
}
.wsb{word-spacing:-21.600000px;}
.ws1e{word-spacing:-14.238000px;}
.ws31{word-spacing:-13.794000px;}
.ws1{word-spacing:-2.641703px;}
.ws35{word-spacing:-2.337000px;}
.ws1f{word-spacing:-2.205000px;}
.ws2f{word-spacing:-2.079000px;}
.ws26{word-spacing:-1.953000px;}
.ws14{word-spacing:-1.890000px;}
.ws37{word-spacing:-1.368000px;}
.ws3{word-spacing:-1.323000px;}
.ws20{word-spacing:-1.260000px;}
.ws27{word-spacing:-1.134000px;}
.ws7{word-spacing:-1.008000px;}
.ws29{word-spacing:-0.945000px;}
.ws2b{word-spacing:-0.882000px;}
.ws19{word-spacing:-0.756000px;}
.ws1d{word-spacing:-0.693000px;}
.ws10{word-spacing:-0.630000px;}
.ws1a{word-spacing:-0.378000px;}
.ws2c{word-spacing:-0.252000px;}
.ws33{word-spacing:-0.228000px;}
.ws22{word-spacing:-0.189000px;}
.ws2{word-spacing:-0.126000px;}
.ws0{word-spacing:0.000000px;}
.ws28{word-spacing:0.441000px;}
.ws17{word-spacing:0.504000px;}
.ws6{word-spacing:0.756000px;}
.ws38{word-spacing:0.798000px;}
.ws18{word-spacing:0.882000px;}
.ws16{word-spacing:1.134000px;}
.ws4{word-spacing:1.197000px;}
.ws15{word-spacing:1.323000px;}
.ws1b{word-spacing:1.449000px;}
.ws13{word-spacing:1.638000px;}
.ws21{word-spacing:1.827000px;}
.wsd{word-spacing:2.016000px;}
.ws34{word-spacing:2.223000px;}
.ws2a{word-spacing:2.268000px;}
.wsa{word-spacing:2.394000px;}
.ws11{word-spacing:2.583000px;}
.ws32{word-spacing:3.150000px;}
.ws25{word-spacing:3.339000px;}
.ws30{word-spacing:3.654000px;}
.wse{word-spacing:3.717000px;}
.ws23{word-spacing:3.843000px;}
.ws2d{word-spacing:3.969000px;}
.ws9{word-spacing:4.032000px;}
.ws12{word-spacing:4.158000px;}
.ws36{word-spacing:4.332000px;}
.ws2e{word-spacing:4.473000px;}
.wsf{word-spacing:4.788000px;}
.ws8{word-spacing:4.914000px;}
.wsc{word-spacing:5.481000px;}
.ws24{word-spacing:5.544000px;}
.ws1c{word-spacing:5.670000px;}
.ws5{word-spacing:6.741000px;}
._4{margin-left:-15.615600px;}
._6{margin-left:-10.935600px;}
._7{margin-left:-7.784400px;}
._e{margin-left:-6.414600px;}
._3{margin-left:-4.695600px;}
._c{margin-left:-3.507000px;}
._2{margin-left:-2.340000px;}
._0{margin-left:-1.177800px;}
._9{width:1.158300px;}
._d{width:2.231400px;}
._b{width:3.231900px;}
._5{width:4.680000px;}
._8{width:5.900100px;}
._a{width:7.112700px;}
._12{width:8.576700px;}
._11{width:41.999400px;}
._f{width:71.401200px;}
._1{width:382.675800px;}
._10{width:1035.123000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:91.093200px;}
.fs5{font-size:96.000000px;}
.fs7{font-size:102.000000px;}
.fs4{font-size:156.000000px;}
.fs1{font-size:411.607800px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.510300px;}
.y4e{bottom:106.136550px;}
.y20{bottom:107.074050px;}
.y4d{bottom:128.636550px;}
.y1f{bottom:129.574050px;}
.y4c{bottom:151.136550px;}
.y1e{bottom:152.074050px;}
.y4b{bottom:173.636550px;}
.y1d{bottom:174.574050px;}
.y4a{bottom:196.136550px;}
.y1c{bottom:197.074050px;}
.y49{bottom:218.636550px;}
.y1b{bottom:219.574050px;}
.y48{bottom:241.136550px;}
.y1a{bottom:242.074050px;}
.y47{bottom:263.636550px;}
.y19{bottom:264.574050px;}
.y46{bottom:286.136550px;}
.y18{bottom:287.074050px;}
.y45{bottom:308.636550px;}
.y17{bottom:309.574050px;}
.y44{bottom:331.136550px;}
.y16{bottom:332.074050px;}
.y43{bottom:353.636550px;}
.y15{bottom:354.574050px;}
.y42{bottom:376.136550px;}
.y14{bottom:377.074050px;}
.y41{bottom:398.636550px;}
.y13{bottom:399.574050px;}
.y40{bottom:421.136550px;}
.y12{bottom:422.074050px;}
.y3f{bottom:443.636550px;}
.y11{bottom:444.574050px;}
.y3e{bottom:466.136550px;}
.y10{bottom:467.074050px;}
.y3d{bottom:488.636550px;}
.yf{bottom:489.574050px;}
.y3c{bottom:511.136550px;}
.ye{bottom:512.074050px;}
.y3b{bottom:533.636550px;}
.yd{bottom:534.574050px;}
.y3a{bottom:556.136550px;}
.yc{bottom:557.074050px;}
.y39{bottom:578.636550px;}
.yb{bottom:579.574050px;}
.y38{bottom:601.136550px;}
.ya{bottom:602.074050px;}
.y37{bottom:623.636550px;}
.y58{bottom:631.136550px;}
.y36{bottom:646.136550px;}
.y57{bottom:652.136550px;}
.y35{bottom:668.636550px;}
.y9{bottom:671.345700px;}
.y56{bottom:673.136550px;}
.y34{bottom:691.136550px;}
.y55{bottom:694.136550px;}
.y33{bottom:713.636550px;}
.y8{bottom:726.857550px;}
.y32{bottom:736.136550px;}
.y54{bottom:737.636550px;}
.y21{bottom:758.441400px;}
.y31{bottom:758.636550px;}
.y7{bottom:768.857550px;}
.y30{bottom:781.136550px;}
.y2f{bottom:803.636550px;}
.y53{bottom:805.136550px;}
.y6{bottom:810.857550px;}
.y2e{bottom:826.136550px;}
.y52{bottom:827.636550px;}
.y2d{bottom:848.636550px;}
.y51{bottom:850.136550px;}
.y5{bottom:852.857550px;}
.y2c{bottom:871.136550px;}
.y50{bottom:872.636550px;}
.y2b{bottom:893.636400px;}
.y4f{bottom:895.136400px;}
.y2a{bottom:916.136400px;}
.y29{bottom:938.636400px;}
.y28{bottom:961.136400px;}
.y4{bottom:961.189500px;}
.y27{bottom:983.636400px;}
.y3{bottom:993.257550px;}
.y26{bottom:1006.136400px;}
.y2{bottom:1008.672450px;}
.y25{bottom:1028.636400px;}
.y24{bottom:1051.136400px;}
.y23{bottom:1073.636400px;}
.y22{bottom:1138.056450px;}
.hb{height:44.460000px;}
.hc{height:49.362000px;}
.hd{height:51.072000px;}
.h9{height:54.558000px;}
.h8{height:56.448000px;}
.h5{height:56.706000px;}
.h4{height:71.789270px;}
.h2{height:72.000000px;}
.he{height:72.504000px;}
.h7{height:96.000000px;}
.ha{height:102.000000px;}
.h6{height:156.000000px;}
.h3{height:324.382319px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.x6{left:63.779550px;}
.x4{left:85.039350px;}
.x7{left:131.483700px;}
.x2{left:193.464600px;}
.x3{left:195.975000px;}
.x1{left:802.843950px;}
.x5{left:827.428950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.560000pt;}
.ls2{letter-spacing:3.578133pt;}
.wsb{word-spacing:-19.200000pt;}
.ws1e{word-spacing:-12.656000pt;}
.ws31{word-spacing:-12.261333pt;}
.ws1{word-spacing:-2.348180pt;}
.ws35{word-spacing:-2.077333pt;}
.ws1f{word-spacing:-1.960000pt;}
.ws2f{word-spacing:-1.848000pt;}
.ws26{word-spacing:-1.736000pt;}
.ws14{word-spacing:-1.680000pt;}
.ws37{word-spacing:-1.216000pt;}
.ws3{word-spacing:-1.176000pt;}
.ws20{word-spacing:-1.120000pt;}
.ws27{word-spacing:-1.008000pt;}
.ws7{word-spacing:-0.896000pt;}
.ws29{word-spacing:-0.840000pt;}
.ws2b{word-spacing:-0.784000pt;}
.ws19{word-spacing:-0.672000pt;}
.ws1d{word-spacing:-0.616000pt;}
.ws10{word-spacing:-0.560000pt;}
.ws1a{word-spacing:-0.336000pt;}
.ws2c{word-spacing:-0.224000pt;}
.ws33{word-spacing:-0.202667pt;}
.ws22{word-spacing:-0.168000pt;}
.ws2{word-spacing:-0.112000pt;}
.ws0{word-spacing:0.000000pt;}
.ws28{word-spacing:0.392000pt;}
.ws17{word-spacing:0.448000pt;}
.ws6{word-spacing:0.672000pt;}
.ws38{word-spacing:0.709333pt;}
.ws18{word-spacing:0.784000pt;}
.ws16{word-spacing:1.008000pt;}
.ws4{word-spacing:1.064000pt;}
.ws15{word-spacing:1.176000pt;}
.ws1b{word-spacing:1.288000pt;}
.ws13{word-spacing:1.456000pt;}
.ws21{word-spacing:1.624000pt;}
.wsd{word-spacing:1.792000pt;}
.ws34{word-spacing:1.976000pt;}
.ws2a{word-spacing:2.016000pt;}
.wsa{word-spacing:2.128000pt;}
.ws11{word-spacing:2.296000pt;}
.ws32{word-spacing:2.800000pt;}
.ws25{word-spacing:2.968000pt;}
.ws30{word-spacing:3.248000pt;}
.wse{word-spacing:3.304000pt;}
.ws23{word-spacing:3.416000pt;}
.ws2d{word-spacing:3.528000pt;}
.ws9{word-spacing:3.584000pt;}
.ws12{word-spacing:3.696000pt;}
.ws36{word-spacing:3.850667pt;}
.ws2e{word-spacing:3.976000pt;}
.wsf{word-spacing:4.256000pt;}
.ws8{word-spacing:4.368000pt;}
.wsc{word-spacing:4.872000pt;}
.ws24{word-spacing:4.928000pt;}
.ws1c{word-spacing:5.040000pt;}
.ws5{word-spacing:5.992000pt;}
._4{margin-left:-13.880533pt;}
._6{margin-left:-9.720533pt;}
._7{margin-left:-6.919467pt;}
._e{margin-left:-5.701867pt;}
._3{margin-left:-4.173867pt;}
._c{margin-left:-3.117333pt;}
._2{margin-left:-2.080000pt;}
._0{margin-left:-1.046933pt;}
._9{width:1.029600pt;}
._d{width:1.983467pt;}
._b{width:2.872800pt;}
._5{width:4.160000pt;}
._8{width:5.244533pt;}
._a{width:6.322400pt;}
._12{width:7.623733pt;}
._11{width:37.332800pt;}
._f{width:63.467733pt;}
._1{width:340.156267pt;}
._10{width:920.109333pt;}
.fs8{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.971733pt;}
.fs5{font-size:85.333333pt;}
.fs7{font-size:90.666667pt;}
.fs4{font-size:138.666667pt;}
.fs1{font-size:365.873600pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.453600pt;}
.y4e{bottom:94.343600pt;}
.y20{bottom:95.176933pt;}
.y4d{bottom:114.343600pt;}
.y1f{bottom:115.176933pt;}
.y4c{bottom:134.343600pt;}
.y1e{bottom:135.176933pt;}
.y4b{bottom:154.343600pt;}
.y1d{bottom:155.176933pt;}
.y4a{bottom:174.343600pt;}
.y1c{bottom:175.176933pt;}
.y49{bottom:194.343600pt;}
.y1b{bottom:195.176933pt;}
.y48{bottom:214.343600pt;}
.y1a{bottom:215.176933pt;}
.y47{bottom:234.343600pt;}
.y19{bottom:235.176933pt;}
.y46{bottom:254.343600pt;}
.y18{bottom:255.176933pt;}
.y45{bottom:274.343600pt;}
.y17{bottom:275.176933pt;}
.y44{bottom:294.343600pt;}
.y16{bottom:295.176933pt;}
.y43{bottom:314.343600pt;}
.y15{bottom:315.176933pt;}
.y42{bottom:334.343600pt;}
.y14{bottom:335.176933pt;}
.y41{bottom:354.343600pt;}
.y13{bottom:355.176933pt;}
.y40{bottom:374.343600pt;}
.y12{bottom:375.176933pt;}
.y3f{bottom:394.343600pt;}
.y11{bottom:395.176933pt;}
.y3e{bottom:414.343600pt;}
.y10{bottom:415.176933pt;}
.y3d{bottom:434.343600pt;}
.yf{bottom:435.176933pt;}
.y3c{bottom:454.343600pt;}
.ye{bottom:455.176933pt;}
.y3b{bottom:474.343600pt;}
.yd{bottom:475.176933pt;}
.y3a{bottom:494.343600pt;}
.yc{bottom:495.176933pt;}
.y39{bottom:514.343600pt;}
.yb{bottom:515.176933pt;}
.y38{bottom:534.343600pt;}
.ya{bottom:535.176933pt;}
.y37{bottom:554.343600pt;}
.y58{bottom:561.010267pt;}
.y36{bottom:574.343600pt;}
.y57{bottom:579.676933pt;}
.y35{bottom:594.343600pt;}
.y9{bottom:596.751733pt;}
.y56{bottom:598.343600pt;}
.y34{bottom:614.343600pt;}
.y55{bottom:617.010267pt;}
.y33{bottom:634.343600pt;}
.y8{bottom:646.095600pt;}
.y32{bottom:654.343600pt;}
.y54{bottom:655.676933pt;}
.y21{bottom:674.170133pt;}
.y31{bottom:674.343600pt;}
.y7{bottom:683.428933pt;}
.y30{bottom:694.343600pt;}
.y2f{bottom:714.343600pt;}
.y53{bottom:715.676933pt;}
.y6{bottom:720.762267pt;}
.y2e{bottom:734.343600pt;}
.y52{bottom:735.676933pt;}
.y2d{bottom:754.343600pt;}
.y51{bottom:755.676933pt;}
.y5{bottom:758.095600pt;}
.y2c{bottom:774.343600pt;}
.y50{bottom:775.676933pt;}
.y2b{bottom:794.343467pt;}
.y4f{bottom:795.676800pt;}
.y2a{bottom:814.343467pt;}
.y29{bottom:834.343467pt;}
.y28{bottom:854.343467pt;}
.y4{bottom:854.390667pt;}
.y27{bottom:874.343467pt;}
.y3{bottom:882.895600pt;}
.y26{bottom:894.343467pt;}
.y2{bottom:896.597733pt;}
.y25{bottom:914.343467pt;}
.y24{bottom:934.343467pt;}
.y23{bottom:954.343467pt;}
.y22{bottom:1011.605733pt;}
.hb{height:39.520000pt;}
.hc{height:43.877333pt;}
.hd{height:45.397333pt;}
.h9{height:48.496000pt;}
.h8{height:50.176000pt;}
.h5{height:50.405333pt;}
.h4{height:63.812684pt;}
.h2{height:64.000000pt;}
.he{height:64.448000pt;}
.h7{height:85.333333pt;}
.ha{height:90.666667pt;}
.h6{height:138.666667pt;}
.h3{height:288.339839pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.x6{left:56.692933pt;}
.x4{left:75.590533pt;}
.x7{left:116.874400pt;}
.x2{left:171.968533pt;}
.x3{left:174.200000pt;}
.x1{left:713.639067pt;}
.x5{left:735.492400pt;}
}




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