
    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_bfcfd4650b55b55479f5d7a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992188;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_1bbffcfbb4b6d4783ab16649.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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);}
.v1{vertical-align:-37.322821px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-49.860002px;}
.ws2{word-spacing:-23.268000px;}
.ws3{word-spacing:-19.944001px;}
.wsa{word-spacing:-18.282001px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:78.084425px;}
.ws5{word-spacing:84.704030px;}
.wsf{word-spacing:127.599738px;}
.ws9{word-spacing:162.447685px;}
.wsd{word-spacing:174.303738px;}
.ws10{word-spacing:247.526400px;}
.wsc{word-spacing:277.204187px;}
.wse{word-spacing:286.359737px;}
.ws8{word-spacing:319.062019px;}
.ws6{word-spacing:323.514019px;}
.ws7{word-spacing:342.246019px;}
.wsb{word-spacing:821.046637px;}
._12{margin-left:-3562.623411px;}
._c{margin-left:-18.480000px;}
._f{margin-left:-8.448000px;}
._d{margin-left:-5.940000px;}
._0{margin-left:-4.440000px;}
._10{margin-left:-2.444443px;}
._24{margin-left:-1.312982px;}
._11{width:1.743615px;}
._7{width:5.940000px;}
._a{width:8.208000px;}
._8{width:15.228000px;}
._1{width:17.496001px;}
._4{width:18.576001px;}
._b{width:19.656001px;}
._3{width:20.952001px;}
._9{width:27.540001px;}
._5{width:37.260001px;}
._2{width:63.720002px;}
._6{width:78.840003px;}
._e{width:108.000426px;}
._22{width:154.634562px;}
._17{width:192.726289px;}
._1f{width:214.406563px;}
._18{width:270.342639px;}
._20{width:293.978399px;}
._1c{width:304.923647px;}
._14{width:342.330019px;}
._15{width:346.782019px;}
._1d{width:351.712187px;}
._23{width:420.152570px;}
._1e{width:443.672570px;}
._16{width:463.458288px;}
._21{width:466.856570px;}
._1b{width:756.685296px;}
._1a{width:946.962636px;}
._13{width:978.740337px;}
._19{width:993.666636px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(239,239,239);}
.fc2{color:rgb(204,204,204);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000004px;}
.fs6{font-size:72.000002px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000003px;}
.fs1{font-size:167.999999px;}
.fs8{font-size:180.000006px;}
.fs7{font-size:288.000009px;}
.fs0{font-size:312.000022px;}
.y0{bottom:0.000000px;}
.y56{bottom:22.214180px;}
.y7{bottom:25.040855px;}
.y58{bottom:26.579180px;}
.y77{bottom:33.382550px;}
.y6{bottom:45.290856px;}
.y9d{bottom:46.114592px;}
.y57{bottom:51.329183px;}
.y2e{bottom:55.229736px;}
.y5{bottom:65.540856px;}
.y9c{bottom:70.864595px;}
.y28{bottom:73.223830px;}
.y52{bottom:79.052557px;}
.y2d{bottom:79.979737px;}
.y76{bottom:80.632540px;}
.y3c{bottom:85.088846px;}
.y55{bottom:93.051936px;}
.y51{bottom:103.802560px;}
.y2c{bottom:104.729737px;}
.y3b{bottom:122.213847px;}
.y1f{bottom:123.472801px;}
.y75{bottom:127.882553px;}
.y4c{bottom:146.963848px;}
.y53{bottom:153.816731px;}
.y2f{bottom:154.769739px;}
.y3a{bottom:159.338848px;}
.y1e{bottom:175.042791px;}
.y74{bottom:175.132555px;}
.y4b{bottom:184.088849px;}
.y14{bottom:184.095419px;}
.y39{bottom:196.463849px;}
.y1d{bottom:197.542792px;}
.y7d{bottom:211.849813px;}
.y4a{bottom:221.213850px;}
.y13{bottom:221.220420px;}
.y27{bottom:221.723835px;}
.y2b{bottom:228.479741px;}
.y38{bottom:233.588850px;}
.y26{bottom:246.473838px;}
.y2a{bottom:253.229742px;}
.y7c{bottom:258.196293px;}
.y49{bottom:258.338851px;}
.y12{bottom:258.345421px;}
.y37{bottom:270.713851px;}
.y29{bottom:277.979745px;}
.y5b{bottom:280.990727px;}
.y48{bottom:295.463852px;}
.y11{bottom:295.470422px;}
.y5a{bottom:301.664157px;}
.y7b{bottom:304.542729px;}
.y36{bottom:307.838853px;}
.y1c{bottom:308.962851px;}
.y82{bottom:308.983675px;}
.y47{bottom:332.588853px;}
.y10{bottom:332.595423px;}
.y81{bottom:333.733678px;}
.y35{bottom:344.963854px;}
.y1b{bottom:346.087853px;}
.y7a{bottom:350.889209px;}
.y46{bottom:369.713855px;}
.yf{bottom:369.720425px;}
.y34{bottom:382.088855px;}
.y1a{bottom:383.212854px;}
.y25{bottom:383.213855px;}
.y79{bottom:397.684485px;}
.y3{bottom:403.236104px;}
.y45{bottom:406.838856px;}
.ye{bottom:406.845426px;}
.y91{bottom:413.791761px;}
.ya3{bottom:416.602855px;}
.y33{bottom:419.213856px;}
.y19{bottom:420.337855px;}
.y24{bottom:420.338856px;}
.y6d{bottom:437.830145px;}
.y63{bottom:438.541762px;}
.ya2{bottom:441.352856px;}
.y44{bottom:443.963857px;}
.yd{bottom:443.970427px;}
.y78{bottom:444.030932px;}
.y8a{bottom:447.872467px;}
.y6e{bottom:449.589543px;}
.y41{bottom:454.088857px;}
.y32{bottom:456.338857px;}
.y18{bottom:457.462856px;}
.y23{bottom:457.463857px;}
.ya8{bottom:463.042834px;}
.y62{bottom:463.291763px;}
.ya1{bottom:466.102856px;}
.y90{bottom:471.757309px;}
.y89{bottom:472.622468px;}
.y6c{bottom:472.752385px;}
.y9b{bottom:477.704161px;}
.y2{bottom:479.108161px;}
.y43{bottom:481.088858px;}
.yc{bottom:481.095428px;}
.ya7{bottom:485.542846px;}
.y61{bottom:488.041763px;}
.ya0{bottom:490.852857px;}
.y40{bottom:491.213859px;}
.y31{bottom:493.463859px;}
.y22{bottom:494.588859px;}
.y8f{bottom:496.507310px;}
.y88{bottom:497.372469px;}
.y80{bottom:500.213083px;}
.y73{bottom:501.987635px;}
.y9a{bottom:502.454161px;}
.y94{bottom:505.687436px;}
.y60{bottom:512.791764px;}
.y69{bottom:515.041764px;}
.y9f{bottom:515.602858px;}
.y17{bottom:518.212858px;}
.y42{bottom:518.213859px;}
.yb{bottom:518.220429px;}
.y6b{bottom:519.098843px;}
.y8e{bottom:521.257311px;}
.y87{bottom:522.122470px;}
.y30{bottom:526.853860px;}
.y99{bottom:527.204162px;}
.y3f{bottom:528.338860px;}
.ya6{bottom:532.792859px;}
.y7f{bottom:537.338084px;}
.y5f{bottom:537.541765px;}
.y68{bottom:539.791765px;}
.y9e{bottom:540.352859px;}
.y50{bottom:545.130352px;}
.y8d{bottom:546.007312px;}
.y86{bottom:546.872470px;}
.y72{bottom:551.487637px;}
.y98{bottom:551.954163px;}
.y93{bottom:552.033883px;}
.y16{bottom:555.337859px;}
.y21{bottom:555.338861px;}
.ya{bottom:555.345431px;}
.y5e{bottom:562.291766px;}
.y67{bottom:564.541766px;}
.y6a{bottom:565.445312px;}
.y3e{bottom:565.463861px;}
.y4f{bottom:569.880352px;}
.y8c{bottom:570.757312px;}
.y54{bottom:570.840340px;}
.y85{bottom:571.622471px;}
.y1{bottom:572.483175px;}
.y7e{bottom:574.463085px;}
.y71{bottom:576.237638px;}
.y97{bottom:576.704164px;}
.y59{bottom:578.414166px;}
.ya5{bottom:580.042860px;}
.y5d{bottom:587.041767px;}
.y66{bottom:589.291767px;}
.y15{bottom:592.462861px;}
.y20{bottom:592.463862px;}
.y9{bottom:592.470432px;}
.y4e{bottom:594.630353px;}
.y8b{bottom:595.507315px;}
.y84{bottom:596.372472px;}
.y92{bottom:598.380340px;}
.y70{bottom:600.987641px;}
.y96{bottom:601.454167px;}
.ya4{bottom:602.542861px;}
.y5c{bottom:611.791770px;}
.y65{bottom:614.041767px;}
.y4d{bottom:619.380356px;}
.y83{bottom:621.122475px;}
.y95{bottom:635.815392px;}
.y64{bottom:638.791771px;}
.y3d{bottom:638.847321px;}
.y6f{bottom:653.759289px;}
.y8{bottom:689.472327px;}
.y4{bottom:785.474999px;}
.h3{height:46.904297px;}
.h4{height:51.594729px;}
.h8{height:56.285158px;}
.h6{height:65.666015px;}
.h5{height:84.427737px;}
.h2{height:131.332031px;}
.h9{height:140.712895px;}
.h7{height:225.140632px;}
.h1{height:243.902361px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4{left:10.125000px;}
.x20{left:22.879486px;}
.x1b{left:25.998194px;}
.x5{left:29.329725px;}
.x15{left:35.238189px;}
.x6{left:46.939963px;}
.x2b{left:48.288758px;}
.x7{left:57.631857px;}
.x34{left:63.067894px;}
.x2c{left:65.675199px;}
.x25{left:67.932639px;}
.x10{left:69.596460px;}
.x1c{left:79.998193px;}
.x28{left:84.849575px;}
.x21{left:92.595468px;}
.x8{left:100.939964px;}
.x1f{left:114.733565px;}
.x26{left:118.939965px;}
.x29{left:124.526580px;}
.x1{left:156.237749px;}
.x24{left:191.285444px;}
.xb{left:245.999445px;}
.x3{left:251.761857px;}
.xa{left:262.329927px;}
.x9{left:264.651792px;}
.x1a{left:280.166341px;}
.x2{left:318.890637px;}
.x14{left:399.008859px;}
.x22{left:467.007877px;}
.x23{left:468.871103px;}
.x2e{left:483.156510px;}
.xf{left:502.556315px;}
.x1d{left:508.263811px;}
.x2a{left:550.122070px;}
.x2f{left:611.353370px;}
.x19{left:620.309045px;}
.x18{left:632.630900px;}
.x1e{left:647.480383px;}
.xc{left:666.393650px;}
.xe{left:675.140478px;}
.xd{left:676.283148px;}
.x2d{left:678.118150px;}
.x30{left:683.887826px;}
.x31{left:685.236621px;}
.x32{left:702.549859px;}
.x27{left:738.806142px;}
.x16{left:761.273687px;}
.x33{left:764.971569px;}
.x12{left:870.067940px;}
.x13{left:900.874041px;}
.x11{left:909.330723px;}
.x17{left:1012.880912px;}
@media print{
.v1{vertical-align:-33.175841pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-44.320001pt;}
.ws2{word-spacing:-20.682667pt;}
.ws3{word-spacing:-17.728001pt;}
.wsa{word-spacing:-16.250668pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:69.408378pt;}
.ws5{word-spacing:75.292471pt;}
.wsf{word-spacing:113.421989pt;}
.ws9{word-spacing:144.397942pt;}
.wsd{word-spacing:154.936656pt;}
.ws10{word-spacing:220.023466pt;}
.wsc{word-spacing:246.403722pt;}
.wse{word-spacing:254.541989pt;}
.ws8{word-spacing:283.610683pt;}
.ws6{word-spacing:287.568017pt;}
.ws7{word-spacing:304.218683pt;}
.wsb{word-spacing:729.819233pt;}
._12{margin-left:-3166.776365pt;}
._c{margin-left:-16.426667pt;}
._f{margin-left:-7.509334pt;}
._d{margin-left:-5.280000pt;}
._0{margin-left:-3.946667pt;}
._10{margin-left:-2.172838pt;}
._24{margin-left:-1.167095pt;}
._11{width:1.549880pt;}
._7{width:5.280000pt;}
._a{width:7.296000pt;}
._8{width:13.536000pt;}
._1{width:15.552000pt;}
._4{width:16.512001pt;}
._b{width:17.472001pt;}
._3{width:18.624001pt;}
._9{width:24.480001pt;}
._5{width:33.120001pt;}
._2{width:56.640002pt;}
._6{width:70.080002pt;}
._e{width:96.000379pt;}
._22{width:137.452944pt;}
._17{width:171.312257pt;}
._1f{width:190.583611pt;}
._18{width:240.304568pt;}
._20{width:261.314133pt;}
._1c{width:271.043242pt;}
._14{width:304.293350pt;}
._15{width:308.250683pt;}
._1d{width:312.633055pt;}
._23{width:373.468951pt;}
._1e{width:394.375618pt;}
._16{width:411.962923pt;}
._21{width:414.983618pt;}
._1b{width:672.609152pt;}
._1a{width:841.744565pt;}
._13{width:869.991410pt;}
._19{width:883.259232pt;}
.fs2{font-size:53.333334pt;}
.fs3{font-size:58.666670pt;}
.fs6{font-size:64.000002pt;}
.fs5{font-size:74.666666pt;}
.fs4{font-size:96.000003pt;}
.fs1{font-size:149.333333pt;}
.fs8{font-size:160.000005pt;}
.fs7{font-size:256.000008pt;}
.fs0{font-size:277.333353pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:19.745938pt;}
.y7{bottom:22.258538pt;}
.y58{bottom:23.625938pt;}
.y77{bottom:29.673378pt;}
.y6{bottom:40.258538pt;}
.y9d{bottom:40.990748pt;}
.y57{bottom:45.625940pt;}
.y2e{bottom:49.093099pt;}
.y5{bottom:58.258539pt;}
.y9c{bottom:62.990751pt;}
.y28{bottom:65.087849pt;}
.y52{bottom:70.268939pt;}
.y2d{bottom:71.093099pt;}
.y76{bottom:71.673369pt;}
.y3c{bottom:75.634529pt;}
.y55{bottom:82.712832pt;}
.y51{bottom:92.268942pt;}
.y2c{bottom:93.093100pt;}
.y3b{bottom:108.634530pt;}
.y1f{bottom:109.753600pt;}
.y75{bottom:113.673381pt;}
.y4c{bottom:130.634531pt;}
.y53{bottom:136.725983pt;}
.y2f{bottom:137.573101pt;}
.y3a{bottom:141.634531pt;}
.y1e{bottom:155.593592pt;}
.y74{bottom:155.673382pt;}
.y4b{bottom:163.634532pt;}
.y14{bottom:163.640372pt;}
.y39{bottom:174.634533pt;}
.y1d{bottom:175.593593pt;}
.y7d{bottom:188.310945pt;}
.y4a{bottom:196.634533pt;}
.y13{bottom:196.640373pt;}
.y27{bottom:197.087853pt;}
.y2b{bottom:203.093103pt;}
.y38{bottom:207.634534pt;}
.y26{bottom:219.087856pt;}
.y2a{bottom:225.093104pt;}
.y7c{bottom:229.507816pt;}
.y49{bottom:229.634534pt;}
.y12{bottom:229.640374pt;}
.y37{bottom:240.634535pt;}
.y29{bottom:247.093107pt;}
.y5b{bottom:249.769535pt;}
.y48{bottom:262.634535pt;}
.y11{bottom:262.640375pt;}
.y5a{bottom:268.145918pt;}
.y7b{bottom:270.704648pt;}
.y36{bottom:273.634536pt;}
.y1c{bottom:274.633646pt;}
.y82{bottom:274.652156pt;}
.y47{bottom:295.634536pt;}
.y10{bottom:295.640376pt;}
.y81{bottom:296.652158pt;}
.y35{bottom:306.634537pt;}
.y1b{bottom:307.633647pt;}
.y7a{bottom:311.901519pt;}
.y46{bottom:328.634537pt;}
.yf{bottom:328.640377pt;}
.y34{bottom:339.634538pt;}
.y1a{bottom:340.633648pt;}
.y25{bottom:340.634538pt;}
.y79{bottom:353.497320pt;}
.y3{bottom:358.432092pt;}
.y45{bottom:361.634539pt;}
.ye{bottom:361.640379pt;}
.y91{bottom:367.814899pt;}
.ya3{bottom:370.313649pt;}
.y33{bottom:372.634539pt;}
.y19{bottom:373.633649pt;}
.y24{bottom:373.634539pt;}
.y6d{bottom:389.182351pt;}
.y63{bottom:389.814899pt;}
.ya2{bottom:392.313650pt;}
.y44{bottom:394.634540pt;}
.yd{bottom:394.640380pt;}
.y78{bottom:394.694162pt;}
.y8a{bottom:398.108860pt;}
.y6e{bottom:399.635150pt;}
.y41{bottom:403.634540pt;}
.y32{bottom:405.634540pt;}
.y18{bottom:406.633650pt;}
.y23{bottom:406.634540pt;}
.ya8{bottom:411.593630pt;}
.y62{bottom:411.814900pt;}
.ya1{bottom:414.313650pt;}
.y90{bottom:419.339830pt;}
.y89{bottom:420.108860pt;}
.y6c{bottom:420.224342pt;}
.y9b{bottom:424.625921pt;}
.y2{bottom:425.873921pt;}
.y43{bottom:427.634541pt;}
.yc{bottom:427.640381pt;}
.ya7{bottom:431.593641pt;}
.y61{bottom:433.814901pt;}
.ya0{bottom:436.313651pt;}
.y40{bottom:436.634541pt;}
.y31{bottom:438.634541pt;}
.y22{bottom:439.634541pt;}
.y8f{bottom:441.339831pt;}
.y88{bottom:442.108861pt;}
.y80{bottom:444.633851pt;}
.y73{bottom:446.211231pt;}
.y9a{bottom:446.625921pt;}
.y94{bottom:449.499943pt;}
.y60{bottom:455.814902pt;}
.y69{bottom:457.814902pt;}
.y9f{bottom:458.313652pt;}
.y17{bottom:460.633652pt;}
.y42{bottom:460.634542pt;}
.yb{bottom:460.640382pt;}
.y6b{bottom:461.421194pt;}
.y8e{bottom:463.339832pt;}
.y87{bottom:464.108862pt;}
.y30{bottom:468.314542pt;}
.y99{bottom:468.625922pt;}
.y3f{bottom:469.634542pt;}
.ya6{bottom:473.593652pt;}
.y7f{bottom:477.633852pt;}
.y5f{bottom:477.814902pt;}
.y68{bottom:479.814902pt;}
.y9e{bottom:480.313652pt;}
.y50{bottom:484.560312pt;}
.y8d{bottom:485.339832pt;}
.y86{bottom:486.108863pt;}
.y72{bottom:490.211233pt;}
.y98{bottom:490.625923pt;}
.y93{bottom:490.696785pt;}
.y16{bottom:493.633653pt;}
.y21{bottom:493.634543pt;}
.ya{bottom:493.640383pt;}
.y5e{bottom:499.814903pt;}
.y67{bottom:501.814903pt;}
.y6a{bottom:502.618055pt;}
.y3e{bottom:502.634543pt;}
.y4f{bottom:506.560313pt;}
.y8c{bottom:507.339833pt;}
.y54{bottom:507.413635pt;}
.y85{bottom:508.108863pt;}
.y1{bottom:508.873933pt;}
.y7e{bottom:510.633853pt;}
.y71{bottom:512.211233pt;}
.y97{bottom:512.625923pt;}
.y59{bottom:514.145925pt;}
.ya5{bottom:515.593653pt;}
.y5d{bottom:521.814904pt;}
.y66{bottom:523.814904pt;}
.y15{bottom:526.633654pt;}
.y20{bottom:526.634544pt;}
.y9{bottom:526.640384pt;}
.y4e{bottom:528.560314pt;}
.y8b{bottom:529.339836pt;}
.y84{bottom:530.108864pt;}
.y92{bottom:531.893636pt;}
.y70{bottom:534.211236pt;}
.y96{bottom:534.625926pt;}
.ya4{bottom:535.593654pt;}
.y5c{bottom:543.814906pt;}
.y65{bottom:545.814904pt;}
.y4d{bottom:550.560317pt;}
.y83{bottom:552.108867pt;}
.y95{bottom:565.169237pt;}
.y64{bottom:567.814907pt;}
.y3d{bottom:567.864285pt;}
.y6f{bottom:581.119368pt;}
.y8{bottom:612.864291pt;}
.y4{bottom:698.199999pt;}
.h3{height:41.692709pt;}
.h4{height:45.861982pt;}
.h8{height:50.031252pt;}
.h6{height:58.369791pt;}
.h5{height:75.046877pt;}
.h2{height:116.739583pt;}
.h9{height:125.078129pt;}
.h7{height:200.125006pt;}
.h1{height:216.802099pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4{left:9.000000pt;}
.x20{left:20.337321pt;}
.x1b{left:23.109506pt;}
.x5{left:26.070867pt;}
.x15{left:31.322835pt;}
.x6{left:41.724411pt;}
.x2b{left:42.923340pt;}
.x7{left:51.228318pt;}
.x34{left:56.060350pt;}
.x2c{left:58.377955pt;}
.x25{left:60.384568pt;}
.x10{left:61.863520pt;}
.x1c{left:71.109505pt;}
.x28{left:75.421844pt;}
.x21{left:82.307083pt;}
.x8{left:89.724413pt;}
.x1f{left:101.985391pt;}
.x26{left:105.724413pt;}
.x29{left:110.690294pt;}
.x1{left:138.877999pt;}
.x24{left:170.031505pt;}
.xb{left:218.666173pt;}
.x3{left:223.788317pt;}
.xa{left:233.182157pt;}
.x9{left:235.246038pt;}
.x1a{left:249.036748pt;}
.x2{left:283.458344pt;}
.x14{left:354.674541pt;}
.x22{left:415.118113pt;}
.x23{left:416.774313pt;}
.x2e{left:429.472454pt;}
.xf{left:446.716724pt;}
.x1d{left:451.790054pt;}
.x2a{left:488.997396pt;}
.x2f{left:543.425217pt;}
.x19{left:551.385818pt;}
.x18{left:562.338578pt;}
.x1e{left:575.538118pt;}
.xc{left:592.349911pt;}
.xe{left:600.124869pt;}
.xd{left:601.140576pt;}
.x2d{left:602.771689pt;}
.x30{left:607.900289pt;}
.x31{left:609.099218pt;}
.x32{left:624.488764pt;}
.x27{left:656.716571pt;}
.x16{left:676.687722pt;}
.x33{left:679.974728pt;}
.x12{left:773.393725pt;}
.x13{left:800.776926pt;}
.x11{left:808.293976pt;}
.x17{left:900.338589pt;}
}




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