
    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_4d67fd7bfbd055a2768a0e32.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_734d09bb445b70ec81acc12f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3207b753d30b0e8dd58c613f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.083984;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_1cef07820b3908850690a751.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.083984;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_c32a768e66169ee9c658901a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bf72de400b41b9004c97a32e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d9746dca20a78fedafc3aeb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls4{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:194.376000px;}
.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:-72.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.568000px;}
.ws2{word-spacing:-15.840000px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.833200px;}
.ws0{word-spacing:-10.612800px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-3.816000px;}
._6{margin-left:-2.398320px;}
._1{margin-left:-1.008000px;}
._0{width:1.317600px;}
._2{width:2.617920px;}
._e{width:3.784320px;}
._3{width:4.960080px;}
._4{width:6.209280px;}
._5{width:7.538160px;}
._c{width:9.432000px;}
._d{width:10.440000px;}
._a{width:12.384000px;}
._b{width:13.464000px;}
._13{width:15.408000px;}
._14{width:16.478400px;}
._11{width:19.728000px;}
._7{width:20.785680px;}
._8{width:22.320000px;}
._12{width:23.688720px;}
._f{width:27.360000px;}
._10{width:28.447200px;}
._16{width:29.467200px;}
._15{width:31.608000px;}
._17{width:272.808000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(50,62,79);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:131.760000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:10.080000px;}
.y2{bottom:40.320000px;}
.y1{bottom:57.600000px;}
.y7e{bottom:111.996000px;}
.y5b{bottom:116.136000px;}
.y38{bottom:130.176000px;}
.y7d{bottom:132.696000px;}
.y5a{bottom:136.836000px;}
.y9e{bottom:139.716000px;}
.y29{bottom:139.896000px;}
.y37{bottom:150.870000px;}
.y7c{bottom:153.390000px;}
.y59{bottom:157.530000px;}
.y9d{bottom:160.050000px;}
.y28{bottom:160.590000px;}
.y36{bottom:171.570000px;}
.y7b{bottom:174.090000px;}
.y58{bottom:178.230000px;}
.y9c{bottom:180.750000px;}
.y35{bottom:192.270000px;}
.y27{bottom:202.350000px;}
.y34{bottom:212.970000px;}
.y7a{bottom:216.210000px;}
.y57{bottom:219.810000px;}
.y9b{bottom:222.690000px;}
.y26{bottom:223.050000px;}
.y33{bottom:233.670000px;}
.y79{bottom:240.150000px;}
.y56{bottom:240.510000px;}
.y9a{bottom:243.390000px;}
.y25{bottom:243.750000px;}
.y99{bottom:263.730000px;}
.y24{bottom:264.450000px;}
.y32{bottom:275.070000px;}
.y55{bottom:282.270000px;}
.y23{bottom:285.150000px;}
.y54{bottom:302.970000px;}
.y98{bottom:305.490000px;}
.y22{bottom:305.850000px;}
.y31{bottom:316.650000px;}
.y97{bottom:326.190000px;}
.y21{bottom:326.550000px;}
.y53{bottom:344.775000px;}
.y96{bottom:346.935000px;}
.y20{bottom:347.295000px;}
.y30{bottom:358.815000px;}
.y52{bottom:365.475000px;}
.y95{bottom:367.635000px;}
.y1f{bottom:367.995000px;}
.y78{bottom:368.355000px;}
.y51{bottom:386.175000px;}
.y1e{bottom:388.695000px;}
.y77{bottom:389.055000px;}
.y2f{bottom:400.575000px;}
.y50{bottom:406.875000px;}
.y1d{bottom:409.395000px;}
.y76{bottom:430.635000px;}
.y2e{bottom:437.835000px;}
.y4f{bottom:448.455000px;}
.y75{bottom:451.335000px;}
.y94{bottom:451.695000px;}
.y1c{bottom:453.315000px;}
.y4e{bottom:469.155000px;}
.y1b{bottom:489.675000px;}
.y4d{bottom:489.855000px;}
.y74{bottom:493.095000px;}
.y93{bottom:496.515000px;}
.y4c{bottom:510.555000px;}
.y73{bottom:513.795000px;}
.y1a{bottom:520.995000px;}
.y4b{bottom:531.255000px;}
.y92{bottom:538.275000px;}
.y4a{bottom:551.955000px;}
.y19{bottom:554.655000px;}
.y72{bottom:555.555000px;}
.y91{bottom:558.975000px;}
.y71{bottom:576.255000px;}
.y90{bottom:579.675000px;}
.y18{bottom:585.255000px;}
.y49{bottom:593.715000px;}
.y70{bottom:596.955000px;}
.y8f{bottom:600.375000px;}
.y17{bottom:604.005000px;}
.y48{bottom:614.445000px;}
.y6f{bottom:617.685000px;}
.y8e{bottom:621.105000px;}
.y16{bottom:622.545000px;}
.y47{bottom:635.145000px;}
.y6e{bottom:638.385000px;}
.y15{bottom:641.085000px;}
.y8d{bottom:641.805000px;}
.y46{bottom:655.845000px;}
.y14{bottom:659.805000px;}
.y8c{bottom:662.505000px;}
.y45{bottom:676.545000px;}
.y13{bottom:678.345000px;}
.y6d{bottom:679.965000px;}
.y12{bottom:697.065000px;}
.y6c{bottom:700.665000px;}
.y8b{bottom:704.085000px;}
.y11{bottom:715.605000px;}
.y44{bottom:718.125000px;}
.y8a{bottom:724.785000px;}
.y10{bottom:734.145000px;}
.y6b{bottom:742.425000px;}
.y89{bottom:745.485000px;}
.yf{bottom:752.865000px;}
.y43{bottom:762.945000px;}
.y6a{bottom:763.125000px;}
.ye{bottom:771.405000px;}
.y69{bottom:783.825000px;}
.y88{bottom:787.245000px;}
.yd{bottom:790.125000px;}
.y42{bottom:807.585000px;}
.yc{bottom:821.265000px;}
.y68{bottom:825.585000px;}
.y87{bottom:829.005000px;}
.y67{bottom:846.285000px;}
.y41{bottom:849.345000px;}
.y86{bottom:849.705000px;}
.yb{bottom:861.045000px;}
.y66{bottom:866.985000px;}
.y40{bottom:870.045000px;}
.y85{bottom:870.405000px;}
.y65{bottom:887.730000px;}
.y3f{bottom:890.790000px;}
.y84{bottom:891.150000px;}
.y3e{bottom:911.490000px;}
.ya{bottom:912.390000px;}
.y64{bottom:929.310000px;}
.y83{bottom:932.730000px;}
.y9{bottom:947.130000px;}
.y63{bottom:950.010000px;}
.y3d{bottom:953.250000px;}
.y82{bottom:953.430000px;}
.y62{bottom:970.710000px;}
.y3c{bottom:973.950000px;}
.y81{bottom:974.130000px;}
.y8{bottom:974.310000px;}
.y61{bottom:991.410000px;}
.y80{bottom:994.830000px;}
.y7{bottom:1004.550000px;}
.y3b{bottom:1015.530000px;}
.y60{bottom:1033.170000px;}
.y3a{bottom:1036.230000px;}
.y6{bottom:1044.150000px;}
.y5f{bottom:1053.870000px;}
.y2d{bottom:1057.290000px;}
.y5e{bottom:1074.570000px;}
.y2c{bottom:1077.990000px;}
.y5{bottom:1085.010000px;}
.y5d{bottom:1095.270000px;}
.y39{bottom:1098.690000px;}
.y7f{bottom:1099.050000px;}
.y2b{bottom:1119.750000px;}
.y4{bottom:1126.050000px;}
.y5c{bottom:1137.390000px;}
.y2a{bottom:1140.480000px;}
.h3{height:21.600000px;}
.h7{height:44.648438px;}
.h4{height:47.980898px;}
.hd{height:50.273438px;}
.ha{height:58.651172px;}
.h6{height:62.648438px;}
.h2{height:65.884219px;}
.hc{height:70.664062px;}
.h9{height:72.562500px;}
.he{height:81.995625px;}
.hb{height:84.898125px;}
.h5{height:132.789375px;}
.h8{height:145.125000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:21.750000px;}
.x1{left:127.656000px;}
.x5{left:128.916000px;}
.x8{left:146.736000px;}
.xf{left:181.650000px;}
.xd{left:185.250000px;}
.x4{left:202.710000px;}
.x7{left:228.990000px;}
.x6{left:241.950000px;}
.xe{left:284.115000px;}
.xa{left:348.375000px;}
.x9{left:423.795000px;}
.xb{left:446.475000px;}
.x2{left:715.860000px;}
.xc{left:765.510000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:172.778667pt;}
.ws1{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.616000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.185067pt;}
.ws0{word-spacing:-9.433600pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-3.392000pt;}
._6{margin-left:-2.131840pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.171200pt;}
._2{width:2.327040pt;}
._e{width:3.363840pt;}
._3{width:4.408960pt;}
._4{width:5.519360pt;}
._5{width:6.700587pt;}
._c{width:8.384000pt;}
._d{width:9.280000pt;}
._a{width:11.008000pt;}
._b{width:11.968000pt;}
._13{width:13.696000pt;}
._14{width:14.647467pt;}
._11{width:17.536000pt;}
._7{width:18.476160pt;}
._8{width:19.840000pt;}
._12{width:21.056640pt;}
._f{width:24.320000pt;}
._10{width:25.286400pt;}
._16{width:26.193067pt;}
._15{width:28.096000pt;}
._17{width:242.496000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:117.120000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:8.960000pt;}
.y2{bottom:35.840000pt;}
.y1{bottom:51.200000pt;}
.y7e{bottom:99.552000pt;}
.y5b{bottom:103.232000pt;}
.y38{bottom:115.712000pt;}
.y7d{bottom:117.952000pt;}
.y5a{bottom:121.632000pt;}
.y9e{bottom:124.192000pt;}
.y29{bottom:124.352000pt;}
.y37{bottom:134.106667pt;}
.y7c{bottom:136.346667pt;}
.y59{bottom:140.026667pt;}
.y9d{bottom:142.266667pt;}
.y28{bottom:142.746667pt;}
.y36{bottom:152.506667pt;}
.y7b{bottom:154.746667pt;}
.y58{bottom:158.426667pt;}
.y9c{bottom:160.666667pt;}
.y35{bottom:170.906667pt;}
.y27{bottom:179.866667pt;}
.y34{bottom:189.306667pt;}
.y7a{bottom:192.186667pt;}
.y57{bottom:195.386667pt;}
.y9b{bottom:197.946667pt;}
.y26{bottom:198.266667pt;}
.y33{bottom:207.706667pt;}
.y79{bottom:213.466667pt;}
.y56{bottom:213.786667pt;}
.y9a{bottom:216.346667pt;}
.y25{bottom:216.666667pt;}
.y99{bottom:234.426667pt;}
.y24{bottom:235.066667pt;}
.y32{bottom:244.506667pt;}
.y55{bottom:250.906667pt;}
.y23{bottom:253.466667pt;}
.y54{bottom:269.306667pt;}
.y98{bottom:271.546667pt;}
.y22{bottom:271.866667pt;}
.y31{bottom:281.466667pt;}
.y97{bottom:289.946667pt;}
.y21{bottom:290.266667pt;}
.y53{bottom:306.466667pt;}
.y96{bottom:308.386667pt;}
.y20{bottom:308.706667pt;}
.y30{bottom:318.946667pt;}
.y52{bottom:324.866667pt;}
.y95{bottom:326.786667pt;}
.y1f{bottom:327.106667pt;}
.y78{bottom:327.426667pt;}
.y51{bottom:343.266667pt;}
.y1e{bottom:345.506667pt;}
.y77{bottom:345.826667pt;}
.y2f{bottom:356.066667pt;}
.y50{bottom:361.666667pt;}
.y1d{bottom:363.906667pt;}
.y76{bottom:382.786667pt;}
.y2e{bottom:389.186667pt;}
.y4f{bottom:398.626667pt;}
.y75{bottom:401.186667pt;}
.y94{bottom:401.506667pt;}
.y1c{bottom:402.946667pt;}
.y4e{bottom:417.026667pt;}
.y1b{bottom:435.266667pt;}
.y4d{bottom:435.426667pt;}
.y74{bottom:438.306667pt;}
.y93{bottom:441.346667pt;}
.y4c{bottom:453.826667pt;}
.y73{bottom:456.706667pt;}
.y1a{bottom:463.106667pt;}
.y4b{bottom:472.226667pt;}
.y92{bottom:478.466667pt;}
.y4a{bottom:490.626667pt;}
.y19{bottom:493.026667pt;}
.y72{bottom:493.826667pt;}
.y91{bottom:496.866667pt;}
.y71{bottom:512.226667pt;}
.y90{bottom:515.266667pt;}
.y18{bottom:520.226667pt;}
.y49{bottom:527.746667pt;}
.y70{bottom:530.626667pt;}
.y8f{bottom:533.666667pt;}
.y17{bottom:536.893333pt;}
.y48{bottom:546.173333pt;}
.y6f{bottom:549.053333pt;}
.y8e{bottom:552.093333pt;}
.y16{bottom:553.373333pt;}
.y47{bottom:564.573333pt;}
.y6e{bottom:567.453333pt;}
.y15{bottom:569.853333pt;}
.y8d{bottom:570.493333pt;}
.y46{bottom:582.973333pt;}
.y14{bottom:586.493333pt;}
.y8c{bottom:588.893333pt;}
.y45{bottom:601.373333pt;}
.y13{bottom:602.973333pt;}
.y6d{bottom:604.413333pt;}
.y12{bottom:619.613333pt;}
.y6c{bottom:622.813333pt;}
.y8b{bottom:625.853333pt;}
.y11{bottom:636.093333pt;}
.y44{bottom:638.333333pt;}
.y8a{bottom:644.253333pt;}
.y10{bottom:652.573333pt;}
.y6b{bottom:659.933333pt;}
.y89{bottom:662.653333pt;}
.yf{bottom:669.213333pt;}
.y43{bottom:678.173333pt;}
.y6a{bottom:678.333333pt;}
.ye{bottom:685.693333pt;}
.y69{bottom:696.733333pt;}
.y88{bottom:699.773333pt;}
.yd{bottom:702.333333pt;}
.y42{bottom:717.853333pt;}
.yc{bottom:730.013333pt;}
.y68{bottom:733.853333pt;}
.y87{bottom:736.893333pt;}
.y67{bottom:752.253333pt;}
.y41{bottom:754.973333pt;}
.y86{bottom:755.293333pt;}
.yb{bottom:765.373333pt;}
.y66{bottom:770.653333pt;}
.y40{bottom:773.373333pt;}
.y85{bottom:773.693333pt;}
.y65{bottom:789.093333pt;}
.y3f{bottom:791.813333pt;}
.y84{bottom:792.133333pt;}
.y3e{bottom:810.213333pt;}
.ya{bottom:811.013333pt;}
.y64{bottom:826.053333pt;}
.y83{bottom:829.093333pt;}
.y9{bottom:841.893333pt;}
.y63{bottom:844.453333pt;}
.y3d{bottom:847.333333pt;}
.y82{bottom:847.493333pt;}
.y62{bottom:862.853333pt;}
.y3c{bottom:865.733333pt;}
.y81{bottom:865.893333pt;}
.y8{bottom:866.053333pt;}
.y61{bottom:881.253333pt;}
.y80{bottom:884.293333pt;}
.y7{bottom:892.933333pt;}
.y3b{bottom:902.693333pt;}
.y60{bottom:918.373333pt;}
.y3a{bottom:921.093333pt;}
.y6{bottom:928.133333pt;}
.y5f{bottom:936.773333pt;}
.y2d{bottom:939.813333pt;}
.y5e{bottom:955.173333pt;}
.y2c{bottom:958.213333pt;}
.y5{bottom:964.453333pt;}
.y5d{bottom:973.573333pt;}
.y39{bottom:976.613333pt;}
.y7f{bottom:976.933333pt;}
.y2b{bottom:995.333333pt;}
.y4{bottom:1000.933333pt;}
.y5c{bottom:1011.013333pt;}
.y2a{bottom:1013.760000pt;}
.h3{height:19.200000pt;}
.h7{height:39.687500pt;}
.h4{height:42.649687pt;}
.hd{height:44.687500pt;}
.ha{height:52.134375pt;}
.h6{height:55.687500pt;}
.h2{height:58.563750pt;}
.hc{height:62.812500pt;}
.h9{height:64.500000pt;}
.he{height:72.885000pt;}
.hb{height:75.465000pt;}
.h5{height:118.035000pt;}
.h8{height:129.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:19.333333pt;}
.x1{left:113.472000pt;}
.x5{left:114.592000pt;}
.x8{left:130.432000pt;}
.xf{left:161.466667pt;}
.xd{left:164.666667pt;}
.x4{left:180.186667pt;}
.x7{left:203.546667pt;}
.x6{left:215.066667pt;}
.xe{left:252.546667pt;}
.xa{left:309.666667pt;}
.x9{left:376.706667pt;}
.xb{left:396.866667pt;}
.x2{left:636.320000pt;}
.xc{left:680.453333pt;}
}




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