
    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_3a7e93abf6123186a9169ec8.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_e4deaee6eddd485a73965008.woff')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_a23e8e67ed225292dbe194a2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.771484;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_182036ba428953340cb830c5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ab4daa54e0422595d2b12942.woff')format("woff");}.ff5{font-family:ff5;line-height:1.056641;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_3caa5c4acdc3911df8946b96.woff')format("woff");}.ff6{font-family:ff6;line-height:1.056641;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_2506b9f868408627b501dfb8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_93e9f3cc7668dbd9763be205.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.132600px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.121200px;}
.ls3{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.720000px;}
.ls4{letter-spacing:16.560000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws0{word-spacing:-17.352000px;}
.ws5{word-spacing:-16.085040px;}
.ws1{word-spacing:-15.831240px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-5.328000px;}
._2{margin-left:-3.880320px;}
._3{margin-left:-2.520000px;}
._1{margin-left:-1.083840px;}
._0{width:1.738560px;}
._10{width:3.733440px;}
._12{width:4.783680px;}
._19{width:5.832000px;}
._8{width:6.984000px;}
._9{width:8.496000px;}
._a{width:9.557760px;}
._11{width:10.770720px;}
._f{width:12.744000px;}
._5{width:13.752000px;}
._6{width:15.360000px;}
._13{width:16.632000px;}
._d{width:19.409280px;}
._15{width:20.736000px;}
._b{width:22.536000px;}
._c{width:23.965440px;}
._16{width:25.632000px;}
._17{width:27.499680px;}
._18{width:28.592640px;}
._7{width:30.528000px;}
._14{width:31.968000px;}
._e{width:36.360000px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,72,126);}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:34.956000px;}
.ya{bottom:39.276000px;}
.y97{bottom:65.376000px;}
.y3c{bottom:71.676000px;}
.y6d{bottom:77.976000px;}
.y96{bottom:84.456000px;}
.y3b{bottom:92.376000px;}
.y6c{bottom:98.676000px;}
.y95{bottom:103.356000px;}
.y3a{bottom:113.076000px;}
.y6b{bottom:119.376000px;}
.y94{bottom:122.436000px;}
.y39{bottom:133.776000px;}
.y6a{bottom:140.076000px;}
.y93{bottom:141.336000px;}
.y38{bottom:154.470000px;}
.y92{bottom:160.230000px;}
.y69{bottom:160.770000px;}
.y37{bottom:175.170000px;}
.y91{bottom:179.310000px;}
.y68{bottom:181.470000px;}
.y36{bottom:195.870000px;}
.y90{bottom:198.210000px;}
.y67{bottom:202.170000px;}
.y35{bottom:216.570000px;}
.y8f{bottom:217.290000px;}
.y66{bottom:222.870000px;}
.y8e{bottom:236.190000px;}
.y34{bottom:237.270000px;}
.y65{bottom:243.570000px;}
.y8d{bottom:255.270000px;}
.y33{bottom:257.970000px;}
.y64{bottom:264.270000px;}
.y8c{bottom:274.215000px;}
.y32{bottom:278.715000px;}
.y63{bottom:285.015000px;}
.y8b{bottom:293.115000px;}
.y31{bottom:299.415000px;}
.y62{bottom:305.715000px;}
.y8a{bottom:312.195000px;}
.y30{bottom:320.115000px;}
.y61{bottom:326.415000px;}
.y89{bottom:331.095000px;}
.y2f{bottom:340.815000px;}
.y60{bottom:347.115000px;}
.y88{bottom:350.175000px;}
.y2e{bottom:361.155000px;}
.y5f{bottom:367.815000px;}
.y87{bottom:369.075000px;}
.y2d{bottom:381.855000px;}
.y86{bottom:387.975000px;}
.y5e{bottom:388.515000px;}
.y2c{bottom:402.915000px;}
.y85{bottom:407.055000px;}
.y5d{bottom:409.215000px;}
.y2b{bottom:423.255000px;}
.y84{bottom:425.955000px;}
.y5c{bottom:429.915000px;}
.y2a{bottom:444.315000px;}
.y83{bottom:445.035000px;}
.y5b{bottom:450.615000px;}
.y82{bottom:463.935000px;}
.y29{bottom:465.015000px;}
.y5a{bottom:471.315000px;}
.y81{bottom:482.835000px;}
.y28{bottom:485.715000px;}
.y59{bottom:492.015000px;}
.y80{bottom:501.915000px;}
.y27{bottom:506.415000px;}
.y58{bottom:512.715000px;}
.y7f{bottom:520.815000px;}
.y26{bottom:527.115000px;}
.y57{bottom:533.415000px;}
.y7e{bottom:539.895000px;}
.y25{bottom:547.815000px;}
.y56{bottom:554.115000px;}
.y7d{bottom:558.825000px;}
.y24{bottom:568.545000px;}
.y55{bottom:574.845000px;}
.y7c{bottom:577.725000px;}
.y23{bottom:589.245000px;}
.y54{bottom:595.545000px;}
.y7b{bottom:596.805000px;}
.y22{bottom:609.945000px;}
.y7a{bottom:615.705000px;}
.y53{bottom:616.245000px;}
.y21{bottom:630.645000px;}
.y79{bottom:634.785000px;}
.y52{bottom:636.945000px;}
.y20{bottom:651.345000px;}
.y78{bottom:653.685000px;}
.y51{bottom:657.645000px;}
.y1f{bottom:672.045000px;}
.y77{bottom:672.585000px;}
.y50{bottom:678.345000px;}
.y76{bottom:691.665000px;}
.y1e{bottom:692.745000px;}
.y4f{bottom:699.045000px;}
.y75{bottom:710.565000px;}
.y1d{bottom:713.445000px;}
.y4e{bottom:719.745000px;}
.y74{bottom:729.645000px;}
.y1c{bottom:734.145000px;}
.y4d{bottom:740.445000px;}
.y73{bottom:748.545000px;}
.y1b{bottom:754.845000px;}
.y4c{bottom:761.145000px;}
.y72{bottom:767.625000px;}
.y1a{bottom:775.545000px;}
.y4b{bottom:781.845000px;}
.y71{bottom:786.525000px;}
.ya7{bottom:787.065000px;}
.y19{bottom:796.245000px;}
.y4a{bottom:802.545000px;}
.y70{bottom:805.425000px;}
.ya6{bottom:807.225000px;}
.y18{bottom:816.945000px;}
.y49{bottom:823.245000px;}
.y6f{bottom:824.505000px;}
.ya5{bottom:826.125000px;}
.y17{bottom:837.645000px;}
.y48{bottom:843.990000px;}
.ya4{bottom:845.250000px;}
.y16{bottom:858.390000px;}
.ya3{bottom:864.150000px;}
.y47{bottom:864.690000px;}
.y15{bottom:879.090000px;}
.ya2{bottom:883.230000px;}
.y46{bottom:885.390000px;}
.y14{bottom:899.430000px;}
.ya1{bottom:902.130000px;}
.y45{bottom:906.090000px;}
.y13{bottom:919.950000px;}
.ya0{bottom:921.030000px;}
.y6e{bottom:926.430000px;}
.y44{bottom:926.790000px;}
.y9f{bottom:940.110000px;}
.y12{bottom:940.290000px;}
.y43{bottom:947.490000px;}
.y9e{bottom:959.010000px;}
.y11{bottom:961.530000px;}
.y42{bottom:968.190000px;}
.y9d{bottom:978.090000px;}
.y10{bottom:982.230000px;}
.y41{bottom:988.890000px;}
.y9c{bottom:996.990000px;}
.yf{bottom:1002.750000px;}
.y40{bottom:1009.590000px;}
.y9b{bottom:1015.890000px;}
.ye{bottom:1023.810000px;}
.y3f{bottom:1030.290000px;}
.y9a{bottom:1034.970000px;}
.yd{bottom:1047.930000px;}
.y3e{bottom:1050.990000px;}
.y99{bottom:1053.870000px;}
.yc{bottom:1071.510000px;}
.y3d{bottom:1071.690000px;}
.y98{bottom:1072.950000px;}
.y9{bottom:1088.070000px;}
.y8{bottom:1093.650000px;}
.y7{bottom:1116.150000px;}
.y6{bottom:1133.280000px;}
.y5{bottom:1150.380000px;}
.y4{bottom:1167.300000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1207.620000px;}
.y1{bottom:1238.580000px;}
.h5{height:45.170156px;}
.he{height:46.251562px;}
.h7{height:50.068125px;}
.hc{height:50.273438px;}
.h4{height:54.421875px;}
.ha{height:60.679688px;}
.h6{height:63.673594px;}
.hd{height:65.010937px;}
.hb{height:70.664062px;}
.h9{height:72.562500px;}
.h3{height:81.632812px;}
.h8{height:84.898125px;}
.h2{height:105.996094px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x1{left:126.036000px;}
.x5{left:150.690000px;}
.x7{left:173.370000px;}
.x4{left:210.270000px;}
.x6{left:438.915000px;}
.x2{left:440.175000px;}
.x3{left:448.995000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.117867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.107733pt;}
.ls3{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls4{letter-spacing:14.720000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws0{word-spacing:-15.424000pt;}
.ws5{word-spacing:-14.297813pt;}
.ws1{word-spacing:-14.072213pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-4.736000pt;}
._2{margin-left:-3.449173pt;}
._3{margin-left:-2.240000pt;}
._1{margin-left:-0.963413pt;}
._0{width:1.545387pt;}
._10{width:3.318613pt;}
._12{width:4.252160pt;}
._19{width:5.184000pt;}
._8{width:6.208000pt;}
._9{width:7.552000pt;}
._a{width:8.495787pt;}
._11{width:9.573973pt;}
._f{width:11.328000pt;}
._5{width:12.224000pt;}
._6{width:13.653333pt;}
._13{width:14.784000pt;}
._d{width:17.252693pt;}
._15{width:18.432000pt;}
._b{width:20.032000pt;}
._c{width:21.302613pt;}
._16{width:22.784000pt;}
._17{width:24.444160pt;}
._18{width:25.415680pt;}
._7{width:27.136000pt;}
._14{width:28.416000pt;}
._e{width:32.320000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:31.072000pt;}
.ya{bottom:34.912000pt;}
.y97{bottom:58.112000pt;}
.y3c{bottom:63.712000pt;}
.y6d{bottom:69.312000pt;}
.y96{bottom:75.072000pt;}
.y3b{bottom:82.112000pt;}
.y6c{bottom:87.712000pt;}
.y95{bottom:91.872000pt;}
.y3a{bottom:100.512000pt;}
.y6b{bottom:106.112000pt;}
.y94{bottom:108.832000pt;}
.y39{bottom:118.912000pt;}
.y6a{bottom:124.512000pt;}
.y93{bottom:125.632000pt;}
.y38{bottom:137.306667pt;}
.y92{bottom:142.426667pt;}
.y69{bottom:142.906667pt;}
.y37{bottom:155.706667pt;}
.y91{bottom:159.386667pt;}
.y68{bottom:161.306667pt;}
.y36{bottom:174.106667pt;}
.y90{bottom:176.186667pt;}
.y67{bottom:179.706667pt;}
.y35{bottom:192.506667pt;}
.y8f{bottom:193.146667pt;}
.y66{bottom:198.106667pt;}
.y8e{bottom:209.946667pt;}
.y34{bottom:210.906667pt;}
.y65{bottom:216.506667pt;}
.y8d{bottom:226.906667pt;}
.y33{bottom:229.306667pt;}
.y64{bottom:234.906667pt;}
.y8c{bottom:243.746667pt;}
.y32{bottom:247.746667pt;}
.y63{bottom:253.346667pt;}
.y8b{bottom:260.546667pt;}
.y31{bottom:266.146667pt;}
.y62{bottom:271.746667pt;}
.y8a{bottom:277.506667pt;}
.y30{bottom:284.546667pt;}
.y61{bottom:290.146667pt;}
.y89{bottom:294.306667pt;}
.y2f{bottom:302.946667pt;}
.y60{bottom:308.546667pt;}
.y88{bottom:311.266667pt;}
.y2e{bottom:321.026667pt;}
.y5f{bottom:326.946667pt;}
.y87{bottom:328.066667pt;}
.y2d{bottom:339.426667pt;}
.y86{bottom:344.866667pt;}
.y5e{bottom:345.346667pt;}
.y2c{bottom:358.146667pt;}
.y85{bottom:361.826667pt;}
.y5d{bottom:363.746667pt;}
.y2b{bottom:376.226667pt;}
.y84{bottom:378.626667pt;}
.y5c{bottom:382.146667pt;}
.y2a{bottom:394.946667pt;}
.y83{bottom:395.586667pt;}
.y5b{bottom:400.546667pt;}
.y82{bottom:412.386667pt;}
.y29{bottom:413.346667pt;}
.y5a{bottom:418.946667pt;}
.y81{bottom:429.186667pt;}
.y28{bottom:431.746667pt;}
.y59{bottom:437.346667pt;}
.y80{bottom:446.146667pt;}
.y27{bottom:450.146667pt;}
.y58{bottom:455.746667pt;}
.y7f{bottom:462.946667pt;}
.y26{bottom:468.546667pt;}
.y57{bottom:474.146667pt;}
.y7e{bottom:479.906667pt;}
.y25{bottom:486.946667pt;}
.y56{bottom:492.546667pt;}
.y7d{bottom:496.733333pt;}
.y24{bottom:505.373333pt;}
.y55{bottom:510.973333pt;}
.y7c{bottom:513.533333pt;}
.y23{bottom:523.773333pt;}
.y54{bottom:529.373333pt;}
.y7b{bottom:530.493333pt;}
.y22{bottom:542.173333pt;}
.y7a{bottom:547.293333pt;}
.y53{bottom:547.773333pt;}
.y21{bottom:560.573333pt;}
.y79{bottom:564.253333pt;}
.y52{bottom:566.173333pt;}
.y20{bottom:578.973333pt;}
.y78{bottom:581.053333pt;}
.y51{bottom:584.573333pt;}
.y1f{bottom:597.373333pt;}
.y77{bottom:597.853333pt;}
.y50{bottom:602.973333pt;}
.y76{bottom:614.813333pt;}
.y1e{bottom:615.773333pt;}
.y4f{bottom:621.373333pt;}
.y75{bottom:631.613333pt;}
.y1d{bottom:634.173333pt;}
.y4e{bottom:639.773333pt;}
.y74{bottom:648.573333pt;}
.y1c{bottom:652.573333pt;}
.y4d{bottom:658.173333pt;}
.y73{bottom:665.373333pt;}
.y1b{bottom:670.973333pt;}
.y4c{bottom:676.573333pt;}
.y72{bottom:682.333333pt;}
.y1a{bottom:689.373333pt;}
.y4b{bottom:694.973333pt;}
.y71{bottom:699.133333pt;}
.ya7{bottom:699.613333pt;}
.y19{bottom:707.773333pt;}
.y4a{bottom:713.373333pt;}
.y70{bottom:715.933333pt;}
.ya6{bottom:717.533333pt;}
.y18{bottom:726.173333pt;}
.y49{bottom:731.773333pt;}
.y6f{bottom:732.893333pt;}
.ya5{bottom:734.333333pt;}
.y17{bottom:744.573333pt;}
.y48{bottom:750.213333pt;}
.ya4{bottom:751.333333pt;}
.y16{bottom:763.013333pt;}
.ya3{bottom:768.133333pt;}
.y47{bottom:768.613333pt;}
.y15{bottom:781.413333pt;}
.ya2{bottom:785.093333pt;}
.y46{bottom:787.013333pt;}
.y14{bottom:799.493333pt;}
.ya1{bottom:801.893333pt;}
.y45{bottom:805.413333pt;}
.y13{bottom:817.733333pt;}
.ya0{bottom:818.693333pt;}
.y6e{bottom:823.493333pt;}
.y44{bottom:823.813333pt;}
.y9f{bottom:835.653333pt;}
.y12{bottom:835.813333pt;}
.y43{bottom:842.213333pt;}
.y9e{bottom:852.453333pt;}
.y11{bottom:854.693333pt;}
.y42{bottom:860.613333pt;}
.y9d{bottom:869.413333pt;}
.y10{bottom:873.093333pt;}
.y41{bottom:879.013333pt;}
.y9c{bottom:886.213333pt;}
.yf{bottom:891.333333pt;}
.y40{bottom:897.413333pt;}
.y9b{bottom:903.013333pt;}
.ye{bottom:910.053333pt;}
.y3f{bottom:915.813333pt;}
.y9a{bottom:919.973333pt;}
.yd{bottom:931.493333pt;}
.y3e{bottom:934.213333pt;}
.y99{bottom:936.773333pt;}
.yc{bottom:952.453333pt;}
.y3d{bottom:952.613333pt;}
.y98{bottom:953.733333pt;}
.y9{bottom:967.173333pt;}
.y8{bottom:972.133333pt;}
.y7{bottom:992.133333pt;}
.y6{bottom:1007.360000pt;}
.y5{bottom:1022.560000pt;}
.y4{bottom:1037.600000pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1073.440000pt;}
.y1{bottom:1100.960000pt;}
.h5{height:40.151250pt;}
.he{height:41.112500pt;}
.h7{height:44.505000pt;}
.hc{height:44.687500pt;}
.h4{height:48.375000pt;}
.ha{height:53.937500pt;}
.h6{height:56.598750pt;}
.hd{height:57.787500pt;}
.hb{height:62.812500pt;}
.h9{height:64.500000pt;}
.h3{height:72.562500pt;}
.h8{height:75.465000pt;}
.h2{height:94.218750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1{left:112.032000pt;}
.x5{left:133.946667pt;}
.x7{left:154.106667pt;}
.x4{left:186.906667pt;}
.x6{left:390.146667pt;}
.x2{left:391.266667pt;}
.x3{left:399.106667pt;}
}




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