
    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_199d8b308a7047159c033b12.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.954000;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_e201af7ccf75788c296a5950.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_d965f15526a32b278f354c58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.665000;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_28222aee5ce0a2484f0c48bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_a65d1aea2e2610a7c21262a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_4bf251c5fd523ab5344726e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.664000;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_589267e5609a3eb42540939a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895000;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_b74a365ec2866b506eb78d40.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.431000;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);}
.v3{vertical-align:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.044000px;}
.v2{vertical-align:26.034000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010923px;}
.ls0{letter-spacing:0.011261px;}
.ls2{letter-spacing:2.999261px;}
.ls4{letter-spacing:3.001962px;}
.ls3{letter-spacing:3.011447px;}
.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:-0.071731px;}
.ws4{word-spacing:-0.059776px;}
.ws16{word-spacing:0.000000px;}
.wsc{word-spacing:13.352738px;}
.ws29{word-spacing:13.810921px;}
.ws2c{word-spacing:13.941830px;}
.ws1e{word-spacing:14.072739px;}
.ws2f{word-spacing:14.596376px;}
.ws7{word-spacing:14.661830px;}
.ws3{word-spacing:14.884124px;}
.ws21{word-spacing:14.923649px;}
.ws2b{word-spacing:15.054558px;}
.ws9{word-spacing:15.381831px;}
.ws27{word-spacing:15.643649px;}
.ws22{word-spacing:15.905468px;}
.ws5{word-spacing:16.298195px;}
.ws30{word-spacing:16.429105px;}
.ws11{word-spacing:16.625468px;}
.wsa{word-spacing:16.756378px;}
.ws28{word-spacing:16.887287px;}
.wsd{word-spacing:17.541833px;}
.ws32{word-spacing:17.672742px;}
.ws25{word-spacing:17.803651px;}
.ws1{word-spacing:17.861069px;}
.ws2e{word-spacing:18.196379px;}
.ws15{word-spacing:18.470660px;}
.ws8{word-spacing:18.589106px;}
.ws14{word-spacing:18.785470px;}
.ws2d{word-spacing:19.701835px;}
.ws6{word-spacing:20.160017px;}
.ws18{word-spacing:20.336452px;}
.ws19{word-spacing:20.356381px;}
.ws31{word-spacing:20.683654px;}
.ws24{word-spacing:22.974565px;}
.ws12{word-spacing:23.432747px;}
.ws26{word-spacing:24.021838px;}
.ws1b{word-spacing:24.152747px;}
.ws20{word-spacing:24.676384px;}
.ws23{word-spacing:25.592749px;}
.ws0{word-spacing:26.492612px;}
.ws10{word-spacing:26.705477px;}
.wse{word-spacing:26.967295px;}
.wsf{word-spacing:27.229114px;}
.ws13{word-spacing:27.294568px;}
.ws1d{word-spacing:27.360023px;}
.ws1c{word-spacing:29.127297px;}
.ws1f{word-spacing:30.632753px;}
.wsb{word-spacing:31.090935px;}
.ws2a{word-spacing:31.352753px;}
.ws1a{word-spacing:35.793869px;}
.ws17{word-spacing:65.390645px;}
._8{margin-left:-7.232848px;}
._7{margin-left:-5.618903px;}
._4{margin-left:-4.363619px;}
._3{margin-left:-3.347434px;}
._0{margin-left:-1.434618px;}
._1{width:3.980237px;}
._2{width:4.999500px;}
._d{width:14.661830px;}
._5{width:15.767658px;}
._c{width:16.816449px;}
._9{width:18.530436px;}
._a{width:21.521508px;}
._6{width:26.263687px;}
._b{width:29.892300px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y21{bottom:67.101000px;}
.y20{bottom:85.035000px;}
.y1f{bottom:102.967500px;}
.y46{bottom:119.718000px;}
.y45{bottom:139.146000px;}
.y1e{bottom:153.864000px;}
.y44{bottom:158.572500px;}
.y1d{bottom:173.292000px;}
.y43{bottom:178.000500px;}
.y1c{bottom:192.718500px;}
.y42{bottom:197.427000px;}
.y1b{bottom:212.146500px;}
.y41{bottom:216.853500px;}
.y1a{bottom:231.573000px;}
.y40{bottom:236.281500px;}
.y19{bottom:251.001000px;}
.y3f{bottom:255.708000px;}
.y18{bottom:270.427500px;}
.y3e{bottom:275.136000px;}
.y17{bottom:289.854000px;}
.y3d{bottom:294.562500px;}
.y16{bottom:309.282000px;}
.y3c{bottom:313.990500px;}
.y15{bottom:328.708500px;}
.y3b{bottom:333.417000px;}
.y14{bottom:348.136500px;}
.y3a{bottom:352.843500px;}
.y13{bottom:367.563000px;}
.y39{bottom:372.271500px;}
.y12{bottom:386.991000px;}
.y38{bottom:391.698000px;}
.y11{bottom:406.417500px;}
.y37{bottom:411.126000px;}
.y10{bottom:425.844000px;}
.y36{bottom:430.552500px;}
.y35{bottom:449.980500px;}
.yf{bottom:452.772000px;}
.y34{bottom:469.407000px;}
.y33{bottom:488.833500px;}
.ye{bottom:496.198500px;}
.y32{bottom:508.261500px;}
.yd{bottom:515.626500px;}
.y31{bottom:527.688000px;}
.y30{bottom:547.116000px;}
.y2f{bottom:566.542500px;}
.yc{bottom:573.951000px;}
.y2e{bottom:585.970500px;}
.yb{bottom:586.461000px;}
.ya{bottom:604.393500px;}
.y2d{bottom:605.397000px;}
.y9{bottom:622.326000px;}
.y2c{bottom:624.823500px;}
.y8{bottom:627.748500px;}
.y7{bottom:640.258500px;}
.y2b{bottom:644.251500px;}
.y6{bottom:658.191000px;}
.y5{bottom:663.615000px;}
.y2a{bottom:663.678000px;}
.y29{bottom:683.106000px;}
.y28{bottom:702.532500px;}
.y4{bottom:711.990000px;}
.y27{bottom:731.710500px;}
.y3{bottom:732.910500px;}
.y26{bottom:782.631000px;}
.y2{bottom:794.181000px;}
.y25{bottom:802.059000px;}
.y1{bottom:821.827500px;}
.y24{bottom:840.913500px;}
.y23{bottom:860.340000px;}
.y22{bottom:897.840000px;}
.hb{height:19.456902px;}
.h8{height:27.783619px;}
.h9{height:41.006062px;}
.ha{height:41.036062px;}
.he{height:41.125613px;}
.hc{height:45.032765px;}
.hd{height:48.240040px;}
.h6{height:50.389066px;}
.h3{height:50.395066px;}
.hf{height:52.865894px;}
.h7{height:57.828699px;}
.h5{height:57.834699px;}
.h4{height:59.221496px;}
.h2{height:70.487564px;}
.h1{height:994.500000px;}
.h0{height:994.680000px;}
.w1{width:663.000000px;}
.w0{width:663.120000px;}
.x0{left:0.000000px;}
.x9{left:66.960000px;}
.x1{left:71.502000px;}
.x11{left:91.506000px;}
.xb{left:117.456000px;}
.x3{left:135.402000px;}
.xe{left:137.965500px;}
.x10{left:162.295500px;}
.xc{left:173.496000px;}
.x4{left:199.152000px;}
.x2{left:200.307000px;}
.x6{left:225.384000px;}
.xf{left:234.871500px;}
.x7{left:303.589500px;}
.x5{left:320.715000px;}
.x8{left:376.288500px;}
.xa{left:421.650000px;}
.xd{left:525.585000px;}
@media print{
.v3{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:0.928000pt;}
.v2{vertical-align:23.141333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009709pt;}
.ls0{letter-spacing:0.010010pt;}
.ls2{letter-spacing:2.666010pt;}
.ls4{letter-spacing:2.668411pt;}
.ls3{letter-spacing:2.676842pt;}
.ws2{word-spacing:-0.063761pt;}
.ws4{word-spacing:-0.053134pt;}
.ws16{word-spacing:0.000000pt;}
.wsc{word-spacing:11.869101pt;}
.ws29{word-spacing:12.276374pt;}
.ws2c{word-spacing:12.392738pt;}
.ws1e{word-spacing:12.509101pt;}
.ws2f{word-spacing:12.974556pt;}
.ws7{word-spacing:13.032738pt;}
.ws3{word-spacing:13.230333pt;}
.ws21{word-spacing:13.265466pt;}
.ws2b{word-spacing:13.381829pt;}
.ws9{word-spacing:13.672739pt;}
.ws27{word-spacing:13.905466pt;}
.ws22{word-spacing:14.138194pt;}
.ws5{word-spacing:14.487285pt;}
.ws30{word-spacing:14.603649pt;}
.ws11{word-spacing:14.778194pt;}
.wsa{word-spacing:14.894558pt;}
.ws28{word-spacing:15.010922pt;}
.wsd{word-spacing:15.592740pt;}
.ws32{word-spacing:15.709104pt;}
.ws25{word-spacing:15.825468pt;}
.ws1{word-spacing:15.876506pt;}
.ws2e{word-spacing:16.174559pt;}
.ws15{word-spacing:16.418365pt;}
.ws8{word-spacing:16.523650pt;}
.ws14{word-spacing:16.698196pt;}
.ws2d{word-spacing:17.512742pt;}
.ws6{word-spacing:17.920015pt;}
.ws18{word-spacing:18.076846pt;}
.ws19{word-spacing:18.094561pt;}
.ws31{word-spacing:18.385470pt;}
.ws24{word-spacing:20.421835pt;}
.ws12{word-spacing:20.829108pt;}
.ws26{word-spacing:21.352745pt;}
.ws1b{word-spacing:21.469109pt;}
.ws20{word-spacing:21.934564pt;}
.ws23{word-spacing:22.749110pt;}
.ws0{word-spacing:23.548989pt;}
.ws10{word-spacing:23.738202pt;}
.wse{word-spacing:23.970929pt;}
.wsf{word-spacing:24.203657pt;}
.ws13{word-spacing:24.261838pt;}
.ws1d{word-spacing:24.320020pt;}
.ws1c{word-spacing:25.890931pt;}
.ws1f{word-spacing:27.229114pt;}
.wsb{word-spacing:27.636387pt;}
.ws2a{word-spacing:27.869114pt;}
.ws1a{word-spacing:31.816772pt;}
.ws17{word-spacing:58.125018pt;}
._8{margin-left:-6.429198pt;}
._7{margin-left:-4.994580pt;}
._4{margin-left:-3.878772pt;}
._3{margin-left:-2.975497pt;}
._0{margin-left:-1.275216pt;}
._1{width:3.537988pt;}
._2{width:4.444000pt;}
._d{width:13.032738pt;}
._5{width:14.015696pt;}
._c{width:14.947955pt;}
._9{width:16.471499pt;}
._a{width:19.130229pt;}
._6{width:23.345500pt;}
._b{width:26.570933pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:59.645333pt;}
.y20{bottom:75.586667pt;}
.y1f{bottom:91.526667pt;}
.y46{bottom:106.416000pt;}
.y45{bottom:123.685333pt;}
.y1e{bottom:136.768000pt;}
.y44{bottom:140.953333pt;}
.y1d{bottom:154.037333pt;}
.y43{bottom:158.222667pt;}
.y1c{bottom:171.305333pt;}
.y42{bottom:175.490667pt;}
.y1b{bottom:188.574667pt;}
.y41{bottom:192.758667pt;}
.y1a{bottom:205.842667pt;}
.y40{bottom:210.028000pt;}
.y19{bottom:223.112000pt;}
.y3f{bottom:227.296000pt;}
.y18{bottom:240.380000pt;}
.y3e{bottom:244.565333pt;}
.y17{bottom:257.648000pt;}
.y3d{bottom:261.833333pt;}
.y16{bottom:274.917333pt;}
.y3c{bottom:279.102667pt;}
.y15{bottom:292.185333pt;}
.y3b{bottom:296.370667pt;}
.y14{bottom:309.454667pt;}
.y3a{bottom:313.638667pt;}
.y13{bottom:326.722667pt;}
.y39{bottom:330.908000pt;}
.y12{bottom:343.992000pt;}
.y38{bottom:348.176000pt;}
.y11{bottom:361.260000pt;}
.y37{bottom:365.445333pt;}
.y10{bottom:378.528000pt;}
.y36{bottom:382.713333pt;}
.y35{bottom:399.982667pt;}
.yf{bottom:402.464000pt;}
.y34{bottom:417.250667pt;}
.y33{bottom:434.518667pt;}
.ye{bottom:441.065333pt;}
.y32{bottom:451.788000pt;}
.yd{bottom:458.334667pt;}
.y31{bottom:469.056000pt;}
.y30{bottom:486.325333pt;}
.y2f{bottom:503.593333pt;}
.yc{bottom:510.178667pt;}
.y2e{bottom:520.862667pt;}
.yb{bottom:521.298667pt;}
.ya{bottom:537.238667pt;}
.y2d{bottom:538.130667pt;}
.y9{bottom:553.178667pt;}
.y2c{bottom:555.398667pt;}
.y8{bottom:557.998667pt;}
.y7{bottom:569.118667pt;}
.y2b{bottom:572.668000pt;}
.y6{bottom:585.058667pt;}
.y5{bottom:589.880000pt;}
.y2a{bottom:589.936000pt;}
.y29{bottom:607.205333pt;}
.y28{bottom:624.473333pt;}
.y4{bottom:632.880000pt;}
.y27{bottom:650.409333pt;}
.y3{bottom:651.476000pt;}
.y26{bottom:695.672000pt;}
.y2{bottom:705.938667pt;}
.y25{bottom:712.941333pt;}
.y1{bottom:730.513333pt;}
.y24{bottom:747.478667pt;}
.y23{bottom:764.746667pt;}
.y22{bottom:798.080000pt;}
.hb{height:17.295024pt;}
.h8{height:24.696550pt;}
.h9{height:36.449833pt;}
.ha{height:36.476499pt;}
.he{height:36.556100pt;}
.hc{height:40.029124pt;}
.hd{height:42.880036pt;}
.h6{height:44.790281pt;}
.h3{height:44.795614pt;}
.hf{height:46.991906pt;}
.h7{height:51.403288pt;}
.h5{height:51.408621pt;}
.h4{height:52.641330pt;}
.h2{height:62.655613pt;}
.h1{height:884.000000pt;}
.h0{height:884.160000pt;}
.w1{width:589.333333pt;}
.w0{width:589.440000pt;}
.x0{left:0.000000pt;}
.x9{left:59.520000pt;}
.x1{left:63.557333pt;}
.x11{left:81.338667pt;}
.xb{left:104.405333pt;}
.x3{left:120.357333pt;}
.xe{left:122.636000pt;}
.x10{left:144.262667pt;}
.xc{left:154.218667pt;}
.x4{left:177.024000pt;}
.x2{left:178.050667pt;}
.x6{left:200.341333pt;}
.xf{left:208.774667pt;}
.x7{left:269.857333pt;}
.x5{left:285.080000pt;}
.x8{left:334.478667pt;}
.xa{left:374.800000pt;}
.xd{left:467.186667pt;}
}




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