
    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_394fabd54a0ebda7d94d2578.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_a6174f60ca339275a2617022.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_959a47edbf455396a621e4c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_ccd94c4e2558c1a5fd3402a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_70552b546bf2b337d2b6bba0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.132324;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_f1ec23b4dc79279b8a1d87d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.747070;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_dab0959f3593380e40256f33.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972168;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_886c814782900c4fb717f896.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.132324;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;}
.ls8{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.282000px;}
.ls7{letter-spacing:-0.150000px;}
.ls3{letter-spacing:-0.132000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.084000px;}
.ls0{letter-spacing:0.132000px;}
.ls6{letter-spacing:1.500000px;}
.ls1{letter-spacing:70.152000px;}
.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;}
}
.ws7{word-spacing:-60.000000px;}
.ws6{word-spacing:-17.400000px;}
.ws0{word-spacing:-15.048000px;}
.ws2{word-spacing:-14.916000px;}
.ws1{word-spacing:-14.784000px;}
.ws5{word-spacing:-14.766000px;}
.ws4{word-spacing:-14.634000px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-3.762000px;}
._2{margin-left:-2.508000px;}
._1{margin-left:-1.320000px;}
._0{width:1.254000px;}
._a{width:2.442000px;}
._3{width:3.498000px;}
._4{width:4.554000px;}
._5{width:6.402000px;}
._b{width:7.992000px;}
._8{width:9.636000px;}
._1b{width:10.680000px;}
._7{width:11.682000px;}
._6{width:12.870000px;}
._9{width:16.632000px;}
._12{width:18.942000px;}
._19{width:20.724000px;}
._18{width:22.038000px;}
._d{width:23.760000px;}
._c{width:25.038000px;}
._17{width:27.060000px;}
._10{width:28.248000px;}
._e{width:29.370000px;}
._f{width:30.756000px;}
._1c{width:32.040000px;}
._11{width:36.036000px;}
._14{width:37.224000px;}
._1a{width:42.174000px;}
._15{width:59.268000px;}
._16{width:60.390000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y81{bottom:119.287500px;}
.y22{bottom:135.412500px;}
.y70{bottom:141.412500px;}
.y24{bottom:144.000000px;}
.y80{bottom:148.537500px;}
.y47{bottom:156.420000px;}
.y6f{bottom:163.170000px;}
.y23{bottom:163.500000px;}
.y21{bottom:169.155000px;}
.y46{bottom:178.200000px;}
.y6e{bottom:184.950000px;}
.y45{bottom:199.950000px;}
.y20{bottom:202.950000px;}
.y6d{bottom:206.700000px;}
.y8e{bottom:217.575000px;}
.y44{bottom:233.700000px;}
.y1f{bottom:236.700000px;}
.y6c{bottom:240.450000px;}
.y8d{bottom:251.325000px;}
.y43{bottom:255.450000px;}
.y6b{bottom:262.200000px;}
.y1e{bottom:270.450000px;}
.y8c{bottom:273.075000px;}
.y42{bottom:277.200000px;}
.y6a{bottom:283.950000px;}
.y8b{bottom:294.825000px;}
.y41{bottom:298.950000px;}
.y1d{bottom:304.230000px;}
.y69{bottom:305.745000px;}
.y8a{bottom:316.620000px;}
.y40{bottom:320.730000px;}
.y1c{bottom:337.980000px;}
.y89{bottom:338.355000px;}
.y68{bottom:339.495000px;}
.y3f{bottom:354.480000px;}
.y67{bottom:361.230000px;}
.y1b{bottom:371.730000px;}
.y88{bottom:372.105000px;}
.y3e{bottom:376.245000px;}
.y66{bottom:382.995000px;}
.y3d{bottom:397.995000px;}
.y65{bottom:404.745000px;}
.y1a{bottom:405.495000px;}
.y87{bottom:405.870000px;}
.y64{bottom:426.495000px;}
.ya7{bottom:430.620000px;}
.y3c{bottom:431.775000px;}
.y86{bottom:435.150000px;}
.y19{bottom:438.900000px;}
.ya6{bottom:449.400000px;}
.y63{bottom:460.275000px;}
.y18{bottom:460.650000px;}
.y3b{bottom:465.525000px;}
.ya5{bottom:468.150000px;}
.y62{bottom:482.025000px;}
.y17{bottom:482.400000px;}
.ya4{bottom:486.150000px;}
.y3a{bottom:486.900000px;}
.y7f{bottom:489.525000px;}
.ya3{bottom:503.400000px;}
.y61{bottom:503.775000px;}
.y16{bottom:504.150000px;}
.y39{bottom:520.650000px;}
.ya2{bottom:521.025000px;}
.y7e{bottom:522.900000px;}
.y15{bottom:525.900000px;}
.y60{bottom:537.525000px;}
.ya1{bottom:538.275000px;}
.y38{bottom:542.400000px;}
.y7d{bottom:544.650000px;}
.ya0{bottom:555.900000px;}
.y5f{bottom:558.900000px;}
.y14{bottom:559.650000px;}
.y9f{bottom:573.195000px;}
.y37{bottom:576.195000px;}
.y7c{bottom:578.445000px;}
.y5e{bottom:580.695000px;}
.y9e{bottom:590.820000px;}
.y13{bottom:593.445000px;}
.y36{bottom:597.945000px;}
.y7b{bottom:600.195000px;}
.y5d{bottom:602.445000px;}
.y9d{bottom:608.070000px;}
.y12{bottom:615.195000px;}
.y9c{bottom:625.320000px;}
.y35{bottom:631.695000px;}
.y7a{bottom:633.945000px;}
.y5c{bottom:636.195000px;}
.y11{bottom:636.945000px;}
.y9b{bottom:642.945000px;}
.y79{bottom:655.695000px;}
.y5b{bottom:657.945000px;}
.y10{bottom:658.695000px;}
.y9a{bottom:660.195000px;}
.y34{bottom:665.445000px;}
.y78{bottom:677.445000px;}
.y99{bottom:677.820000px;}
.y5a{bottom:679.695000px;}
.y33{bottom:687.195000px;}
.yf{bottom:692.475000px;}
.y98{bottom:695.100000px;}
.y77{bottom:699.225000px;}
.y59{bottom:701.475000px;}
.y97{bottom:712.725000px;}
.y32{bottom:720.975000px;}
.y58{bottom:723.225000px;}
.ye{bottom:726.225000px;}
.y96{bottom:729.975000px;}
.y76{bottom:732.975000px;}
.y57{bottom:744.975000px;}
.y95{bottom:747.600000px;}
.y31{bottom:754.725000px;}
.yd{bottom:759.975000px;}
.y85{bottom:765.225000px;}
.y30{bottom:776.475000px;}
.y56{bottom:778.725000px;}
.y94{bottom:779.100000px;}
.yc{bottom:793.725000px;}
.y84{bottom:798.975000px;}
.y55{bottom:800.475000px;}
.y2f{bottom:810.225000px;}
.y93{bottom:812.850000px;}
.y83{bottom:820.755000px;}
.y54{bottom:822.270000px;}
.yb{bottom:827.505000px;}
.y2e{bottom:832.020000px;}
.y92{bottom:834.630000px;}
.ya{bottom:849.255000px;}
.y82{bottom:850.380000px;}
.y75{bottom:853.755000px;}
.y53{bottom:856.005000px;}
.y2d{bottom:865.770000px;}
.y91{bottom:868.380000px;}
.y74{bottom:875.505000px;}
.y52{bottom:877.755000px;}
.y9{bottom:883.005000px;}
.y2c{bottom:887.505000px;}
.y51{bottom:899.505000px;}
.y90{bottom:902.130000px;}
.y2b{bottom:909.255000px;}
.y8{bottom:916.755000px;}
.y50{bottom:921.255000px;}
.y2a{bottom:931.005000px;}
.y8f{bottom:931.755000px;}
.y4f{bottom:943.005000px;}
.y7{bottom:950.550000px;}
.y29{bottom:952.800000px;}
.y4e{bottom:964.800000px;}
.y73{bottom:974.550000px;}
.y6{bottom:984.300000px;}
.y28{bottom:986.550000px;}
.y4d{bottom:998.550000px;}
.y5{bottom:1006.050000px;}
.y27{bottom:1008.300000px;}
.y4c{bottom:1020.300000px;}
.y26{bottom:1030.050000px;}
.y4{bottom:1039.800000px;}
.y25{bottom:1051.800000px;}
.y4b{bottom:1054.050000px;}
.y72{bottom:1063.800000px;}
.y3{bottom:1073.550000px;}
.y4a{bottom:1075.830000px;}
.y71{bottom:1085.580000px;}
.y49{bottom:1097.580000px;}
.y2{bottom:1107.330000px;}
.y48{bottom:1119.330000px;}
.y1{bottom:1141.080000px;}
.h4{height:31.289062px;}
.h6{height:44.238281px;}
.h5{height:54.609375px;}
.h1{height:65.645508px;}
.h2{height:67.837600px;}
.h3{height:154.500000px;}
.h0{height:1263.000000px;}
.w3{width:394.500000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.000000px;}
.x1{left:127.537487px;}
.x2{left:138.074987px;}
.x4{left:154.574987px;}
.x5{left:181.574987px;}
.x6{left:372.000000px;}
.x3{left:410.069987px;}
.xb{left:703.799987px;}
.x8{left:727.799987px;}
.x9{left:729.674987px;}
.xa{left:733.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.250667pt;}
.ls7{letter-spacing:-0.133333pt;}
.ls3{letter-spacing:-0.117333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.074667pt;}
.ls0{letter-spacing:0.117333pt;}
.ls6{letter-spacing:1.333333pt;}
.ls1{letter-spacing:62.357333pt;}
.ws7{word-spacing:-53.333333pt;}
.ws6{word-spacing:-15.466667pt;}
.ws0{word-spacing:-13.376000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws1{word-spacing:-13.141333pt;}
.ws5{word-spacing:-13.125333pt;}
.ws4{word-spacing:-13.008000pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-3.344000pt;}
._2{margin-left:-2.229333pt;}
._1{margin-left:-1.173333pt;}
._0{width:1.114667pt;}
._a{width:2.170667pt;}
._3{width:3.109333pt;}
._4{width:4.048000pt;}
._5{width:5.690667pt;}
._b{width:7.104000pt;}
._8{width:8.565333pt;}
._1b{width:9.493333pt;}
._7{width:10.384000pt;}
._6{width:11.440000pt;}
._9{width:14.784000pt;}
._12{width:16.837333pt;}
._19{width:18.421333pt;}
._18{width:19.589333pt;}
._d{width:21.120000pt;}
._c{width:22.256000pt;}
._17{width:24.053333pt;}
._10{width:25.109333pt;}
._e{width:26.106667pt;}
._f{width:27.338667pt;}
._1c{width:28.480000pt;}
._11{width:32.032000pt;}
._14{width:33.088000pt;}
._1a{width:37.488000pt;}
._15{width:52.682667pt;}
._16{width:53.680000pt;}
.fs1{font-size:26.666667pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:106.033333pt;}
.y22{bottom:120.366667pt;}
.y70{bottom:125.700000pt;}
.y24{bottom:128.000000pt;}
.y80{bottom:132.033333pt;}
.y47{bottom:139.040000pt;}
.y6f{bottom:145.040000pt;}
.y23{bottom:145.333333pt;}
.y21{bottom:150.360000pt;}
.y46{bottom:158.400000pt;}
.y6e{bottom:164.400000pt;}
.y45{bottom:177.733333pt;}
.y20{bottom:180.400000pt;}
.y6d{bottom:183.733333pt;}
.y8e{bottom:193.400000pt;}
.y44{bottom:207.733333pt;}
.y1f{bottom:210.400000pt;}
.y6c{bottom:213.733333pt;}
.y8d{bottom:223.400000pt;}
.y43{bottom:227.066667pt;}
.y6b{bottom:233.066667pt;}
.y1e{bottom:240.400000pt;}
.y8c{bottom:242.733333pt;}
.y42{bottom:246.400000pt;}
.y6a{bottom:252.400000pt;}
.y8b{bottom:262.066667pt;}
.y41{bottom:265.733333pt;}
.y1d{bottom:270.426667pt;}
.y69{bottom:271.773333pt;}
.y8a{bottom:281.440000pt;}
.y40{bottom:285.093333pt;}
.y1c{bottom:300.426667pt;}
.y89{bottom:300.760000pt;}
.y68{bottom:301.773333pt;}
.y3f{bottom:315.093333pt;}
.y67{bottom:321.093333pt;}
.y1b{bottom:330.426667pt;}
.y88{bottom:330.760000pt;}
.y3e{bottom:334.440000pt;}
.y66{bottom:340.440000pt;}
.y3d{bottom:353.773333pt;}
.y65{bottom:359.773333pt;}
.y1a{bottom:360.440000pt;}
.y87{bottom:360.773333pt;}
.y64{bottom:379.106667pt;}
.ya7{bottom:382.773333pt;}
.y3c{bottom:383.800000pt;}
.y86{bottom:386.800000pt;}
.y19{bottom:390.133333pt;}
.ya6{bottom:399.466667pt;}
.y63{bottom:409.133333pt;}
.y18{bottom:409.466667pt;}
.y3b{bottom:413.800000pt;}
.ya5{bottom:416.133333pt;}
.y62{bottom:428.466667pt;}
.y17{bottom:428.800000pt;}
.ya4{bottom:432.133333pt;}
.y3a{bottom:432.800000pt;}
.y7f{bottom:435.133333pt;}
.ya3{bottom:447.466667pt;}
.y61{bottom:447.800000pt;}
.y16{bottom:448.133333pt;}
.y39{bottom:462.800000pt;}
.ya2{bottom:463.133333pt;}
.y7e{bottom:464.800000pt;}
.y15{bottom:467.466667pt;}
.y60{bottom:477.800000pt;}
.ya1{bottom:478.466667pt;}
.y38{bottom:482.133333pt;}
.y7d{bottom:484.133333pt;}
.ya0{bottom:494.133333pt;}
.y5f{bottom:496.800000pt;}
.y14{bottom:497.466667pt;}
.y9f{bottom:509.506667pt;}
.y37{bottom:512.173333pt;}
.y7c{bottom:514.173333pt;}
.y5e{bottom:516.173333pt;}
.y9e{bottom:525.173333pt;}
.y13{bottom:527.506667pt;}
.y36{bottom:531.506667pt;}
.y7b{bottom:533.506667pt;}
.y5d{bottom:535.506667pt;}
.y9d{bottom:540.506667pt;}
.y12{bottom:546.840000pt;}
.y9c{bottom:555.840000pt;}
.y35{bottom:561.506667pt;}
.y7a{bottom:563.506667pt;}
.y5c{bottom:565.506667pt;}
.y11{bottom:566.173333pt;}
.y9b{bottom:571.506667pt;}
.y79{bottom:582.840000pt;}
.y5b{bottom:584.840000pt;}
.y10{bottom:585.506667pt;}
.y9a{bottom:586.840000pt;}
.y34{bottom:591.506667pt;}
.y78{bottom:602.173333pt;}
.y99{bottom:602.506667pt;}
.y5a{bottom:604.173333pt;}
.y33{bottom:610.840000pt;}
.yf{bottom:615.533333pt;}
.y98{bottom:617.866667pt;}
.y77{bottom:621.533333pt;}
.y59{bottom:623.533333pt;}
.y97{bottom:633.533333pt;}
.y32{bottom:640.866667pt;}
.y58{bottom:642.866667pt;}
.ye{bottom:645.533333pt;}
.y96{bottom:648.866667pt;}
.y76{bottom:651.533333pt;}
.y57{bottom:662.200000pt;}
.y95{bottom:664.533333pt;}
.y31{bottom:670.866667pt;}
.yd{bottom:675.533333pt;}
.y85{bottom:680.200000pt;}
.y30{bottom:690.200000pt;}
.y56{bottom:692.200000pt;}
.y94{bottom:692.533333pt;}
.yc{bottom:705.533333pt;}
.y84{bottom:710.200000pt;}
.y55{bottom:711.533333pt;}
.y2f{bottom:720.200000pt;}
.y93{bottom:722.533333pt;}
.y83{bottom:729.560000pt;}
.y54{bottom:730.906667pt;}
.yb{bottom:735.560000pt;}
.y2e{bottom:739.573333pt;}
.y92{bottom:741.893333pt;}
.ya{bottom:754.893333pt;}
.y82{bottom:755.893333pt;}
.y75{bottom:758.893333pt;}
.y53{bottom:760.893333pt;}
.y2d{bottom:769.573333pt;}
.y91{bottom:771.893333pt;}
.y74{bottom:778.226667pt;}
.y52{bottom:780.226667pt;}
.y9{bottom:784.893333pt;}
.y2c{bottom:788.893333pt;}
.y51{bottom:799.560000pt;}
.y90{bottom:801.893333pt;}
.y2b{bottom:808.226667pt;}
.y8{bottom:814.893333pt;}
.y50{bottom:818.893333pt;}
.y2a{bottom:827.560000pt;}
.y8f{bottom:828.226667pt;}
.y4f{bottom:838.226667pt;}
.y7{bottom:844.933333pt;}
.y29{bottom:846.933333pt;}
.y4e{bottom:857.600000pt;}
.y73{bottom:866.266667pt;}
.y6{bottom:874.933333pt;}
.y28{bottom:876.933333pt;}
.y4d{bottom:887.600000pt;}
.y5{bottom:894.266667pt;}
.y27{bottom:896.266667pt;}
.y4c{bottom:906.933333pt;}
.y26{bottom:915.600000pt;}
.y4{bottom:924.266667pt;}
.y25{bottom:934.933333pt;}
.y4b{bottom:936.933333pt;}
.y72{bottom:945.600000pt;}
.y3{bottom:954.266667pt;}
.y4a{bottom:956.293333pt;}
.y71{bottom:964.960000pt;}
.y49{bottom:975.626667pt;}
.y2{bottom:984.293333pt;}
.y48{bottom:994.960000pt;}
.y1{bottom:1014.293333pt;}
.h4{height:27.812500pt;}
.h6{height:39.322917pt;}
.h5{height:48.541667pt;}
.h1{height:58.351562pt;}
.h2{height:60.300089pt;}
.h3{height:137.333333pt;}
.h0{height:1122.666667pt;}
.w3{width:350.666667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:2.666667pt;}
.x1{left:113.366655pt;}
.x2{left:122.733322pt;}
.x4{left:137.399988pt;}
.x5{left:161.399988pt;}
.x6{left:330.666667pt;}
.x3{left:364.506655pt;}
.xb{left:625.599988pt;}
.x8{left:646.933322pt;}
.x9{left:648.599988pt;}
.xa{left:651.599988pt;}
}




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