
    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_1617bdd96c1dfe70ddb0e42f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.160645;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_b020671b6e53442e08241aeb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980469;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_a6ac9d3cfbd4797ecc67e4ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.244629;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_d09f7314fc90de5ad0fe6632.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.211426;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_48c78b87a00bcedf9f75853e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.193848;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_02ec64f494bdb1cdc4ddc7cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854004;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_2fc048427864af6a388f2b1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.162598;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);}
.v3{vertical-align:-15.120000px;}
.v2{vertical-align:-12.239869px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.119937px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001395px;}
.ls5{letter-spacing:0.001494px;}
.ls4{letter-spacing:0.001499px;}
.ls0{letter-spacing:0.001534px;}
.ls6{letter-spacing:0.001566px;}
.lsd{letter-spacing:0.181242px;}
.lsb{letter-spacing:0.362484px;}
.lse{letter-spacing:0.901152px;}
.ls7{letter-spacing:0.901296px;}
.lsc{letter-spacing:3.781219px;}
.ls8{letter-spacing:3.781224px;}
.lsa{letter-spacing:5.221255px;}
.ls1{letter-spacing:7.381166px;}
.ls9{letter-spacing:9.541215px;}
.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:-13.498763px;}
.ws0{word-spacing:-13.312998px;}
.ws1{word-spacing:-12.058875px;}
.ws4{word-spacing:-8.279235px;}
.ws5{word-spacing:-7.559303px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-4.229151px;}
._2{margin-left:-3.227068px;}
._3{margin-left:-2.127261px;}
._1{margin-left:-1.033483px;}
._0{width:1.014655px;}
._5{width:2.099159px;}
._9{width:3.467622px;}
._4{width:4.829863px;}
._b{width:6.387657px;}
._a{width:7.391416px;}
._8{width:8.599344px;}
._7{width:10.315375px;}
._f{width:12.320363px;}
._6{width:13.784967px;}
._11{width:15.069470px;}
._13{width:16.140513px;}
._15{width:18.827594px;}
._14{width:19.913206px;}
._d{width:25.208306px;}
._c{width:26.399572px;}
._10{width:42.450035px;}
._e{width:57.882600px;}
.fc7{color:rgb(42,96,153);}
.fc4{color:rgb(201,33,30);}
.fc3{color:rgb(32,33,34);}
.fc6{color:rgb(17,17,17);}
.fc5{color:rgb(94,94,94);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(25,25,25);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.237210px;}
.fs4{font-size:33.116940px;}
.fs3{font-size:48.235500px;}
.fs0{font-size:53.995050px;}
.fs2{font-size:59.754600px;}
.fs5{font-size:66.233700px;}
.fs1{font-size:71.993250px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.080024px;}
.y29{bottom:75.779983px;}
.y53{bottom:78.840018px;}
.y81{bottom:83.340018px;}
.y52{bottom:91.980010px;}
.y82{bottom:93.060035px;}
.y28{bottom:95.039978px;}
.y80{bottom:101.519988px;}
.y63{bottom:108.180037px;}
.y27{bottom:109.259994px;}
.y51{bottom:111.240005px;}
.y7f{bottom:119.879997px;}
.ya1{bottom:120.779983px;}
.y9d{bottom:121.860008px;}
.y50{bottom:124.379997px;}
.y83{bottom:125.460022px;}
.y5d{bottom:127.440033px;}
.y7e{bottom:138.060035px;}
.y26{bottom:138.600013px;}
.ya0{bottom:139.139991px;}
.y9c{bottom:140.039978px;}
.y4f{bottom:140.580024px;}
.y62{bottom:143.639991px;}
.y7d{bottom:156.240005px;}
.y25{bottom:156.779983px;}
.y9f{bottom:157.320030px;}
.y9b{bottom:158.220016px;}
.y4e{bottom:159.840018px;}
.y4d{bottom:172.980010px;}
.y7a{bottom:174.060035px;}
.y7c{bottom:174.420043px;}
.y9e{bottom:174.960022px;}
.y24{bottom:175.139991px;}
.y61{bottom:176.039978px;}
.y9a{bottom:176.399986px;}
.y5c{bottom:189.180037px;}
.y60{bottom:190.259994px;}
.y4c{bottom:192.240005px;}
.y7b{bottom:192.600013px;}
.y23{bottom:193.320030px;}
.y99{bottom:194.580024px;}
.y79{bottom:203.940033px;}
.y4b{bottom:208.440033px;}
.y5f{bottom:210.779983px;}
.y22{bottom:211.499999px;}
.y98{bottom:212.220016px;}
.y57{bottom:221.580024px;}
.y78{bottom:222.120003px;}
.y4a{bottom:222.659980px;}
.y5b{bottom:224.639991px;}
.y5e{bottom:229.139991px;}
.y97{bottom:229.499999px;}
.y21{bottom:229.680037px;}
.y56{bottom:237.779983px;}
.y77{bottom:240.300041px;}
.y96{bottom:246.779983px;}
.y49{bottom:247.320030px;}
.y20{bottom:247.860008px;}
.y5a{bottom:253.980010px;}
.y55{bottom:257.039978px;}
.y76{bottom:258.480010px;}
.y95{bottom:264.060035px;}
.y48{bottom:265.499999px;}
.y1f{bottom:266.039978px;}
.y54{bottom:271.259994px;}
.y59{bottom:273.240005px;}
.y75{bottom:276.659980px;}
.y94{bottom:281.340018px;}
.y47{bottom:283.680037px;}
.y1e{bottom:284.399986px;}
.y58{bottom:287.460022px;}
.y74{bottom:295.019988px;}
.y93{bottom:298.620003px;}
.y46{bottom:301.860008px;}
.y1d{bottom:302.580024px;}
.y73{bottom:313.200027px;}
.y92{bottom:315.720016px;}
.y45{bottom:320.220016px;}
.y1c{bottom:320.400021px;}
.y72{bottom:331.379997px;}
.y91{bottom:332.999999px;}
.y1b{bottom:336.600013px;}
.y44{bottom:338.400021px;}
.y71{bottom:349.560000px;}
.y90{bottom:350.280017px;}
.y1a{bottom:352.800006px;}
.y43{bottom:356.580024px;}
.y8f{bottom:367.560000px;}
.y70{bottom:367.740005px;}
.y19{bottom:368.999999px;}
.y42{bottom:374.759994px;}
.y8e{bottom:384.840018px;}
.y18{bottom:385.200027px;}
.y6f{bottom:385.920009px;}
.y41{bottom:392.939998px;}
.y17{bottom:401.400021px;}
.y8d{bottom:402.120003px;}
.y6e{bottom:404.640025px;}
.y40{bottom:411.300006px;}
.y16{bottom:417.420009px;}
.y8c{bottom:419.220016px;}
.y6d{bottom:423.360008px;}
.y3f{bottom:429.480010px;}
.y15{bottom:433.620003px;}
.y8b{bottom:436.499999px;}
.y6c{bottom:442.080024px;}
.y3e{bottom:447.660015px;}
.y14{bottom:449.819996px;}
.y8a{bottom:453.780017px;}
.y6b{bottom:460.800006px;}
.y3d{bottom:465.840018px;}
.y13{bottom:466.020023px;}
.y89{bottom:471.060000px;}
.y6a{bottom:479.520023px;}
.y12{bottom:482.220016px;}
.y3c{bottom:484.020023px;}
.y88{bottom:488.340018px;}
.y11{bottom:498.420009px;}
.y3b{bottom:502.200027px;}
.y87{bottom:505.620003px;}
.y10{bottom:514.620003px;}
.y69{bottom:517.140025px;}
.y3a{bottom:520.560000px;}
.y86{bottom:522.720016px;}
.yf{bottom:530.819996px;}
.y68{bottom:535.860008px;}
.y39{bottom:538.740005px;}
.y85{bottom:539.999999px;}
.ye{bottom:547.020023px;}
.y67{bottom:554.580024px;}
.y38{bottom:556.920009px;}
.y84{bottom:557.280017px;}
.yd{bottom:562.319996px;}
.y66{bottom:573.300006px;}
.y37{bottom:575.100013px;}
.yc{bottom:578.520023px;}
.y65{bottom:592.020023px;}
.y36{bottom:593.280017px;}
.yb{bottom:596.700027px;}
.y64{bottom:610.920009px;}
.y35{bottom:611.640008px;}
.ya{bottom:614.160015px;}
.y34{bottom:629.820013px;}
.y9{bottom:633.420009px;}
.y33{bottom:648.000016px;}
.y8{bottom:652.140008px;}
.y32{bottom:666.180004px;}
.y7{bottom:675.180004px;}
.y31{bottom:684.360008px;}
.y6{bottom:698.040012px;}
.y30{bottom:702.540012px;}
.y5{bottom:720.900003px;}
.y2f{bottom:739.080007px;}
.y4{bottom:743.760012px;}
.y2e{bottom:757.260012px;}
.y3{bottom:766.620010px;}
.y2d{bottom:775.440007px;}
.y2{bottom:789.660015px;}
.y2c{bottom:792.720007px;}
.y2b{bottom:809.460013px;}
.y2a{bottom:826.200009px;}
.hc{height:32.627350px;}
.hd{height:32.627354px;}
.ha{height:32.627624px;}
.he{height:40.733570px;}
.h8{height:44.867494px;}
.h7{height:45.691831px;}
.h5{height:50.224888px;}
.h2{height:51.147655px;}
.hb{height:51.200384px;}
.h3{height:54.311314px;}
.h9{height:55.981706px;}
.h6{height:56.603479px;}
.h4{height:73.364215px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x1{left:72.360000px;}
.x2{left:93.599997px;}
.x9{left:114.840002px;}
.x3{left:435.600014px;}
.x7{left:452.699993px;}
.x8{left:479.699993px;}
.x6{left:506.699993px;}
.x5{left:534.600014px;}
.x4{left:557.100014px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v2{vertical-align:-10.879884pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.439944pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.001240pt;}
.ls5{letter-spacing:0.001328pt;}
.ls4{letter-spacing:0.001332pt;}
.ls0{letter-spacing:0.001364pt;}
.ls6{letter-spacing:0.001392pt;}
.lsd{letter-spacing:0.161104pt;}
.lsb{letter-spacing:0.322208pt;}
.lse{letter-spacing:0.801024pt;}
.ls7{letter-spacing:0.801152pt;}
.lsc{letter-spacing:3.361084pt;}
.ls8{letter-spacing:3.361088pt;}
.lsa{letter-spacing:4.641116pt;}
.ls1{letter-spacing:6.561036pt;}
.ls9{letter-spacing:8.481080pt;}
.ws2{word-spacing:-11.998900pt;}
.ws0{word-spacing:-11.833776pt;}
.ws1{word-spacing:-10.719000pt;}
.ws4{word-spacing:-7.359320pt;}
.ws5{word-spacing:-6.719380pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-3.759246pt;}
._2{margin-left:-2.868505pt;}
._3{margin-left:-1.890899pt;}
._1{margin-left:-0.918652pt;}
._0{width:0.901915pt;}
._5{width:1.865919pt;}
._9{width:3.082330pt;}
._4{width:4.293212pt;}
._b{width:5.677917pt;}
._a{width:6.570148pt;}
._8{width:7.643862pt;}
._7{width:9.169222pt;}
._f{width:10.951434pt;}
._6{width:12.253304pt;}
._11{width:13.395085pt;}
._13{width:14.347122pt;}
._15{width:16.735639pt;}
._14{width:17.700627pt;}
._d{width:22.407383pt;}
._c{width:23.466286pt;}
._10{width:37.733364pt;}
._e{width:51.451200pt;}
.fs6{font-size:26.877520pt;}
.fs4{font-size:29.437280pt;}
.fs3{font-size:42.876000pt;}
.fs0{font-size:47.995600pt;}
.fs2{font-size:53.115200pt;}
.fs5{font-size:58.874400pt;}
.fs1{font-size:63.994000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:32.960021pt;}
.y29{bottom:67.359985pt;}
.y53{bottom:70.080016pt;}
.y81{bottom:74.080016pt;}
.y52{bottom:81.760009pt;}
.y82{bottom:82.720031pt;}
.y28{bottom:84.479980pt;}
.y80{bottom:90.239989pt;}
.y63{bottom:96.160033pt;}
.y27{bottom:97.119994pt;}
.y51{bottom:98.880004pt;}
.y7f{bottom:106.559997pt;}
.ya1{bottom:107.359985pt;}
.y9d{bottom:108.320007pt;}
.y50{bottom:110.559997pt;}
.y83{bottom:111.520019pt;}
.y5d{bottom:113.280029pt;}
.y7e{bottom:122.720031pt;}
.y26{bottom:123.200011pt;}
.ya0{bottom:123.679992pt;}
.y9c{bottom:124.479980pt;}
.y4f{bottom:124.960021pt;}
.y62{bottom:127.679992pt;}
.y7d{bottom:138.880004pt;}
.y25{bottom:139.359985pt;}
.y9f{bottom:139.840026pt;}
.y9b{bottom:140.640014pt;}
.y4e{bottom:142.080016pt;}
.y4d{bottom:153.760009pt;}
.y7a{bottom:154.720031pt;}
.y7c{bottom:155.040038pt;}
.y9e{bottom:155.520019pt;}
.y24{bottom:155.679992pt;}
.y61{bottom:156.479980pt;}
.y9a{bottom:156.799987pt;}
.y5c{bottom:168.160033pt;}
.y60{bottom:169.119994pt;}
.y4c{bottom:170.880004pt;}
.y7b{bottom:171.200011pt;}
.y23{bottom:171.840026pt;}
.y99{bottom:172.960021pt;}
.y79{bottom:181.280029pt;}
.y4b{bottom:185.280029pt;}
.y5f{bottom:187.359985pt;}
.y22{bottom:187.999999pt;}
.y98{bottom:188.640014pt;}
.y57{bottom:196.960021pt;}
.y78{bottom:197.440002pt;}
.y4a{bottom:197.919982pt;}
.y5b{bottom:199.679992pt;}
.y5e{bottom:203.679992pt;}
.y97{bottom:203.999999pt;}
.y21{bottom:204.160033pt;}
.y56{bottom:211.359985pt;}
.y77{bottom:213.600036pt;}
.y96{bottom:219.359985pt;}
.y49{bottom:219.840026pt;}
.y20{bottom:220.320007pt;}
.y5a{bottom:225.760009pt;}
.y55{bottom:228.479980pt;}
.y76{bottom:229.760009pt;}
.y95{bottom:234.720031pt;}
.y48{bottom:235.999999pt;}
.y1f{bottom:236.479980pt;}
.y54{bottom:241.119994pt;}
.y59{bottom:242.880004pt;}
.y75{bottom:245.919982pt;}
.y94{bottom:250.080016pt;}
.y47{bottom:252.160033pt;}
.y1e{bottom:252.799987pt;}
.y58{bottom:255.520019pt;}
.y74{bottom:262.239989pt;}
.y93{bottom:265.440002pt;}
.y46{bottom:268.320007pt;}
.y1d{bottom:268.960021pt;}
.y73{bottom:278.400024pt;}
.y92{bottom:280.640014pt;}
.y45{bottom:284.640014pt;}
.y1c{bottom:284.800018pt;}
.y72{bottom:294.559997pt;}
.y91{bottom:295.999999pt;}
.y1b{bottom:299.200011pt;}
.y44{bottom:300.800018pt;}
.y71{bottom:310.720000pt;}
.y90{bottom:311.360015pt;}
.y1a{bottom:313.600005pt;}
.y43{bottom:316.960021pt;}
.y8f{bottom:326.720000pt;}
.y70{bottom:326.880004pt;}
.y19{bottom:327.999999pt;}
.y42{bottom:333.119994pt;}
.y8e{bottom:342.080016pt;}
.y18{bottom:342.400024pt;}
.y6f{bottom:343.040008pt;}
.y41{bottom:349.279998pt;}
.y17{bottom:356.800018pt;}
.y8d{bottom:357.440002pt;}
.y6e{bottom:359.680022pt;}
.y40{bottom:365.600005pt;}
.y16{bottom:371.040008pt;}
.y8c{bottom:372.640014pt;}
.y6d{bottom:376.320007pt;}
.y3f{bottom:381.760009pt;}
.y15{bottom:385.440002pt;}
.y8b{bottom:387.999999pt;}
.y6c{bottom:392.960021pt;}
.y3e{bottom:397.920013pt;}
.y14{bottom:399.839996pt;}
.y8a{bottom:403.360015pt;}
.y6b{bottom:409.600005pt;}
.y3d{bottom:414.080016pt;}
.y13{bottom:414.240020pt;}
.y89{bottom:418.720000pt;}
.y6a{bottom:426.240020pt;}
.y12{bottom:428.640014pt;}
.y3c{bottom:430.240020pt;}
.y88{bottom:434.080016pt;}
.y11{bottom:443.040008pt;}
.y3b{bottom:446.400024pt;}
.y87{bottom:449.440002pt;}
.y10{bottom:457.440002pt;}
.y69{bottom:459.680022pt;}
.y3a{bottom:462.720000pt;}
.y86{bottom:464.640014pt;}
.yf{bottom:471.839996pt;}
.y68{bottom:476.320007pt;}
.y39{bottom:478.880004pt;}
.y85{bottom:479.999999pt;}
.ye{bottom:486.240020pt;}
.y67{bottom:492.960021pt;}
.y38{bottom:495.040008pt;}
.y84{bottom:495.360015pt;}
.yd{bottom:499.839996pt;}
.y66{bottom:509.600005pt;}
.y37{bottom:511.200011pt;}
.yc{bottom:514.240020pt;}
.y65{bottom:526.240020pt;}
.y36{bottom:527.360015pt;}
.yb{bottom:530.400024pt;}
.y64{bottom:543.040008pt;}
.y35{bottom:543.680007pt;}
.ya{bottom:545.920013pt;}
.y34{bottom:559.840011pt;}
.y9{bottom:563.040008pt;}
.y33{bottom:576.000014pt;}
.y8{bottom:579.680007pt;}
.y32{bottom:592.160003pt;}
.y7{bottom:600.160003pt;}
.y31{bottom:608.320007pt;}
.y6{bottom:620.480010pt;}
.y30{bottom:624.480010pt;}
.y5{bottom:640.800002pt;}
.y2f{bottom:656.960006pt;}
.y4{bottom:661.120010pt;}
.y2e{bottom:673.120010pt;}
.y3{bottom:681.440009pt;}
.y2d{bottom:689.280006pt;}
.y2{bottom:701.920013pt;}
.y2c{bottom:704.640006pt;}
.y2b{bottom:719.520011pt;}
.y2a{bottom:734.400008pt;}
.hc{height:29.002089pt;}
.hd{height:29.002093pt;}
.ha{height:29.002333pt;}
.he{height:36.207618pt;}
.h8{height:39.882217pt;}
.h7{height:40.614961pt;}
.h5{height:44.644345pt;}
.h2{height:45.464582pt;}
.hb{height:45.511453pt;}
.h3{height:48.276724pt;}
.h9{height:49.761517pt;}
.h6{height:50.314203pt;}
.h4{height:65.212636pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x1{left:64.320000pt;}
.x2{left:83.199997pt;}
.x9{left:102.080002pt;}
.x3{left:387.200012pt;}
.x7{left:402.399994pt;}
.x8{left:426.399994pt;}
.x6{left:450.399994pt;}
.x5{left:475.200012pt;}
.x4{left:495.200012pt;}
}




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