
    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_2074bd97f0e6cbb4a05b5f8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_1f63ba4c268a009c0b419d58.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_67eb896459167e3ad7bf8764.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_9979c3c679028ee20cae1538.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_777c57fab5e3e9a034519c15.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_8a268e24d40df0c9cc0b3560.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_76794f861c2425c4cc94a3b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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:ff8;src:url('chunks/assets/font_2dec76f14bcb09001b1cba29.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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);}
.v1{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.864000px;}
.ls4{letter-spacing:3.905280px;}
.ls1{letter-spacing:14.400000px;}
.ls0{letter-spacing:1832.700000px;}
.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;}
}
.ws6{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.970240px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-7.948800px;}
._11{margin-left:-6.128640px;}
._5{margin-left:-5.075280px;}
._b{margin-left:-3.659760px;}
._23{margin-left:-2.522640px;}
._0{margin-left:-1.457280px;}
._2{width:1.127040px;}
._7{width:2.223360px;}
._13{width:4.104000px;}
._1c{width:5.273280px;}
._16{width:6.624000px;}
._17{width:8.136000px;}
._21{width:9.360000px;}
._12{width:10.512000px;}
._14{width:11.664000px;}
._19{width:13.248000px;}
._15{width:14.616000px;}
._18{width:15.912000px;}
._26{width:19.008000px;}
._1b{width:20.304000px;}
._6{width:22.046880px;}
._1a{width:23.322720px;}
._20{width:25.056000px;}
._22{width:26.424000px;}
._24{width:27.672960px;}
._3{width:28.823760px;}
._4{width:30.068640px;}
._1f{width:31.106880px;}
._1d{width:33.192000px;}
._1e{width:34.344000px;}
._25{width:35.424000px;}
._f{width:36.601920px;}
._10{width:40.698000px;}
._e{width:43.039200px;}
._27{width:45.864000px;}
._c{width:67.415040px;}
._d{width:72.938400px;}
._a{width:74.692800px;}
._9{width:76.341600px;}
._8{width:77.469840px;}
._2e{width:80.029440px;}
._2d{width:81.089280px;}
._2f{width:96.120000px;}
._30{width:97.128000px;}
._32{width:145.008000px;}
._29{width:150.048000px;}
._28{width:152.640000px;}
._2c{width:166.176000px;}
._31{width:226.008000px;}
._2b{width:525.786240px;}
._2a{width:535.680000px;}
.fc2{color:rgb(0,0,10);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.420000px;}
.y3{bottom:96.876000px;}
.y2{bottom:116.676000px;}
.y1{bottom:136.116000px;}
.y67{bottom:155.910000px;}
.y92{bottom:161.130000px;}
.y7a{bottom:169.050000px;}
.y2b{bottom:175.170000px;}
.y49{bottom:185.070000px;}
.y66{bottom:187.050000px;}
.y91{bottom:192.090000px;}
.y2a{bottom:195.870000px;}
.y79{bottom:200.190000px;}
.y48{bottom:216.210000px;}
.y29{bottom:216.570000px;}
.y65{bottom:218.010000px;}
.y90{bottom:223.230000px;}
.y78{bottom:231.150000px;}
.y28{bottom:237.270000px;}
.y47{bottom:247.170000px;}
.y64{bottom:249.150000px;}
.y8f{bottom:252.390000px;}
.y9b{bottom:254.190000px;}
.y27{bottom:257.970000px;}
.y77{bottom:262.290000px;}
.y46{bottom:278.310000px;}
.y26{bottom:278.670000px;}
.y63{bottom:280.110000px;}
.y76{bottom:293.250000px;}
.y9a{bottom:297.210000px;}
.y25{bottom:299.370000px;}
.y45{bottom:309.270000px;}
.y62{bottom:311.250000px;}
.y8e{bottom:313.230000px;}
.y24{bottom:320.070000px;}
.yaf{bottom:320.250000px;}
.y75{bottom:322.410000px;}
.y99{bottom:328.350000px;}
.y44{bottom:340.455000px;}
.y23{bottom:340.815000px;}
.y61{bottom:342.255000px;}
.y8d{bottom:344.415000px;}
.yae{bottom:351.435000px;}
.y98{bottom:359.355000px;}
.y22{bottom:361.515000px;}
.y43{bottom:371.415000px;}
.y60{bottom:373.395000px;}
.y8c{bottom:375.375000px;}
.y21{bottom:382.215000px;}
.yad{bottom:382.395000px;}
.y74{bottom:383.475000px;}
.y97{bottom:402.375000px;}
.y42{bottom:402.555000px;}
.y20{bottom:402.915000px;}
.y5f{bottom:404.355000px;}
.y8b{bottom:406.515000px;}
.y73{bottom:414.435000px;}
.y1f{bottom:425.235000px;}
.yac{bottom:425.595000px;}
.y41{bottom:433.515000px;}
.y5e{bottom:435.495000px;}
.y72{bottom:445.575000px;}
.y1e{bottom:448.095000px;}
.y8a{bottom:449.535000px;}
.yab{bottom:456.555000px;}
.y40{bottom:464.655000px;}
.y5d{bottom:466.455000px;}
.y1d{bottom:470.415000px;}
.y96{bottom:476.535000px;}
.y89{bottom:480.495000px;}
.yaa{bottom:487.695000px;}
.y71{bottom:488.595000px;}
.y1c{bottom:491.115000px;}
.y3f{bottom:495.615000px;}
.y5c{bottom:497.595000px;}
.y95{bottom:507.675000px;}
.y88{bottom:511.635000px;}
.y1b{bottom:511.815000px;}
.y70{bottom:519.555000px;}
.y3e{bottom:526.755000px;}
.y5b{bottom:528.555000px;}
.ya9{bottom:530.715000px;}
.y1a{bottom:532.515000px;}
.y87{bottom:542.595000px;}
.y6f{bottom:550.695000px;}
.y19{bottom:553.215000px;}
.y3d{bottom:557.715000px;}
.y5a{bottom:559.695000px;}
.ya8{bottom:561.675000px;}
.y18{bottom:573.915000px;}
.y6e{bottom:581.655000px;}
.y86{bottom:585.615000px;}
.y3c{bottom:588.855000px;}
.y59{bottom:590.655000px;}
.y17{bottom:594.615000px;}
.ya7{bottom:604.725000px;}
.y94{bottom:612.825000px;}
.y16{bottom:615.345000px;}
.y85{bottom:616.785000px;}
.y3b{bottom:619.845000px;}
.y58{bottom:621.645000px;}
.y6d{bottom:624.705000px;}
.ya6{bottom:635.865000px;}
.y15{bottom:636.045000px;}
.y84{bottom:647.745000px;}
.y3a{bottom:650.985000px;}
.y57{bottom:652.785000px;}
.y6c{bottom:655.845000px;}
.y14{bottom:656.745000px;}
.ya5{bottom:666.825000px;}
.y13{bottom:677.445000px;}
.y39{bottom:681.945000px;}
.y56{bottom:683.745000px;}
.y93{bottom:685.005000px;}
.y6b{bottom:686.805000px;}
.y83{bottom:690.945000px;}
.y12{bottom:698.145000px;}
.ya4{bottom:709.845000px;}
.y38{bottom:712.905000px;}
.y55{bottom:714.885000px;}
.y6a{bottom:717.945000px;}
.y82{bottom:721.905000px;}
.y11{bottom:732.525000px;}
.ya3{bottom:740.985000px;}
.y37{bottom:744.045000px;}
.y54{bottom:745.845000px;}
.y69{bottom:748.905000px;}
.y81{bottom:753.045000px;}
.y10{bottom:754.845000px;}
.ya2{bottom:771.945000px;}
.y36{bottom:775.005000px;}
.y53{bottom:776.985000px;}
.yf{bottom:777.165000px;}
.y68{bottom:778.065000px;}
.y80{bottom:784.005000px;}
.y35{bottom:806.145000px;}
.y52{bottom:807.945000px;}
.ye{bottom:811.545000px;}
.ya1{bottom:815.145000px;}
.y7f{bottom:827.025000px;}
.yd{bottom:833.865000px;}
.y34{bottom:837.105000px;}
.y51{bottom:839.085000px;}
.ya0{bottom:846.105000px;}
.y7e{bottom:858.165000px;}
.y33{bottom:868.245000px;}
.yc{bottom:870.045000px;}
.y9f{bottom:877.290000px;}
.y7d{bottom:889.170000px;}
.y32{bottom:899.250000px;}
.yb{bottom:899.790000px;}
.y50{bottom:901.230000px;}
.y9e{bottom:908.250000px;}
.y7c{bottom:920.310000px;}
.ya{bottom:929.670000px;}
.y31{bottom:930.390000px;}
.y4f{bottom:932.190000px;}
.y7b{bottom:951.270000px;}
.y30{bottom:961.350000px;}
.y4e{bottom:963.330000px;}
.y9{bottom:971.430000px;}
.y9d{bottom:982.410000px;}
.y2f{bottom:992.490000px;}
.y4d{bottom:994.290000px;}
.y9c{bottom:1013.370000px;}
.y8{bottom:1015.170000px;}
.y2e{bottom:1021.650000px;}
.y4c{bottom:1025.430000px;}
.y7{bottom:1046.850000px;}
.y4b{bottom:1056.390000px;}
.y2d{bottom:1073.850000px;}
.y6{bottom:1078.530000px;}
.y4a{bottom:1087.530000px;}
.y2c{bottom:1096.170000px;}
.y5{bottom:1118.490000px;}
.h6{height:59.343750px;}
.h2{height:59.383125px;}
.h7{height:63.949219px;}
.h4{height:64.546875px;}
.h3{height:65.884219px;}
.h8{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x6{left:170.129987px;}
.x2{left:180.749987px;}
.x3{left:202.889987px;}
.x4{left:285.374987px;}
.x5{left:467.924987px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls4{letter-spacing:3.471360pt;}
.ls1{letter-spacing:12.800000pt;}
.ls0{letter-spacing:1629.066667pt;}
.ws6{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.306880pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-7.065600pt;}
._11{margin-left:-5.447680pt;}
._5{margin-left:-4.511360pt;}
._b{margin-left:-3.253120pt;}
._23{margin-left:-2.242347pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.001813pt;}
._7{width:1.976320pt;}
._13{width:3.648000pt;}
._1c{width:4.687360pt;}
._16{width:5.888000pt;}
._17{width:7.232000pt;}
._21{width:8.320000pt;}
._12{width:9.344000pt;}
._14{width:10.368000pt;}
._19{width:11.776000pt;}
._15{width:12.992000pt;}
._18{width:14.144000pt;}
._26{width:16.896000pt;}
._1b{width:18.048000pt;}
._6{width:19.597227pt;}
._1a{width:20.731307pt;}
._20{width:22.272000pt;}
._22{width:23.488000pt;}
._24{width:24.598187pt;}
._3{width:25.621120pt;}
._4{width:26.727680pt;}
._1f{width:27.650560pt;}
._1d{width:29.504000pt;}
._1e{width:30.528000pt;}
._25{width:31.488000pt;}
._f{width:32.535040pt;}
._10{width:36.176000pt;}
._e{width:38.257067pt;}
._27{width:40.768000pt;}
._c{width:59.924480pt;}
._d{width:64.834133pt;}
._a{width:66.393600pt;}
._9{width:67.859200pt;}
._8{width:68.862080pt;}
._2e{width:71.137280pt;}
._2d{width:72.079360pt;}
._2f{width:85.440000pt;}
._30{width:86.336000pt;}
._32{width:128.896000pt;}
._29{width:133.376000pt;}
._28{width:135.680000pt;}
._2c{width:147.712000pt;}
._31{width:200.896000pt;}
._2b{width:467.365547pt;}
._2a{width:476.160000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.040000pt;}
.y3{bottom:86.112000pt;}
.y2{bottom:103.712000pt;}
.y1{bottom:120.992000pt;}
.y67{bottom:138.586667pt;}
.y92{bottom:143.226667pt;}
.y7a{bottom:150.266667pt;}
.y2b{bottom:155.706667pt;}
.y49{bottom:164.506667pt;}
.y66{bottom:166.266667pt;}
.y91{bottom:170.746667pt;}
.y2a{bottom:174.106667pt;}
.y79{bottom:177.946667pt;}
.y48{bottom:192.186667pt;}
.y29{bottom:192.506667pt;}
.y65{bottom:193.786667pt;}
.y90{bottom:198.426667pt;}
.y78{bottom:205.466667pt;}
.y28{bottom:210.906667pt;}
.y47{bottom:219.706667pt;}
.y64{bottom:221.466667pt;}
.y8f{bottom:224.346667pt;}
.y9b{bottom:225.946667pt;}
.y27{bottom:229.306667pt;}
.y77{bottom:233.146667pt;}
.y46{bottom:247.386667pt;}
.y26{bottom:247.706667pt;}
.y63{bottom:248.986667pt;}
.y76{bottom:260.666667pt;}
.y9a{bottom:264.186667pt;}
.y25{bottom:266.106667pt;}
.y45{bottom:274.906667pt;}
.y62{bottom:276.666667pt;}
.y8e{bottom:278.426667pt;}
.y24{bottom:284.506667pt;}
.yaf{bottom:284.666667pt;}
.y75{bottom:286.586667pt;}
.y99{bottom:291.866667pt;}
.y44{bottom:302.626667pt;}
.y23{bottom:302.946667pt;}
.y61{bottom:304.226667pt;}
.y8d{bottom:306.146667pt;}
.yae{bottom:312.386667pt;}
.y98{bottom:319.426667pt;}
.y22{bottom:321.346667pt;}
.y43{bottom:330.146667pt;}
.y60{bottom:331.906667pt;}
.y8c{bottom:333.666667pt;}
.y21{bottom:339.746667pt;}
.yad{bottom:339.906667pt;}
.y74{bottom:340.866667pt;}
.y97{bottom:357.666667pt;}
.y42{bottom:357.826667pt;}
.y20{bottom:358.146667pt;}
.y5f{bottom:359.426667pt;}
.y8b{bottom:361.346667pt;}
.y73{bottom:368.386667pt;}
.y1f{bottom:377.986667pt;}
.yac{bottom:378.306667pt;}
.y41{bottom:385.346667pt;}
.y5e{bottom:387.106667pt;}
.y72{bottom:396.066667pt;}
.y1e{bottom:398.306667pt;}
.y8a{bottom:399.586667pt;}
.yab{bottom:405.826667pt;}
.y40{bottom:413.026667pt;}
.y5d{bottom:414.626667pt;}
.y1d{bottom:418.146667pt;}
.y96{bottom:423.586667pt;}
.y89{bottom:427.106667pt;}
.yaa{bottom:433.506667pt;}
.y71{bottom:434.306667pt;}
.y1c{bottom:436.546667pt;}
.y3f{bottom:440.546667pt;}
.y5c{bottom:442.306667pt;}
.y95{bottom:451.266667pt;}
.y88{bottom:454.786667pt;}
.y1b{bottom:454.946667pt;}
.y70{bottom:461.826667pt;}
.y3e{bottom:468.226667pt;}
.y5b{bottom:469.826667pt;}
.ya9{bottom:471.746667pt;}
.y1a{bottom:473.346667pt;}
.y87{bottom:482.306667pt;}
.y6f{bottom:489.506667pt;}
.y19{bottom:491.746667pt;}
.y3d{bottom:495.746667pt;}
.y5a{bottom:497.506667pt;}
.ya8{bottom:499.266667pt;}
.y18{bottom:510.146667pt;}
.y6e{bottom:517.026667pt;}
.y86{bottom:520.546667pt;}
.y3c{bottom:523.426667pt;}
.y59{bottom:525.026667pt;}
.y17{bottom:528.546667pt;}
.ya7{bottom:537.533333pt;}
.y94{bottom:544.733333pt;}
.y16{bottom:546.973333pt;}
.y85{bottom:548.253333pt;}
.y3b{bottom:550.973333pt;}
.y58{bottom:552.573333pt;}
.y6d{bottom:555.293333pt;}
.ya6{bottom:565.213333pt;}
.y15{bottom:565.373333pt;}
.y84{bottom:575.773333pt;}
.y3a{bottom:578.653333pt;}
.y57{bottom:580.253333pt;}
.y6c{bottom:582.973333pt;}
.y14{bottom:583.773333pt;}
.ya5{bottom:592.733333pt;}
.y13{bottom:602.173333pt;}
.y39{bottom:606.173333pt;}
.y56{bottom:607.773333pt;}
.y93{bottom:608.893333pt;}
.y6b{bottom:610.493333pt;}
.y83{bottom:614.173333pt;}
.y12{bottom:620.573333pt;}
.ya4{bottom:630.973333pt;}
.y38{bottom:633.693333pt;}
.y55{bottom:635.453333pt;}
.y6a{bottom:638.173333pt;}
.y82{bottom:641.693333pt;}
.y11{bottom:651.133333pt;}
.ya3{bottom:658.653333pt;}
.y37{bottom:661.373333pt;}
.y54{bottom:662.973333pt;}
.y69{bottom:665.693333pt;}
.y81{bottom:669.373333pt;}
.y10{bottom:670.973333pt;}
.ya2{bottom:686.173333pt;}
.y36{bottom:688.893333pt;}
.y53{bottom:690.653333pt;}
.yf{bottom:690.813333pt;}
.y68{bottom:691.613333pt;}
.y80{bottom:696.893333pt;}
.y35{bottom:716.573333pt;}
.y52{bottom:718.173333pt;}
.ye{bottom:721.373333pt;}
.ya1{bottom:724.573333pt;}
.y7f{bottom:735.133333pt;}
.yd{bottom:741.213333pt;}
.y34{bottom:744.093333pt;}
.y51{bottom:745.853333pt;}
.ya0{bottom:752.093333pt;}
.y7e{bottom:762.813333pt;}
.y33{bottom:771.773333pt;}
.yc{bottom:773.373333pt;}
.y9f{bottom:779.813333pt;}
.y7d{bottom:790.373333pt;}
.y32{bottom:799.333333pt;}
.yb{bottom:799.813333pt;}
.y50{bottom:801.093333pt;}
.y9e{bottom:807.333333pt;}
.y7c{bottom:818.053333pt;}
.ya{bottom:826.373333pt;}
.y31{bottom:827.013333pt;}
.y4f{bottom:828.613333pt;}
.y7b{bottom:845.573333pt;}
.y30{bottom:854.533333pt;}
.y4e{bottom:856.293333pt;}
.y9{bottom:863.493333pt;}
.y9d{bottom:873.253333pt;}
.y2f{bottom:882.213333pt;}
.y4d{bottom:883.813333pt;}
.y9c{bottom:900.773333pt;}
.y8{bottom:902.373333pt;}
.y2e{bottom:908.133333pt;}
.y4c{bottom:911.493333pt;}
.y7{bottom:930.533333pt;}
.y4b{bottom:939.013333pt;}
.y2d{bottom:954.533333pt;}
.y6{bottom:958.693333pt;}
.y4a{bottom:966.693333pt;}
.y2c{bottom:974.373333pt;}
.y5{bottom:994.213333pt;}
.h6{height:52.750000pt;}
.h2{height:52.785000pt;}
.h7{height:56.843750pt;}
.h4{height:57.375000pt;}
.h3{height:58.563750pt;}
.h8{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x6{left:151.226655pt;}
.x2{left:160.666655pt;}
.x3{left:180.346655pt;}
.x4{left:253.666655pt;}
.x5{left:415.933322pt;}
}




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