
    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_1c30227ffd848627dd9f89ea.woff')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_eed5eb6f3b275007325f2e23.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_6370f26c1aa228288b5dec11.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0d5cf9880745addbf00fa072.woff')format("woff");}.ff4{font-family:ff4;line-height:0.879883;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_6c16180902e8f9ab195add88.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_ceeafd681e6e0e778f07c29b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-3.240000px;}
.lsc{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.684000px;}
.lsf{letter-spacing:-0.445200px;}
.ls5{letter-spacing:-0.378600px;}
.ls8{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.lse{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.360000px;}
.lsa{letter-spacing:12.240000px;}
.ls0{letter-spacing:191.340000px;}
.ls1{letter-spacing:191.484000px;}
.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:-108.072000px;}
.ws1{word-spacing:-23.940000px;}
.ws4{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.700000px;}
.ws3{word-spacing:-20.681400px;}
.ws8{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.820000px;}
.ws6{word-spacing:0.000000px;}
._29{margin-left:-9.988560px;}
._20{margin-left:-8.821200px;}
._0{margin-left:-7.308000px;}
._26{margin-left:-6.254400px;}
._13{margin-left:-5.138640px;}
._14{margin-left:-3.770880px;}
._1e{margin-left:-2.574480px;}
._2{margin-left:-1.469040px;}
._1{width:1.053360px;}
._5{width:2.621280px;}
._c{width:4.127760px;}
._1a{width:5.360400px;}
._18{width:6.402240px;}
._19{width:7.514400px;}
._21{width:8.592240px;}
._25{width:9.834000px;}
._1d{width:10.973760px;}
._1b{width:12.096960px;}
._b{width:13.576320px;}
._1c{width:15.500160px;}
._e{width:16.511040px;}
._12{width:18.232800px;}
._3{width:19.290960px;}
._4{width:22.829040px;}
._d{width:24.261120px;}
._16{width:25.313760px;}
._10{width:26.451360px;}
._11{width:27.499200px;}
._17{width:29.557440px;}
._a{width:31.516080px;}
._9{width:32.553600px;}
._24{width:33.696000px;}
._27{width:36.475920px;}
._8{width:39.240960px;}
._7{width:40.289040px;}
._15{width:42.213360px;}
._1f{width:44.899920px;}
._f{width:49.233120px;}
._2a{width:61.538160px;}
._23{width:63.387600px;}
._22{width:64.441440px;}
._6{width:65.562960px;}
._28{width:191.484000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.y5{bottom:-39.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.436000px;}
.y4{bottom:6.300000px;}
.y6{bottom:16.740000px;}
.y2{bottom:56.916000px;}
.y4d{bottom:88.956000px;}
.y4c{bottom:95.796000px;}
.y24{bottom:103.356000px;}
.y4b{bottom:109.656000px;}
.y5d{bottom:116.496000px;}
.y5c{bottom:130.356000px;}
.y4a{bottom:130.896000px;}
.y49{bottom:137.736000px;}
.y23{bottom:139.536000px;}
.y64{bottom:149.976000px;}
.y5b{bottom:151.050000px;}
.y48{bottom:154.470000px;}
.y5a{bottom:156.270000px;}
.y62{bottom:157.890000px;}
.y47{bottom:161.310000px;}
.y59{bottom:171.750000px;}
.y46{bottom:175.170000px;}
.y22{bottom:175.710000px;}
.y45{bottom:182.010000px;}
.y63{bottom:186.150000px;}
.y58{bottom:192.450000px;}
.y44{bottom:195.870000px;}
.y57{bottom:199.290000px;}
.y21{bottom:212.070000px;}
.y56{bottom:213.150000px;}
.y43{bottom:216.570000px;}
.y61{bottom:222.330000px;}
.y42{bottom:223.410000px;}
.y55{bottom:233.850000px;}
.y41{bottom:237.270000px;}
.y54{bottom:240.690000px;}
.y20{bottom:248.250000px;}
.y53{bottom:255.090000px;}
.y60{bottom:258.510000px;}
.y52{bottom:261.930000px;}
.y51{bottom:278.670000px;}
.y1f{bottom:284.475000px;}
.y5f{bottom:294.915000px;}
.y1e{bottom:320.655000px;}
.y40{bottom:331.095000px;}
.y1d{bottom:357.015000px;}
.y3f{bottom:367.275000px;}
.y1c{bottom:393.195000px;}
.y3d{bottom:403.455000px;}
.y3e{bottom:411.015000px;}
.y1b{bottom:429.375000px;}
.y3c{bottom:439.815000px;}
.y50{bottom:447.375000px;}
.y1a{bottom:465.555000px;}
.y3b{bottom:475.995000px;}
.y19{bottom:501.915000px;}
.y3a{bottom:512.175000px;}
.y4f{bottom:519.735000px;}
.y18{bottom:538.095000px;}
.y39{bottom:548.355000px;}
.y17{bottom:574.305000px;}
.y38{bottom:584.745000px;}
.y4e{bottom:592.305000px;}
.y16{bottom:610.485000px;}
.y37{bottom:620.925000px;}
.y15{bottom:646.845000px;}
.y35{bottom:657.105000px;}
.y65{bottom:659.985000px;}
.y36{bottom:664.665000px;}
.y14{bottom:683.025000px;}
.y34{bottom:693.285000px;}
.y13{bottom:719.205000px;}
.y32{bottom:729.465000px;}
.y33{bottom:737.025000px;}
.y12{bottom:755.385000px;}
.y31{bottom:765.825000px;}
.y11{bottom:791.565000px;}
.y2f{bottom:802.005000px;}
.y30{bottom:809.565000px;}
.y10{bottom:827.925000px;}
.y2e{bottom:838.185000px;}
.yf{bottom:864.150000px;}
.y2d{bottom:874.410000px;}
.ye{bottom:900.330000px;}
.y2c{bottom:910.770000px;}
.yd{bottom:936.510000px;}
.y2b{bottom:946.950000px;}
.yc{bottom:972.870000px;}
.y29{bottom:983.130000px;}
.y2a{bottom:990.690000px;}
.yb{bottom:1009.050000px;}
.y28{bottom:1019.310000px;}
.ya{bottom:1045.230000px;}
.y27{bottom:1055.670000px;}
.y9{bottom:1083.930000px;}
.y26{bottom:1091.850000px;}
.y5e{bottom:1099.410000px;}
.y8{bottom:1125.330000px;}
.y25{bottom:1128.030000px;}
.y1{bottom:1151.640000px;}
.y3{bottom:1225.080000px;}
.h3{height:31.680000px;}
.h10{height:38.158594px;}
.he{height:47.344922px;}
.hf{height:50.484375px;}
.h5{height:51.660000px;}
.hd{height:52.998047px;}
.hb{height:59.066719px;}
.hc{height:59.436914px;}
.h7{height:67.565039px;}
.h2{height:70.664062px;}
.ha{height:82.676953px;}
.h9{height:84.898125px;}
.h8{height:96.508125px;}
.h4{height:108.843750px;}
.h6{height:108.988875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:49.500000px;}
.w3{width:281.910000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:16.170000px;}
.x3{left:46.440000px;}
.x1{left:63.899987px;}
.x21{left:68.759987px;}
.x16{left:70.019987px;}
.x22{left:76.139987px;}
.x7{left:100.835987px;}
.x4{left:140.940000px;}
.x9{left:157.889987px;}
.xa{left:183.989987px;}
.x15{left:279.929987px;}
.x13{left:299.594973px;}
.x14{left:306.434987px;}
.x17{left:322.634973px;}
.x18{left:329.474987px;}
.x8{left:402.014987px;}
.x2{left:498.705000px;}
.x1d{left:535.604973px;}
.x1e{left:542.444987px;}
.x11{left:551.624973px;}
.x12{left:558.464987px;}
.x23{left:608.864973px;}
.x24{left:622.544987px;}
.xd{left:661.244973px;}
.xe{left:668.084987px;}
.xb{left:739.049973px;}
.xc{left:745.889987px;}
.x1f{left:747.329973px;}
.xf{left:757.769973px;}
.x20{left:761.009987px;}
.x10{left:764.609987px;}
.x1b{left:766.049973px;}
.x25{left:770.549987px;}
.x1c{left:772.889987px;}
.x19{left:817.529973px;}
.x1a{left:824.369987px;}
.x5{left:836.280000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-2.880000pt;}
.lsc{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.608000pt;}
.lsf{letter-spacing:-0.395733pt;}
.ls5{letter-spacing:-0.336533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.lse{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.320000pt;}
.lsa{letter-spacing:10.880000pt;}
.ls0{letter-spacing:170.080000pt;}
.ls1{letter-spacing:170.208000pt;}
.ws0{word-spacing:-96.064000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.400000pt;}
.ws3{word-spacing:-18.383467pt;}
.ws8{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.840000pt;}
.ws6{word-spacing:0.000000pt;}
._29{margin-left:-8.878720pt;}
._20{margin-left:-7.841067pt;}
._0{margin-left:-6.496000pt;}
._26{margin-left:-5.559467pt;}
._13{margin-left:-4.567680pt;}
._14{margin-left:-3.351893pt;}
._1e{margin-left:-2.288427pt;}
._2{margin-left:-1.305813pt;}
._1{width:0.936320pt;}
._5{width:2.330027pt;}
._c{width:3.669120pt;}
._1a{width:4.764800pt;}
._18{width:5.690880pt;}
._19{width:6.679467pt;}
._21{width:7.637547pt;}
._25{width:8.741333pt;}
._1d{width:9.754453pt;}
._1b{width:10.752853pt;}
._b{width:12.067840pt;}
._1c{width:13.777920pt;}
._e{width:14.676480pt;}
._12{width:16.206933pt;}
._3{width:17.147520pt;}
._4{width:20.292480pt;}
._d{width:21.565440pt;}
._16{width:22.501120pt;}
._10{width:23.512320pt;}
._11{width:24.443733pt;}
._17{width:26.273280pt;}
._a{width:28.014293pt;}
._9{width:28.936533pt;}
._24{width:29.952000pt;}
._27{width:32.423040pt;}
._8{width:34.880853pt;}
._7{width:35.812480pt;}
._15{width:37.522987pt;}
._1f{width:39.911040pt;}
._f{width:43.762773pt;}
._2a{width:54.700587pt;}
._23{width:56.344533pt;}
._22{width:57.281280pt;}
._6{width:58.278187pt;}
._28{width:170.208000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.y5{bottom:-34.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.832000pt;}
.y4{bottom:5.600000pt;}
.y6{bottom:14.880000pt;}
.y2{bottom:50.592000pt;}
.y4d{bottom:79.072000pt;}
.y4c{bottom:85.152000pt;}
.y24{bottom:91.872000pt;}
.y4b{bottom:97.472000pt;}
.y5d{bottom:103.552000pt;}
.y5c{bottom:115.872000pt;}
.y4a{bottom:116.352000pt;}
.y49{bottom:122.432000pt;}
.y23{bottom:124.032000pt;}
.y64{bottom:133.312000pt;}
.y5b{bottom:134.266667pt;}
.y48{bottom:137.306667pt;}
.y5a{bottom:138.906667pt;}
.y62{bottom:140.346667pt;}
.y47{bottom:143.386667pt;}
.y59{bottom:152.666667pt;}
.y46{bottom:155.706667pt;}
.y22{bottom:156.186667pt;}
.y45{bottom:161.786667pt;}
.y63{bottom:165.466667pt;}
.y58{bottom:171.066667pt;}
.y44{bottom:174.106667pt;}
.y57{bottom:177.146667pt;}
.y21{bottom:188.506667pt;}
.y56{bottom:189.466667pt;}
.y43{bottom:192.506667pt;}
.y61{bottom:197.626667pt;}
.y42{bottom:198.586667pt;}
.y55{bottom:207.866667pt;}
.y41{bottom:210.906667pt;}
.y54{bottom:213.946667pt;}
.y20{bottom:220.666667pt;}
.y53{bottom:226.746667pt;}
.y60{bottom:229.786667pt;}
.y52{bottom:232.826667pt;}
.y51{bottom:247.706667pt;}
.y1f{bottom:252.866667pt;}
.y5f{bottom:262.146667pt;}
.y1e{bottom:285.026667pt;}
.y40{bottom:294.306667pt;}
.y1d{bottom:317.346667pt;}
.y3f{bottom:326.466667pt;}
.y1c{bottom:349.506667pt;}
.y3d{bottom:358.626667pt;}
.y3e{bottom:365.346667pt;}
.y1b{bottom:381.666667pt;}
.y3c{bottom:390.946667pt;}
.y50{bottom:397.666667pt;}
.y1a{bottom:413.826667pt;}
.y3b{bottom:423.106667pt;}
.y19{bottom:446.146667pt;}
.y3a{bottom:455.266667pt;}
.y4f{bottom:461.986667pt;}
.y18{bottom:478.306667pt;}
.y39{bottom:487.426667pt;}
.y17{bottom:510.493333pt;}
.y38{bottom:519.773333pt;}
.y4e{bottom:526.493333pt;}
.y16{bottom:542.653333pt;}
.y37{bottom:551.933333pt;}
.y15{bottom:574.973333pt;}
.y35{bottom:584.093333pt;}
.y65{bottom:586.653333pt;}
.y36{bottom:590.813333pt;}
.y14{bottom:607.133333pt;}
.y34{bottom:616.253333pt;}
.y13{bottom:639.293333pt;}
.y32{bottom:648.413333pt;}
.y33{bottom:655.133333pt;}
.y12{bottom:671.453333pt;}
.y31{bottom:680.733333pt;}
.y11{bottom:703.613333pt;}
.y2f{bottom:712.893333pt;}
.y30{bottom:719.613333pt;}
.y10{bottom:735.933333pt;}
.y2e{bottom:745.053333pt;}
.yf{bottom:768.133333pt;}
.y2d{bottom:777.253333pt;}
.ye{bottom:800.293333pt;}
.y2c{bottom:809.573333pt;}
.yd{bottom:832.453333pt;}
.y2b{bottom:841.733333pt;}
.yc{bottom:864.773333pt;}
.y29{bottom:873.893333pt;}
.y2a{bottom:880.613333pt;}
.yb{bottom:896.933333pt;}
.y28{bottom:906.053333pt;}
.ya{bottom:929.093333pt;}
.y27{bottom:938.373333pt;}
.y9{bottom:963.493333pt;}
.y26{bottom:970.533333pt;}
.y5e{bottom:977.253333pt;}
.y8{bottom:1000.293333pt;}
.y25{bottom:1002.693333pt;}
.y1{bottom:1023.680000pt;}
.y3{bottom:1088.960000pt;}
.h3{height:28.160000pt;}
.h10{height:33.918750pt;}
.he{height:42.084375pt;}
.hf{height:44.875000pt;}
.h5{height:45.920000pt;}
.hd{height:47.109375pt;}
.hb{height:52.503750pt;}
.hc{height:52.832812pt;}
.h7{height:60.057813pt;}
.h2{height:62.812500pt;}
.ha{height:73.490625pt;}
.h9{height:75.465000pt;}
.h8{height:85.785000pt;}
.h4{height:96.750000pt;}
.h6{height:96.879000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:44.000000pt;}
.w3{width:250.586667pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:14.373333pt;}
.x3{left:41.280000pt;}
.x1{left:56.799988pt;}
.x21{left:61.119988pt;}
.x16{left:62.239988pt;}
.x22{left:67.679988pt;}
.x7{left:89.631988pt;}
.x4{left:125.280000pt;}
.x9{left:140.346655pt;}
.xa{left:163.546655pt;}
.x15{left:248.826655pt;}
.x13{left:266.306643pt;}
.x14{left:272.386655pt;}
.x17{left:286.786643pt;}
.x18{left:292.866655pt;}
.x8{left:357.346655pt;}
.x2{left:443.293333pt;}
.x1d{left:476.093310pt;}
.x1e{left:482.173322pt;}
.x11{left:490.333310pt;}
.x12{left:496.413322pt;}
.x23{left:541.213310pt;}
.x24{left:553.373322pt;}
.xd{left:587.773310pt;}
.xe{left:593.853322pt;}
.xb{left:656.933310pt;}
.xc{left:663.013322pt;}
.x1f{left:664.293310pt;}
.xf{left:673.573310pt;}
.x20{left:676.453322pt;}
.x10{left:679.653322pt;}
.x1b{left:680.933310pt;}
.x25{left:684.933322pt;}
.x1c{left:687.013322pt;}
.x19{left:726.693310pt;}
.x1a{left:732.773322pt;}
.x5{left:743.360000pt;}
}




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