
    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_b04d76c18c6591c00ee6522a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094727;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_5fb56e38f36dfa1f16c437c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.712402;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_2f119be2dccc145cc717735b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_873315ea76a005d3f34844fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.908000;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_3b873c85f3aec209b4304a3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_0f1f1c3407e471fe241bfcdd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.063000;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_9cabaff7414fce8ef0fa1d20.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.021600px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.622080px;}
.lsb{letter-spacing:0.645840px;}
.ls4{letter-spacing:1.510440px;}
.ls8{letter-spacing:1.886400px;}
.ls7{letter-spacing:1.893600px;}
.ls6{letter-spacing:2.872800px;}
.ls2{letter-spacing:6.775200px;}
.ls9{letter-spacing:7.041600px;}
.ls3{letter-spacing:9.367200px;}
.lsd{letter-spacing:14.616000px;}
.ls5{letter-spacing:23.241600px;}
.lsa{letter-spacing:195.407700px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.978400px;}
.ws2{word-spacing:-16.992000px;}
.ws4{word-spacing:-13.899600px;}
.ws0{word-spacing:-0.686880px;}
.ws5{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-22.518900px;}
._23{margin-left:-14.518200px;}
._13{margin-left:-9.663900px;}
._f{margin-left:-6.692400px;}
._1b{margin-left:-2.886900px;}
._0{margin-left:-1.036800px;}
._b{width:1.576800px;}
._c{width:3.151800px;}
._9{width:4.325400px;}
._4{width:5.462100px;}
._a{width:6.758100px;}
._12{width:8.107200px;}
._10{width:9.460800px;}
._e{width:11.073600px;}
._1{width:12.398400px;}
._8{width:14.013000px;}
._6{width:15.104700px;}
._2{width:18.410400px;}
._d{width:19.555200px;}
._11{width:20.836800px;}
._3{width:22.348800px;}
._16{width:23.443200px;}
._14{width:25.092000px;}
._5{width:26.488800px;}
._1e{width:27.590400px;}
._22{width:28.868100px;}
._20{width:30.045600px;}
._1c{width:31.363200px;}
._7{width:32.392800px;}
._17{width:34.567200px;}
._15{width:36.410400px;}
._1d{width:37.836000px;}
._18{width:39.564000px;}
._19{width:41.469300px;}
._1f{width:42.652800px;}
._21{width:195.407700px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:56.160000px;}
.fs1{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.680000px;}
.y1{bottom:17.999970px;}
.y3{bottom:38.999970px;}
.y6f{bottom:118.559970px;}
.y2a{bottom:122.159970px;}
.y98{bottom:123.959955px;}
.y4f{bottom:127.919955px;}
.y7c{bottom:133.320030px;}
.y6e{bottom:142.680030px;}
.y29{bottom:146.640030px;}
.y97{bottom:148.440030px;}
.y4e{bottom:152.040030px;}
.y7b{bottom:157.800030px;}
.y8a{bottom:167.160030px;}
.y28{bottom:170.760030px;}
.y96{bottom:172.920030px;}
.y4d{bottom:176.520030px;}
.y6d{bottom:182.280030px;}
.y89{bottom:191.639880px;}
.y27{bottom:195.240030px;}
.y95{bottom:197.040030px;}
.y4c{bottom:201.000030px;}
.y6c{bottom:206.400030px;}
.y88{bottom:215.760030px;}
.y26{bottom:219.719880px;}
.y94{bottom:221.519880px;}
.y9f{bottom:225.120030px;}
.y6b{bottom:230.880030px;}
.y4b{bottom:240.240030px;}
.y8b{bottom:246.000030px;}
.y9e{bottom:249.599880px;}
.y6a{bottom:255.360030px;}
.y25{bottom:258.960030px;}
.y4a{bottom:264.719880px;}
.y7a{bottom:270.120030px;}
.y69{bottom:279.479880px;}
.y24{bottom:283.439880px;}
.y93{bottom:285.240030px;}
.y49{bottom:288.840030px;}
.y79{bottom:294.599880px;}
.y68{bottom:303.960030px;}
.y23{bottom:307.559880px;}
.y92{bottom:309.719880px;}
.y48{bottom:313.320030px;}
.y78{bottom:319.080030px;}
.y67{bottom:328.439880px;}
.y22{bottom:332.040030px;}
.y87{bottom:333.840030px;}
.y47{bottom:337.800030px;}
.y77{bottom:343.200030px;}
.y66{bottom:352.559880px;}
.y21{bottom:356.519880px;}
.y86{bottom:358.320030px;}
.y46{bottom:361.920030px;}
.y76{bottom:367.680030px;}
.y65{bottom:377.040030px;}
.y20{bottom:380.639880px;}
.y85{bottom:382.800030px;}
.y45{bottom:386.399880px;}
.y75{bottom:392.159880px;}
.y64{bottom:401.520030px;}
.y1f{bottom:405.120030px;}
.y84{bottom:406.919880px;}
.y44{bottom:410.880030px;}
.y74{bottom:416.280030px;}
.y63{bottom:425.639880px;}
.y1e{bottom:429.600030px;}
.y83{bottom:431.399880px;}
.y43{bottom:434.999880px;}
.y73{bottom:440.760030px;}
.y62{bottom:450.120030px;}
.y1d{bottom:453.719880px;}
.y82{bottom:455.880030px;}
.y42{bottom:459.479880px;}
.y72{bottom:465.239880px;}
.y61{bottom:474.600030px;}
.y1c{bottom:478.200030px;}
.y81{bottom:479.999880px;}
.y41{bottom:483.960030px;}
.y71{bottom:489.360030px;}
.y1b{bottom:502.680030px;}
.y80{bottom:504.479880px;}
.y9d{bottom:508.079880px;}
.y60{bottom:513.839880px;}
.y40{bottom:523.200030px;}
.y7f{bottom:528.960030px;}
.y9c{bottom:532.559880px;}
.y5f{bottom:538.319880px;}
.y1a{bottom:541.919880px;}
.y7e{bottom:553.079880px;}
.y9b{bottom:557.040030px;}
.y3f{bottom:562.440030px;}
.y19{bottom:566.399880px;}
.y7d{bottom:577.559880px;}
.y9a{bottom:581.159880px;}
.y5e{bottom:586.919880px;}
.y18{bottom:590.520030px;}
.y3e{bottom:602.040030px;}
.ya9{bottom:605.639880px;}
.y5d{bottom:611.399880px;}
.y17{bottom:614.999880px;}
.y99{bottom:620.759880px;}
.y3d{bottom:626.159880px;}
.y5c{bottom:635.520030px;}
.y16{bottom:639.479880px;}
.ya8{bottom:644.880030px;}
.y3c{bottom:650.639880px;}
.y5b{bottom:659.999880px;}
.y15{bottom:663.599880px;}
.y91{bottom:665.759880px;}
.y3b{bottom:675.120030px;}
.y5a{bottom:684.479880px;}
.y14{bottom:688.079880px;}
.y90{bottom:689.880030px;}
.y3a{bottom:699.239880px;}
.y59{bottom:708.599880px;}
.y13{bottom:712.559880px;}
.y8f{bottom:714.360030px;}
.y39{bottom:723.719880px;}
.ya7{bottom:733.079880px;}
.y12{bottom:736.679880px;}
.y8e{bottom:738.839880px;}
.y38{bottom:748.200030px;}
.ya6{bottom:757.559880px;}
.y8d{bottom:762.960030px;}
.y37{bottom:772.319880px;}
.y11{bottom:776.280030px;}
.ya5{bottom:781.679880px;}
.y8c{bottom:787.440030px;}
.y36{bottom:796.800030px;}
.y10{bottom:800.400030px;}
.ya4{bottom:806.159880px;}
.y70{bottom:811.920030px;}
.y58{bottom:821.280030px;}
.yf{bottom:824.879880px;}
.ya3{bottom:830.639880px;}
.y35{bottom:836.039880px;}
.y57{bottom:845.399880px;}
.ye{bottom:849.359880px;}
.ya2{bottom:854.760030px;}
.y34{bottom:860.519880px;}
.y56{bottom:869.879880px;}
.yd{bottom:873.479880px;}
.ya1{bottom:879.240030px;}
.y33{bottom:884.999880px;}
.y55{bottom:894.359880px;}
.yc{bottom:897.960030px;}
.y32{bottom:909.120030px;}
.y54{bottom:918.479880px;}
.yb{bottom:922.440030px;}
.y31{bottom:933.600030px;}
.y53{bottom:942.960030px;}
.ya{bottom:946.559880px;}
.y30{bottom:958.080030px;}
.y52{bottom:967.440030px;}
.y2f{bottom:982.199880px;}
.y9{bottom:986.159880px;}
.y51{bottom:991.559880px;}
.y2e{bottom:1006.679880px;}
.y50{bottom:1016.039880px;}
.y8{bottom:1025.399880px;}
.y2d{bottom:1031.159880px;}
.ya0{bottom:1040.519880px;}
.y2c{bottom:1055.280030px;}
.y7{bottom:1064.639880px;}
.y2b{bottom:1079.760030px;}
.y6{bottom:1104.239880px;}
.y2{bottom:1176.239880px;}
.y4{bottom:1189.559850px;}
.h4{height:20.160000px;}
.h3{height:45.625781px;}
.h5{height:48.528000px;}
.h6{height:58.320000px;}
.h2{height:60.257813px;}
.h1{height:1226.999850px;}
.h0{height:1263.000000px;}
.w2{width:8.640015px;}
.w3{width:16.920000px;}
.w1{width:856.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:18.000000px;}
.x2{left:109.439925px;}
.x9{left:162.539850px;}
.x5{left:300.551100px;}
.x6{left:360.041700px;}
.x7{left:369.509400px;}
.x8{left:454.664850px;}
.x3{left:572.323200px;}
.xa{left:748.080000px;}
.x4{left:756.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.019200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.552960pt;}
.lsb{letter-spacing:0.574080pt;}
.ls4{letter-spacing:1.342613pt;}
.ls8{letter-spacing:1.676800pt;}
.ls7{letter-spacing:1.683200pt;}
.ls6{letter-spacing:2.553600pt;}
.ls2{letter-spacing:6.022400pt;}
.ls9{letter-spacing:6.259200pt;}
.ls3{letter-spacing:8.326400pt;}
.lsd{letter-spacing:12.992000pt;}
.ls5{letter-spacing:20.659200pt;}
.lsa{letter-spacing:173.695733pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.980800pt;}
.ws2{word-spacing:-15.104000pt;}
.ws4{word-spacing:-12.355200pt;}
.ws0{word-spacing:-0.610560pt;}
.ws5{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-20.016800pt;}
._23{margin-left:-12.905067pt;}
._13{margin-left:-8.590133pt;}
._f{margin-left:-5.948800pt;}
._1b{margin-left:-2.566133pt;}
._0{margin-left:-0.921600pt;}
._b{width:1.401600pt;}
._c{width:2.801600pt;}
._9{width:3.844800pt;}
._4{width:4.855200pt;}
._a{width:6.007200pt;}
._12{width:7.206400pt;}
._10{width:8.409600pt;}
._e{width:9.843200pt;}
._1{width:11.020800pt;}
._8{width:12.456000pt;}
._6{width:13.426400pt;}
._2{width:16.364800pt;}
._d{width:17.382400pt;}
._11{width:18.521600pt;}
._3{width:19.865600pt;}
._16{width:20.838400pt;}
._14{width:22.304000pt;}
._5{width:23.545600pt;}
._1e{width:24.524800pt;}
._22{width:25.660533pt;}
._20{width:26.707200pt;}
._1c{width:27.878400pt;}
._7{width:28.793600pt;}
._17{width:30.726400pt;}
._15{width:32.364800pt;}
._1d{width:33.632000pt;}
._18{width:35.168000pt;}
._19{width:36.861600pt;}
._1f{width:37.913600pt;}
._21{width:173.695733pt;}
.fs2{font-size:49.920000pt;}
.fs1{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.160000pt;}
.y1{bottom:15.999973pt;}
.y3{bottom:34.666640pt;}
.y6f{bottom:105.386640pt;}
.y2a{bottom:108.586640pt;}
.y98{bottom:110.186627pt;}
.y4f{bottom:113.706627pt;}
.y7c{bottom:118.506693pt;}
.y6e{bottom:126.826693pt;}
.y29{bottom:130.346693pt;}
.y97{bottom:131.946693pt;}
.y4e{bottom:135.146693pt;}
.y7b{bottom:140.266693pt;}
.y8a{bottom:148.586693pt;}
.y28{bottom:151.786693pt;}
.y96{bottom:153.706693pt;}
.y4d{bottom:156.906693pt;}
.y6d{bottom:162.026693pt;}
.y89{bottom:170.346560pt;}
.y27{bottom:173.546693pt;}
.y95{bottom:175.146693pt;}
.y4c{bottom:178.666693pt;}
.y6c{bottom:183.466693pt;}
.y88{bottom:191.786693pt;}
.y26{bottom:195.306560pt;}
.y94{bottom:196.906560pt;}
.y9f{bottom:200.106693pt;}
.y6b{bottom:205.226693pt;}
.y4b{bottom:213.546693pt;}
.y8b{bottom:218.666693pt;}
.y9e{bottom:221.866560pt;}
.y6a{bottom:226.986693pt;}
.y25{bottom:230.186693pt;}
.y4a{bottom:235.306560pt;}
.y7a{bottom:240.106693pt;}
.y69{bottom:248.426560pt;}
.y24{bottom:251.946560pt;}
.y93{bottom:253.546693pt;}
.y49{bottom:256.746693pt;}
.y79{bottom:261.866560pt;}
.y68{bottom:270.186693pt;}
.y23{bottom:273.386560pt;}
.y92{bottom:275.306560pt;}
.y48{bottom:278.506693pt;}
.y78{bottom:283.626693pt;}
.y67{bottom:291.946560pt;}
.y22{bottom:295.146693pt;}
.y87{bottom:296.746693pt;}
.y47{bottom:300.266693pt;}
.y77{bottom:305.066693pt;}
.y66{bottom:313.386560pt;}
.y21{bottom:316.906560pt;}
.y86{bottom:318.506693pt;}
.y46{bottom:321.706693pt;}
.y76{bottom:326.826693pt;}
.y65{bottom:335.146693pt;}
.y20{bottom:338.346560pt;}
.y85{bottom:340.266693pt;}
.y45{bottom:343.466560pt;}
.y75{bottom:348.586560pt;}
.y64{bottom:356.906693pt;}
.y1f{bottom:360.106693pt;}
.y84{bottom:361.706560pt;}
.y44{bottom:365.226693pt;}
.y74{bottom:370.026693pt;}
.y63{bottom:378.346560pt;}
.y1e{bottom:381.866693pt;}
.y83{bottom:383.466560pt;}
.y43{bottom:386.666560pt;}
.y73{bottom:391.786693pt;}
.y62{bottom:400.106693pt;}
.y1d{bottom:403.306560pt;}
.y82{bottom:405.226693pt;}
.y42{bottom:408.426560pt;}
.y72{bottom:413.546560pt;}
.y61{bottom:421.866693pt;}
.y1c{bottom:425.066693pt;}
.y81{bottom:426.666560pt;}
.y41{bottom:430.186693pt;}
.y71{bottom:434.986693pt;}
.y1b{bottom:446.826693pt;}
.y80{bottom:448.426560pt;}
.y9d{bottom:451.626560pt;}
.y60{bottom:456.746560pt;}
.y40{bottom:465.066693pt;}
.y7f{bottom:470.186693pt;}
.y9c{bottom:473.386560pt;}
.y5f{bottom:478.506560pt;}
.y1a{bottom:481.706560pt;}
.y7e{bottom:491.626560pt;}
.y9b{bottom:495.146693pt;}
.y3f{bottom:499.946693pt;}
.y19{bottom:503.466560pt;}
.y7d{bottom:513.386560pt;}
.y9a{bottom:516.586560pt;}
.y5e{bottom:521.706560pt;}
.y18{bottom:524.906693pt;}
.y3e{bottom:535.146693pt;}
.ya9{bottom:538.346560pt;}
.y5d{bottom:543.466560pt;}
.y17{bottom:546.666560pt;}
.y99{bottom:551.786560pt;}
.y3d{bottom:556.586560pt;}
.y5c{bottom:564.906693pt;}
.y16{bottom:568.426560pt;}
.ya8{bottom:573.226693pt;}
.y3c{bottom:578.346560pt;}
.y5b{bottom:586.666560pt;}
.y15{bottom:589.866560pt;}
.y91{bottom:591.786560pt;}
.y3b{bottom:600.106693pt;}
.y5a{bottom:608.426560pt;}
.y14{bottom:611.626560pt;}
.y90{bottom:613.226693pt;}
.y3a{bottom:621.546560pt;}
.y59{bottom:629.866560pt;}
.y13{bottom:633.386560pt;}
.y8f{bottom:634.986693pt;}
.y39{bottom:643.306560pt;}
.ya7{bottom:651.626560pt;}
.y12{bottom:654.826560pt;}
.y8e{bottom:656.746560pt;}
.y38{bottom:665.066693pt;}
.ya6{bottom:673.386560pt;}
.y8d{bottom:678.186693pt;}
.y37{bottom:686.506560pt;}
.y11{bottom:690.026693pt;}
.ya5{bottom:694.826560pt;}
.y8c{bottom:699.946693pt;}
.y36{bottom:708.266693pt;}
.y10{bottom:711.466693pt;}
.ya4{bottom:716.586560pt;}
.y70{bottom:721.706693pt;}
.y58{bottom:730.026693pt;}
.yf{bottom:733.226560pt;}
.ya3{bottom:738.346560pt;}
.y35{bottom:743.146560pt;}
.y57{bottom:751.466560pt;}
.ye{bottom:754.986560pt;}
.ya2{bottom:759.786693pt;}
.y34{bottom:764.906560pt;}
.y56{bottom:773.226560pt;}
.yd{bottom:776.426560pt;}
.ya1{bottom:781.546693pt;}
.y33{bottom:786.666560pt;}
.y55{bottom:794.986560pt;}
.yc{bottom:798.186693pt;}
.y32{bottom:808.106693pt;}
.y54{bottom:816.426560pt;}
.yb{bottom:819.946693pt;}
.y31{bottom:829.866693pt;}
.y53{bottom:838.186693pt;}
.ya{bottom:841.386560pt;}
.y30{bottom:851.626693pt;}
.y52{bottom:859.946693pt;}
.y2f{bottom:873.066560pt;}
.y9{bottom:876.586560pt;}
.y51{bottom:881.386560pt;}
.y2e{bottom:894.826560pt;}
.y50{bottom:903.146560pt;}
.y8{bottom:911.466560pt;}
.y2d{bottom:916.586560pt;}
.ya0{bottom:924.906560pt;}
.y2c{bottom:938.026693pt;}
.y7{bottom:946.346560pt;}
.y2b{bottom:959.786693pt;}
.y6{bottom:981.546560pt;}
.y2{bottom:1045.546560pt;}
.y4{bottom:1057.386533pt;}
.h4{height:17.920000pt;}
.h3{height:40.556250pt;}
.h5{height:43.136000pt;}
.h6{height:51.840000pt;}
.h2{height:53.562500pt;}
.h1{height:1090.666533pt;}
.h0{height:1122.666667pt;}
.w2{width:7.680013pt;}
.w3{width:15.040000pt;}
.w1{width:761.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:16.000000pt;}
.x2{left:97.279933pt;}
.x9{left:144.479867pt;}
.x5{left:267.156533pt;}
.x6{left:320.037067pt;}
.x7{left:328.452800pt;}
.x8{left:404.146533pt;}
.x3{left:508.731733pt;}
.xa{left:664.960000pt;}
.x4{left:672.320000pt;}
}




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