
    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_eb73801fd4167eb5bea8c5d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_86cb9c993aa74d331d882264.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c808c9118d40be4a9ae090b4.woff2')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_828e5a2bd8db30180e764dd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_6e3d9d65b0fd56d6e10b3b2f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,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);}
.v2{vertical-align:-33.120000px;}
.v4{vertical-align:-27.360000px;}
.v5{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:21.600000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.512353px;}
.ls5{letter-spacing:0.665280px;}
.ls3{letter-spacing:0.723169px;}
.ls1{letter-spacing:0.724033px;}
.ls0{letter-spacing:0.724897px;}
.ls9{letter-spacing:1.082593px;}
.ls8{letter-spacing:2.163457px;}
.ls6{letter-spacing:3.603745px;}
.lsb{letter-spacing:5.044033px;}
.ls4{letter-spacing:6.484321px;}
.lsa{letter-spacing:9.364897px;}
.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:-15.120000px;}
.ws1{word-spacing:-11.880000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:-7.560000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-6.111698px;}
._b{margin-left:-2.574690px;}
._0{margin-left:-1.410042px;}
._4{width:1.062690px;}
._7{width:2.094133px;}
._d{width:3.192359px;}
._8{width:4.379382px;}
._9{width:6.000168px;}
._a{width:7.063320px;}
._c{width:8.888835px;}
._10{width:10.063841px;}
._11{width:11.360874px;}
._f{width:12.512404px;}
._e{width:13.633083px;}
._5{width:16.787520px;}
._6{width:18.201606px;}
._16{width:19.656000px;}
._17{width:20.776575px;}
._14{width:22.186701px;}
._13{width:23.768640px;}
._15{width:25.374018px;}
._2{width:195.162056px;}
._3{width:198.042633px;}
._1{width:1111.185261px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs0{font-size:47.520000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.960000px;}
.y2{bottom:74.880000px;}
.y57{bottom:109.439850px;}
.y7d{bottom:114.840000px;}
.y56{bottom:123.120000px;}
.y87{bottom:128.520000px;}
.y90{bottom:131.760000px;}
.yb2{bottom:134.280000px;}
.y2e{bottom:136.800000px;}
.y2d{bottom:150.480000px;}
.y86{bottom:150.840000px;}
.y7c{bottom:151.560000px;}
.y55{bottom:156.240000px;}
.y8f{bottom:160.200000px;}
.y77{bottom:164.520000px;}
.y2c{bottom:169.920000px;}
.y2b{bottom:178.200000px;}
.yb1{bottom:180.720000px;}
.y7b{bottom:186.120000px;}
.y2a{bottom:191.880000px;}
.y54{bottom:192.240000px;}
.y85{bottom:197.640000px;}
.y29{bottom:205.920000px;}
.yb0{bottom:206.640000px;}
.y53{bottom:207.000000px;}
.y84{bottom:211.320000px;}
.y7a{bottom:212.040000px;}
.y28{bottom:219.600000px;}
.y83{bottom:220.680000px;}
.yaf{bottom:232.560000px;}
.y27{bottom:233.280000px;}
.y8a{bottom:233.640000px;}
.y52{bottom:237.600000px;}
.y26{bottom:247.320000px;}
.y89{bottom:252.720000px;}
.yae{bottom:258.480000px;}
.y25{bottom:261.000000px;}
.y88{bottom:262.080000px;}
.y51{bottom:263.520000px;}
.y76{bottom:274.680000px;}
.y8e{bottom:275.040000px;}
.y24{bottom:282.600000px;}
.yad{bottom:284.400000px;}
.y75{bottom:288.720000px;}
.y50{bottom:289.440000px;}
.y23{bottom:291.960000px;}
.y74{bottom:302.400000px;}
.y8d{bottom:307.800000px;}
.y82{bottom:310.320000px;}
.y22{bottom:311.040000px;}
.y4f{bottom:315.360000px;}
.y8c{bottom:316.440000px;}
.y21{bottom:320.400000px;}
.y73{bottom:321.480000px;}
.y72{bottom:330.120000px;}
.y81{bottom:333.360000px;}
.yac{bottom:335.880000px;}
.y4e{bottom:341.280000px;}
.y71{bottom:343.800000px;}
.y20{bottom:346.320000px;}
.y80{bottom:354.240000px;}
.y70{bottom:357.480000px;}
.yab{bottom:361.800000px;}
.y8b{bottom:363.240000px;}
.y4d{bottom:367.200000px;}
.y6f{bottom:371.520000px;}
.y1f{bottom:372.240000px;}
.y7f{bottom:374.760000px;}
.y6e{bottom:385.200000px;}
.yaa{bottom:387.720000px;}
.y4c{bottom:393.120000px;}
.y7e{bottom:395.640000px;}
.y1e{bottom:398.160000px;}
.y6d{bottom:398.880000px;}
.y6c{bottom:412.920000px;}
.ya9{bottom:413.640000px;}
.y4b{bottom:418.680000px;}
.y1d{bottom:424.080000px;}
.y6b{bottom:426.600000px;}
.ya8{bottom:439.560000px;}
.y4a{bottom:444.600000px;}
.y6a{bottom:445.680000px;}
.y1c{bottom:450.000000px;}
.y69{bottom:453.960000px;}
.ya7{bottom:465.480000px;}
.y68{bottom:468.000000px;}
.y49{bottom:470.520000px;}
.y1b{bottom:475.920000px;}
.y67{bottom:481.680000px;}
.ya6{bottom:491.400000px;}
.y66{bottom:495.360000px;}
.y48{bottom:496.440000px;}
.y1a{bottom:501.480000px;}
.y65{bottom:514.800000px;}
.ya5{bottom:517.320000px;}
.y47{bottom:522.360000px;}
.y64{bottom:523.080000px;}
.y19{bottom:527.400000px;}
.y63{bottom:536.760000px;}
.ya4{bottom:542.880000px;}
.y46{bottom:548.280000px;}
.y62{bottom:550.440000px;}
.y18{bottom:553.320000px;}
.y61{bottom:564.480000px;}
.ya3{bottom:568.800000px;}
.y45{bottom:574.200000px;}
.y60{bottom:578.160000px;}
.y17{bottom:579.240000px;}
.y5f{bottom:592.200000px;}
.ya2{bottom:594.720000px;}
.y44{bottom:600.120000px;}
.y16{bottom:605.160000px;}
.y5e{bottom:605.880000px;}
.y5d{bottom:619.560000px;}
.ya1{bottom:620.640000px;}
.y43{bottom:625.680000px;}
.y15{bottom:630.720000px;}
.y5c{bottom:633.600000px;}
.ya0{bottom:646.560000px;}
.y5b{bottom:647.280000px;}
.y42{bottom:651.600000px;}
.y14{bottom:656.640000px;}
.y5a{bottom:660.960000px;}
.y9f{bottom:672.480000px;}
.y59{bottom:675.000000px;}
.y41{bottom:677.520000px;}
.y13{bottom:682.920000px;}
.y58{bottom:694.080000px;}
.y9e{bottom:695.520000px;}
.y40{bottom:703.440000px;}
.y12{bottom:708.480000px;}
.y9d{bottom:716.400000px;}
.y3f{bottom:729.360000px;}
.y11{bottom:734.400000px;}
.y9c{bottom:736.920000px;}
.y3e{bottom:755.280000px;}
.y9b{bottom:757.800000px;}
.y10{bottom:760.320000px;}
.y9a{bottom:778.320000px;}
.y3d{bottom:781.200000px;}
.yf{bottom:786.240000px;}
.y99{bottom:799.200000px;}
.y3c{bottom:806.760000px;}
.ye{bottom:814.320000px;}
.y98{bottom:819.720000px;}
.y3b{bottom:832.680000px;}
.y97{bottom:840.600000px;}
.yd{bottom:844.920000px;}
.y3a{bottom:858.600000px;}
.y96{bottom:861.120000px;}
.yc{bottom:878.760000px;}
.y95{bottom:882.000000px;}
.y39{bottom:884.520000px;}
.y94{bottom:902.520000px;}
.y79{bottom:910.080000px;}
.y38{bottom:910.440000px;}
.yb{bottom:915.120000px;}
.y93{bottom:923.400000px;}
.y78{bottom:936.000000px;}
.y37{bottom:936.360000px;}
.y92{bottom:943.920000px;}
.ya{bottom:951.120000px;}
.y36{bottom:962.280000px;}
.y91{bottom:964.800000px;}
.y9{bottom:984.960000px;}
.y35{bottom:988.200000px;}
.y34{bottom:1013.760000px;}
.y8{bottom:1015.920000px;}
.y33{bottom:1039.680000px;}
.y7{bottom:1046.880000px;}
.y32{bottom:1065.600000px;}
.y6{bottom:1077.840000px;}
.y31{bottom:1091.520000px;}
.y5{bottom:1109.160000px;}
.y30{bottom:1117.440000px;}
.y4{bottom:1140.480000px;}
.y2f{bottom:1143.360000px;}
.y1{bottom:1197.000000px;}
.ha{height:29.678906px;}
.hc{height:38.158594px;}
.hb{height:46.638281px;}
.hd{height:47.891250px;}
.h1{height:50.703840px;}
.hf{height:51.278906px;}
.h10{height:59.328281px;}
.h3{height:59.357813px;}
.h8{height:60.952500px;}
.he{height:65.499609px;}
.h9{height:65.518594px;}
.h4{height:70.664062px;}
.h5{height:72.562500px;}
.h2{height:76.824000px;}
.h6{height:81.011250px;}
.h7{height:84.172500px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:86.400000px;}
.x1{left:128.880000px;}
.x5{left:213.840000px;}
.x3{left:352.080000px;}
.x6{left:384.120000px;}
.x4{left:564.480000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v4{vertical-align:-24.320000pt;}
.v5{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:19.200000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.455425pt;}
.ls5{letter-spacing:0.591360pt;}
.ls3{letter-spacing:0.642817pt;}
.ls1{letter-spacing:0.643585pt;}
.ls0{letter-spacing:0.644353pt;}
.ls9{letter-spacing:0.962304pt;}
.ls8{letter-spacing:1.923073pt;}
.ls6{letter-spacing:3.203329pt;}
.lsb{letter-spacing:4.483585pt;}
.ls4{letter-spacing:5.763841pt;}
.lsa{letter-spacing:8.324353pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-5.432621pt;}
._b{margin-left:-2.288613pt;}
._0{margin-left:-1.253371pt;}
._4{width:0.944613pt;}
._7{width:1.861451pt;}
._d{width:2.837653pt;}
._8{width:3.892784pt;}
._9{width:5.333483pt;}
._a{width:6.278506pt;}
._c{width:7.901187pt;}
._10{width:8.945636pt;}
._11{width:10.098555pt;}
._f{width:11.122137pt;}
._e{width:12.118296pt;}
._5{width:14.922240pt;}
._6{width:16.179206pt;}
._16{width:17.472000pt;}
._17{width:18.468066pt;}
._14{width:19.721512pt;}
._13{width:21.127680pt;}
._15{width:22.554683pt;}
._2{width:173.477383pt;}
._3{width:176.037896pt;}
._1{width:987.720232pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs0{font-size:42.240000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.520000pt;}
.y2{bottom:66.560000pt;}
.y57{bottom:97.279867pt;}
.y7d{bottom:102.080000pt;}
.y56{bottom:109.440000pt;}
.y87{bottom:114.240000pt;}
.y90{bottom:117.120000pt;}
.yb2{bottom:119.360000pt;}
.y2e{bottom:121.600000pt;}
.y2d{bottom:133.760000pt;}
.y86{bottom:134.080000pt;}
.y7c{bottom:134.720000pt;}
.y55{bottom:138.880000pt;}
.y8f{bottom:142.400000pt;}
.y77{bottom:146.240000pt;}
.y2c{bottom:151.040000pt;}
.y2b{bottom:158.400000pt;}
.yb1{bottom:160.640000pt;}
.y7b{bottom:165.440000pt;}
.y2a{bottom:170.560000pt;}
.y54{bottom:170.880000pt;}
.y85{bottom:175.680000pt;}
.y29{bottom:183.040000pt;}
.yb0{bottom:183.680000pt;}
.y53{bottom:184.000000pt;}
.y84{bottom:187.840000pt;}
.y7a{bottom:188.480000pt;}
.y28{bottom:195.200000pt;}
.y83{bottom:196.160000pt;}
.yaf{bottom:206.720000pt;}
.y27{bottom:207.360000pt;}
.y8a{bottom:207.680000pt;}
.y52{bottom:211.200000pt;}
.y26{bottom:219.840000pt;}
.y89{bottom:224.640000pt;}
.yae{bottom:229.760000pt;}
.y25{bottom:232.000000pt;}
.y88{bottom:232.960000pt;}
.y51{bottom:234.240000pt;}
.y76{bottom:244.160000pt;}
.y8e{bottom:244.480000pt;}
.y24{bottom:251.200000pt;}
.yad{bottom:252.800000pt;}
.y75{bottom:256.640000pt;}
.y50{bottom:257.280000pt;}
.y23{bottom:259.520000pt;}
.y74{bottom:268.800000pt;}
.y8d{bottom:273.600000pt;}
.y82{bottom:275.840000pt;}
.y22{bottom:276.480000pt;}
.y4f{bottom:280.320000pt;}
.y8c{bottom:281.280000pt;}
.y21{bottom:284.800000pt;}
.y73{bottom:285.760000pt;}
.y72{bottom:293.440000pt;}
.y81{bottom:296.320000pt;}
.yac{bottom:298.560000pt;}
.y4e{bottom:303.360000pt;}
.y71{bottom:305.600000pt;}
.y20{bottom:307.840000pt;}
.y80{bottom:314.880000pt;}
.y70{bottom:317.760000pt;}
.yab{bottom:321.600000pt;}
.y8b{bottom:322.880000pt;}
.y4d{bottom:326.400000pt;}
.y6f{bottom:330.240000pt;}
.y1f{bottom:330.880000pt;}
.y7f{bottom:333.120000pt;}
.y6e{bottom:342.400000pt;}
.yaa{bottom:344.640000pt;}
.y4c{bottom:349.440000pt;}
.y7e{bottom:351.680000pt;}
.y1e{bottom:353.920000pt;}
.y6d{bottom:354.560000pt;}
.y6c{bottom:367.040000pt;}
.ya9{bottom:367.680000pt;}
.y4b{bottom:372.160000pt;}
.y1d{bottom:376.960000pt;}
.y6b{bottom:379.200000pt;}
.ya8{bottom:390.720000pt;}
.y4a{bottom:395.200000pt;}
.y6a{bottom:396.160000pt;}
.y1c{bottom:400.000000pt;}
.y69{bottom:403.520000pt;}
.ya7{bottom:413.760000pt;}
.y68{bottom:416.000000pt;}
.y49{bottom:418.240000pt;}
.y1b{bottom:423.040000pt;}
.y67{bottom:428.160000pt;}
.ya6{bottom:436.800000pt;}
.y66{bottom:440.320000pt;}
.y48{bottom:441.280000pt;}
.y1a{bottom:445.760000pt;}
.y65{bottom:457.600000pt;}
.ya5{bottom:459.840000pt;}
.y47{bottom:464.320000pt;}
.y64{bottom:464.960000pt;}
.y19{bottom:468.800000pt;}
.y63{bottom:477.120000pt;}
.ya4{bottom:482.560000pt;}
.y46{bottom:487.360000pt;}
.y62{bottom:489.280000pt;}
.y18{bottom:491.840000pt;}
.y61{bottom:501.760000pt;}
.ya3{bottom:505.600000pt;}
.y45{bottom:510.400000pt;}
.y60{bottom:513.920000pt;}
.y17{bottom:514.880000pt;}
.y5f{bottom:526.400000pt;}
.ya2{bottom:528.640000pt;}
.y44{bottom:533.440000pt;}
.y16{bottom:537.920000pt;}
.y5e{bottom:538.560000pt;}
.y5d{bottom:550.720000pt;}
.ya1{bottom:551.680000pt;}
.y43{bottom:556.160000pt;}
.y15{bottom:560.640000pt;}
.y5c{bottom:563.200000pt;}
.ya0{bottom:574.720000pt;}
.y5b{bottom:575.360000pt;}
.y42{bottom:579.200000pt;}
.y14{bottom:583.680000pt;}
.y5a{bottom:587.520000pt;}
.y9f{bottom:597.760000pt;}
.y59{bottom:600.000000pt;}
.y41{bottom:602.240000pt;}
.y13{bottom:607.040000pt;}
.y58{bottom:616.960000pt;}
.y9e{bottom:618.240000pt;}
.y40{bottom:625.280000pt;}
.y12{bottom:629.760000pt;}
.y9d{bottom:636.800000pt;}
.y3f{bottom:648.320000pt;}
.y11{bottom:652.800000pt;}
.y9c{bottom:655.040000pt;}
.y3e{bottom:671.360000pt;}
.y9b{bottom:673.600000pt;}
.y10{bottom:675.840000pt;}
.y9a{bottom:691.840000pt;}
.y3d{bottom:694.400000pt;}
.yf{bottom:698.880000pt;}
.y99{bottom:710.400000pt;}
.y3c{bottom:717.120000pt;}
.ye{bottom:723.840000pt;}
.y98{bottom:728.640000pt;}
.y3b{bottom:740.160000pt;}
.y97{bottom:747.200000pt;}
.yd{bottom:751.040000pt;}
.y3a{bottom:763.200000pt;}
.y96{bottom:765.440000pt;}
.yc{bottom:781.120000pt;}
.y95{bottom:784.000000pt;}
.y39{bottom:786.240000pt;}
.y94{bottom:802.240000pt;}
.y79{bottom:808.960000pt;}
.y38{bottom:809.280000pt;}
.yb{bottom:813.440000pt;}
.y93{bottom:820.800000pt;}
.y78{bottom:832.000000pt;}
.y37{bottom:832.320000pt;}
.y92{bottom:839.040000pt;}
.ya{bottom:845.440000pt;}
.y36{bottom:855.360000pt;}
.y91{bottom:857.600000pt;}
.y9{bottom:875.520000pt;}
.y35{bottom:878.400000pt;}
.y34{bottom:901.120000pt;}
.y8{bottom:903.040000pt;}
.y33{bottom:924.160000pt;}
.y7{bottom:930.560000pt;}
.y32{bottom:947.200000pt;}
.y6{bottom:958.080000pt;}
.y31{bottom:970.240000pt;}
.y5{bottom:985.920000pt;}
.y30{bottom:993.280000pt;}
.y4{bottom:1013.760000pt;}
.y2f{bottom:1016.320000pt;}
.y1{bottom:1064.000000pt;}
.ha{height:26.381250pt;}
.hc{height:33.918750pt;}
.hb{height:41.456250pt;}
.hd{height:42.570000pt;}
.h1{height:45.070080pt;}
.hf{height:45.581250pt;}
.h10{height:52.736250pt;}
.h3{height:52.762500pt;}
.h8{height:54.180000pt;}
.he{height:58.221875pt;}
.h9{height:58.238750pt;}
.h4{height:62.812500pt;}
.h5{height:64.500000pt;}
.h2{height:68.288000pt;}
.h6{height:72.010000pt;}
.h7{height:74.820000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:76.800000pt;}
.x1{left:114.560000pt;}
.x5{left:190.080000pt;}
.x3{left:312.960000pt;}
.x6{left:341.440000pt;}
.x4{left:501.760000pt;}
}




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