
    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_f5bccaae9e7bfa14e188a7eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_d15608001693faa9a9168cf1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_830e292717c51822ba8b3d59.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0a0fa7bdb808e5fa46e00e32.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_45e54bb1f5a996b13a87c9a3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_2f1a2d7948fa42163a13c532.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2764da03362ecf2a70cddf19.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_779cdd717435514c5ea5b0d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.440000px;}
.ls8{letter-spacing:2.880000px;}
.lsf{letter-spacing:3.600000px;}
.lse{letter-spacing:4.320000px;}
.ls6{letter-spacing:5.040000px;}
.ls12{letter-spacing:7.920000px;}
.lsc{letter-spacing:10.080000px;}
.lsd{letter-spacing:10.800000px;}
.ls9{letter-spacing:12.960000px;}
.ls14{letter-spacing:18.144000px;}
.ls4{letter-spacing:23.760000px;}
.lsb{letter-spacing:26.640000px;}
.ls10{letter-spacing:30.960000px;}
.ls11{letter-spacing:33.984000px;}
.ls13{letter-spacing:54.144000px;}
.ls1{letter-spacing:77.309760px;}
.ls0{letter-spacing:111.029760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.238800px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.026000px;}
._1{width:1.614000px;}
._2{width:3.153120px;}
._6{width:4.622880px;}
._c{width:5.730240px;}
._12{width:6.960000px;}
._11{width:8.112000px;}
._5{width:9.504000px;}
._4{width:11.208000px;}
._3{width:12.432000px;}
._7{width:13.560000px;}
._17{width:14.904000px;}
._16{width:16.200000px;}
._18{width:19.152000px;}
._19{width:20.160000px;}
._13{width:21.240000px;}
._1c{width:22.512000px;}
._b{width:23.574000px;}
._a{width:25.032000px;}
._e{width:27.018000px;}
._d{width:28.152000px;}
._1a{width:29.664000px;}
._24{width:30.678000px;}
._10{width:31.752000px;}
._15{width:33.048000px;}
._14{width:34.200000px;}
._9{width:37.308000px;}
._8{width:38.592000px;}
._1e{width:40.248000px;}
._1f{width:41.442000px;}
._21{width:42.498000px;}
._23{width:44.424000px;}
._22{width:45.432000px;}
._1b{width:47.952000px;}
._f{width:49.872000px;}
._1d{width:59.688000px;}
._20{width:64.008000px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(26,28,30);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(47,84,150);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.260000px;}
.y7{bottom:11.340000px;}
.y8{bottom:55.440000px;}
.y5{bottom:57.600000px;}
.y35{bottom:105.336000px;}
.y62{bottom:109.296000px;}
.y34{bottom:129.096000px;}
.y61{bottom:133.056000px;}
.y33{bottom:152.850000px;}
.y60{bottom:156.810000px;}
.y32{bottom:176.610000px;}
.y5f{bottom:180.570000px;}
.y31{bottom:200.550000px;}
.y5e{bottom:204.510000px;}
.y30{bottom:224.310000px;}
.y5d{bottom:228.270000px;}
.y2f{bottom:248.070000px;}
.y5c{bottom:252.030000px;}
.y2e{bottom:271.830000px;}
.y5b{bottom:275.790000px;}
.y2d{bottom:295.770000px;}
.y5a{bottom:299.730000px;}
.y2c{bottom:319.530000px;}
.y59{bottom:323.490000px;}
.y2b{bottom:343.335000px;}
.y58{bottom:347.295000px;}
.y2a{bottom:367.095000px;}
.y57{bottom:371.055000px;}
.y29{bottom:391.035000px;}
.y56{bottom:394.995000px;}
.y28{bottom:414.795000px;}
.y55{bottom:418.755000px;}
.y27{bottom:438.555000px;}
.y54{bottom:442.515000px;}
.y26{bottom:462.315000px;}
.y53{bottom:466.275000px;}
.y25{bottom:486.255000px;}
.y52{bottom:490.215000px;}
.y24{bottom:510.015000px;}
.y51{bottom:513.975000px;}
.y23{bottom:533.775000px;}
.y50{bottom:537.735000px;}
.y22{bottom:557.535000px;}
.y4f{bottom:561.495000px;}
.y21{bottom:581.475000px;}
.y4e{bottom:585.435000px;}
.y20{bottom:605.265000px;}
.y4d{bottom:609.225000px;}
.y1f{bottom:629.025000px;}
.y4c{bottom:632.985000px;}
.y1e{bottom:652.785000px;}
.y4b{bottom:656.745000px;}
.y1d{bottom:676.545000px;}
.y4a{bottom:680.685000px;}
.y1c{bottom:700.485000px;}
.y49{bottom:704.445000px;}
.y1b{bottom:724.245000px;}
.y48{bottom:728.205000px;}
.y1a{bottom:748.005000px;}
.y47{bottom:751.965000px;}
.y19{bottom:771.765000px;}
.y46{bottom:775.725000px;}
.y18{bottom:795.705000px;}
.y45{bottom:799.665000px;}
.y17{bottom:819.465000px;}
.y44{bottom:823.425000px;}
.y16{bottom:843.225000px;}
.y43{bottom:847.185000px;}
.y15{bottom:866.985000px;}
.y42{bottom:870.990000px;}
.y14{bottom:890.970000px;}
.y41{bottom:894.930000px;}
.y13{bottom:914.730000px;}
.y40{bottom:918.690000px;}
.y12{bottom:938.490000px;}
.y3f{bottom:942.450000px;}
.y11{bottom:962.250000px;}
.y3e{bottom:966.210000px;}
.y10{bottom:986.190000px;}
.y3d{bottom:990.150000px;}
.yf{bottom:1009.950000px;}
.y3c{bottom:1013.910000px;}
.ye{bottom:1033.710000px;}
.y3b{bottom:1037.670000px;}
.yd{bottom:1057.470000px;}
.y3a{bottom:1061.430000px;}
.yc{bottom:1081.410000px;}
.y39{bottom:1085.370000px;}
.yb{bottom:1105.170000px;}
.y38{bottom:1109.130000px;}
.ya{bottom:1131.270000px;}
.y37{bottom:1132.890000px;}
.y36{bottom:1156.680000px;}
.y9{bottom:1159.380000px;}
.y4{bottom:1178.640000px;}
.y3{bottom:1195.560000px;}
.y2{bottom:1212.300000px;}
.y1{bottom:1229.040000px;}
.h6{height:4.021875px;}
.h3{height:27.036000px;}
.h2{height:38.100586px;}
.h7{height:42.164648px;}
.h4{height:50.273438px;}
.h9{height:50.800781px;}
.ha{height:51.996094px;}
.hc{height:52.417969px;}
.hb{height:59.343750px;}
.h5{height:65.884219px;}
.h8{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.560000px;}
.x5{left:87.660000px;}
.xa{left:95.795987px;}
.x2{left:101.375987px;}
.x11{left:122.795987px;}
.xc{left:126.935987px;}
.x1{left:141.515987px;}
.x10{left:148.895987px;}
.x3{left:206.489987px;}
.xe{left:228.449987px;}
.xf{left:295.814987px;}
.x6{left:297.795000px;}
.xd{left:322.454987px;}
.x7{left:393.915000px;}
.x4{left:446.474987px;}
.x9{left:500.145000px;}
.xb{left:652.784987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls8{letter-spacing:2.560000pt;}
.lsf{letter-spacing:3.200000pt;}
.lse{letter-spacing:3.840000pt;}
.ls6{letter-spacing:4.480000pt;}
.ls12{letter-spacing:7.040000pt;}
.lsc{letter-spacing:8.960000pt;}
.lsd{letter-spacing:9.600000pt;}
.ls9{letter-spacing:11.520000pt;}
.ls14{letter-spacing:16.128000pt;}
.ls4{letter-spacing:21.120000pt;}
.lsb{letter-spacing:23.680000pt;}
.ls10{letter-spacing:27.520000pt;}
.ls11{letter-spacing:30.208000pt;}
.ls13{letter-spacing:48.128000pt;}
.ls1{letter-spacing:68.719787pt;}
.ls0{letter-spacing:98.693120pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.434667pt;}
._2{width:2.802773pt;}
._6{width:4.109227pt;}
._c{width:5.093547pt;}
._12{width:6.186667pt;}
._11{width:7.210667pt;}
._5{width:8.448000pt;}
._4{width:9.962667pt;}
._3{width:11.050667pt;}
._7{width:12.053333pt;}
._17{width:13.248000pt;}
._16{width:14.400000pt;}
._18{width:17.024000pt;}
._19{width:17.920000pt;}
._13{width:18.880000pt;}
._1c{width:20.010667pt;}
._b{width:20.954667pt;}
._a{width:22.250667pt;}
._e{width:24.016000pt;}
._d{width:25.024000pt;}
._1a{width:26.368000pt;}
._24{width:27.269333pt;}
._10{width:28.224000pt;}
._15{width:29.376000pt;}
._14{width:30.400000pt;}
._9{width:33.162667pt;}
._8{width:34.304000pt;}
._1e{width:35.776000pt;}
._1f{width:36.837333pt;}
._21{width:37.776000pt;}
._23{width:39.488000pt;}
._22{width:40.384000pt;}
._1b{width:42.624000pt;}
._f{width:44.330667pt;}
._1d{width:53.056000pt;}
._20{width:56.896000pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.120000pt;}
.y7{bottom:10.080000pt;}
.y8{bottom:49.280000pt;}
.y5{bottom:51.200000pt;}
.y35{bottom:93.632000pt;}
.y62{bottom:97.152000pt;}
.y34{bottom:114.752000pt;}
.y61{bottom:118.272000pt;}
.y33{bottom:135.866667pt;}
.y60{bottom:139.386667pt;}
.y32{bottom:156.986667pt;}
.y5f{bottom:160.506667pt;}
.y31{bottom:178.266667pt;}
.y5e{bottom:181.786667pt;}
.y30{bottom:199.386667pt;}
.y5d{bottom:202.906667pt;}
.y2f{bottom:220.506667pt;}
.y5c{bottom:224.026667pt;}
.y2e{bottom:241.626667pt;}
.y5b{bottom:245.146667pt;}
.y2d{bottom:262.906667pt;}
.y5a{bottom:266.426667pt;}
.y2c{bottom:284.026667pt;}
.y59{bottom:287.546667pt;}
.y2b{bottom:305.186667pt;}
.y58{bottom:308.706667pt;}
.y2a{bottom:326.306667pt;}
.y57{bottom:329.826667pt;}
.y29{bottom:347.586667pt;}
.y56{bottom:351.106667pt;}
.y28{bottom:368.706667pt;}
.y55{bottom:372.226667pt;}
.y27{bottom:389.826667pt;}
.y54{bottom:393.346667pt;}
.y26{bottom:410.946667pt;}
.y53{bottom:414.466667pt;}
.y25{bottom:432.226667pt;}
.y52{bottom:435.746667pt;}
.y24{bottom:453.346667pt;}
.y51{bottom:456.866667pt;}
.y23{bottom:474.466667pt;}
.y50{bottom:477.986667pt;}
.y22{bottom:495.586667pt;}
.y4f{bottom:499.106667pt;}
.y21{bottom:516.866667pt;}
.y4e{bottom:520.386667pt;}
.y20{bottom:538.013333pt;}
.y4d{bottom:541.533333pt;}
.y1f{bottom:559.133333pt;}
.y4c{bottom:562.653333pt;}
.y1e{bottom:580.253333pt;}
.y4b{bottom:583.773333pt;}
.y1d{bottom:601.373333pt;}
.y4a{bottom:605.053333pt;}
.y1c{bottom:622.653333pt;}
.y49{bottom:626.173333pt;}
.y1b{bottom:643.773333pt;}
.y48{bottom:647.293333pt;}
.y1a{bottom:664.893333pt;}
.y47{bottom:668.413333pt;}
.y19{bottom:686.013333pt;}
.y46{bottom:689.533333pt;}
.y18{bottom:707.293333pt;}
.y45{bottom:710.813333pt;}
.y17{bottom:728.413333pt;}
.y44{bottom:731.933333pt;}
.y16{bottom:749.533333pt;}
.y43{bottom:753.053333pt;}
.y15{bottom:770.653333pt;}
.y42{bottom:774.213333pt;}
.y14{bottom:791.973333pt;}
.y41{bottom:795.493333pt;}
.y13{bottom:813.093333pt;}
.y40{bottom:816.613333pt;}
.y12{bottom:834.213333pt;}
.y3f{bottom:837.733333pt;}
.y11{bottom:855.333333pt;}
.y3e{bottom:858.853333pt;}
.y10{bottom:876.613333pt;}
.y3d{bottom:880.133333pt;}
.yf{bottom:897.733333pt;}
.y3c{bottom:901.253333pt;}
.ye{bottom:918.853333pt;}
.y3b{bottom:922.373333pt;}
.yd{bottom:939.973333pt;}
.y3a{bottom:943.493333pt;}
.yc{bottom:961.253333pt;}
.y39{bottom:964.773333pt;}
.yb{bottom:982.373333pt;}
.y38{bottom:985.893333pt;}
.ya{bottom:1005.573333pt;}
.y37{bottom:1007.013333pt;}
.y36{bottom:1028.160000pt;}
.y9{bottom:1030.560000pt;}
.y4{bottom:1047.680000pt;}
.y3{bottom:1062.720000pt;}
.y2{bottom:1077.600000pt;}
.y1{bottom:1092.480000pt;}
.h6{height:3.575000pt;}
.h3{height:24.032000pt;}
.h2{height:33.867188pt;}
.h7{height:37.479688pt;}
.h4{height:44.687500pt;}
.h9{height:45.156250pt;}
.ha{height:46.218750pt;}
.hc{height:46.593750pt;}
.hb{height:52.750000pt;}
.h5{height:58.563750pt;}
.h8{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.720000pt;}
.x5{left:77.920000pt;}
.xa{left:85.151988pt;}
.x2{left:90.111988pt;}
.x11{left:109.151988pt;}
.xc{left:112.831988pt;}
.x1{left:125.791988pt;}
.x10{left:132.351988pt;}
.x3{left:183.546655pt;}
.xe{left:203.066655pt;}
.xf{left:262.946655pt;}
.x6{left:264.706667pt;}
.xd{left:286.626655pt;}
.x7{left:350.146667pt;}
.x4{left:396.866655pt;}
.x9{left:444.573333pt;}
.xb{left:580.253322pt;}
}




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