
    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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_2f3fa7b589abdf1d8ee4bedb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800293;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_defca4745d71b77212ec84c0.woff')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_236bae636bb4cdfba89d2f91.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_726ffed6c4a1ad98dbbd1a47.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_60f422bbf4cf34eccd036aa4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7203cc72f2af581f650ff283.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8ed550a28d8bffd867945459.woff')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_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.792000px;}
.ls5{letter-spacing:33.960000px;}
.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;}
}
.ws3{word-spacing:-18.576000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-5.040000px;}
._7{margin-left:-3.744000px;}
._6{margin-left:-2.309436px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._26{width:2.239466px;}
._9{width:3.240000px;}
._8{width:4.267142px;}
._12{width:5.544000px;}
._13{width:6.696000px;}
._c{width:8.280000px;}
._d{width:9.379142px;}
._1d{width:10.548289px;}
._14{width:11.664000px;}
._15{width:12.729158px;}
._5{width:13.824000px;}
._4{width:15.768000px;}
._17{width:16.776000px;}
._3{width:19.224000px;}
._10{width:20.402284px;}
._a{width:21.504000px;}
._b{width:23.097158px;}
._1e{width:24.624000px;}
._e{width:25.776000px;}
._f{width:26.841158px;}
._11{width:27.936000px;}
._1f{width:28.992000px;}
._20{width:30.201158px;}
._22{width:31.464000px;}
._23{width:32.544000px;}
._24{width:33.632601px;}
._1a{width:34.704000px;}
._21{width:35.894284px;}
._18{width:36.936000px;}
._19{width:38.160000px;}
._25{width:39.456000px;}
._1b{width:40.968000px;}
._1c{width:41.976000px;}
._2a{width:54.000000px;}
._2{width:146.082865px;}
._31{width:223.344000px;}
._32{width:224.640000px;}
._2d{width:261.432000px;}
._2e{width:262.656000px;}
._2f{width:336.168000px;}
._30{width:337.248000px;}
._28{width:357.696000px;}
._29{width:358.860000px;}
._2b{width:379.584000px;}
._2c{width:380.892000px;}
._27{width:424.656000px;}
._33{width:437.995142px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y4{bottom:68.580000px;}
.y5c{bottom:120.276000px;}
.y33{bottom:128.016000px;}
.y5d{bottom:128.916000px;}
.y5b{bottom:140.976000px;}
.y32{bottom:148.716000px;}
.y44{bottom:149.616000px;}
.y5a{bottom:161.670000px;}
.y31{bottom:169.410000px;}
.y43{bottom:170.310000px;}
.y59{bottom:182.370000px;}
.y30{bottom:190.110000px;}
.y42{bottom:191.010000px;}
.y58{bottom:203.070000px;}
.y2f{bottom:210.810000px;}
.y41{bottom:211.710000px;}
.y57{bottom:223.770000px;}
.y2e{bottom:231.510000px;}
.y40{bottom:232.410000px;}
.y56{bottom:244.470000px;}
.y2d{bottom:252.210000px;}
.y3f{bottom:253.110000px;}
.y55{bottom:265.170000px;}
.y2c{bottom:272.910000px;}
.y3e{bottom:273.810000px;}
.y54{bottom:285.870000px;}
.y2b{bottom:293.610000px;}
.y3d{bottom:294.510000px;}
.y53{bottom:306.570000px;}
.y2a{bottom:314.310000px;}
.y3c{bottom:315.210000px;}
.y52{bottom:327.270000px;}
.y29{bottom:335.010000px;}
.y3b{bottom:335.910000px;}
.y51{bottom:348.015000px;}
.y28{bottom:355.755000px;}
.y3a{bottom:356.655000px;}
.y50{bottom:368.715000px;}
.y27{bottom:376.455000px;}
.y39{bottom:377.355000px;}
.y4f{bottom:389.415000px;}
.y38{bottom:398.055000px;}
.y4e{bottom:410.115000px;}
.y26{bottom:418.215000px;}
.y37{bottom:418.755000px;}
.y4d{bottom:430.815000px;}
.y36{bottom:439.455000px;}
.y4c{bottom:451.515000px;}
.y25{bottom:459.795000px;}
.y35{bottom:460.155000px;}
.y4b{bottom:472.215000px;}
.y34{bottom:480.855000px;}
.y4a{bottom:492.915000px;}
.y24{bottom:501.555000px;}
.y49{bottom:513.615000px;}
.y23{bottom:522.255000px;}
.y48{bottom:534.315000px;}
.y22{bottom:542.955000px;}
.y47{bottom:555.015000px;}
.y21{bottom:563.655000px;}
.y46{bottom:575.715000px;}
.y20{bottom:584.355000px;}
.y45{bottom:592.455000px;}
.y1f{bottom:605.085000px;}
.y1e{bottom:625.785000px;}
.y1d{bottom:646.485000px;}
.y1c{bottom:667.185000px;}
.y1b{bottom:687.885000px;}
.y1a{bottom:708.585000px;}
.y19{bottom:729.285000px;}
.y18{bottom:749.985000px;}
.y17{bottom:770.685000px;}
.y16{bottom:791.385000px;}
.y15{bottom:812.085000px;}
.y14{bottom:832.785000px;}
.y13{bottom:853.485000px;}
.y12{bottom:874.230000px;}
.y11{bottom:894.930000px;}
.y10{bottom:915.630000px;}
.yf{bottom:936.330000px;}
.ye{bottom:957.030000px;}
.yd{bottom:977.730000px;}
.yc{bottom:998.430000px;}
.yb{bottom:1019.130000px;}
.ya{bottom:1039.830000px;}
.y9{bottom:1060.530000px;}
.y8{bottom:1081.230000px;}
.y7{bottom:1101.930000px;}
.y6{bottom:1122.630000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.h2{height:40.790039px;}
.h4{height:45.386260px;}
.h7{height:50.273438px;}
.h6{height:50.800781px;}
.h9{height:52.417969px;}
.h5{height:56.900391px;}
.h8{height:59.343750px;}
.h3{height:70.802565px;}
.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:108.035987px;}
.x6{left:116.315987px;}
.x3{left:120.635987px;}
.xc{left:135.035987px;}
.xb{left:138.095987px;}
.x2{left:142.775987px;}
.xd{left:162.029987px;}
.x7{left:192.629987px;}
.x4{left:207.569987px;}
.x8{left:229.169987px;}
.x9{left:305.174987px;}
.x5{left:342.254987px;}
.xa{left:446.474987px;}
.xe{left:739.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.704000pt;}
.ls5{letter-spacing:30.186667pt;}
.ws3{word-spacing:-16.512000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-4.480000pt;}
._7{margin-left:-3.328000pt;}
._6{margin-left:-2.052832pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._26{width:1.990636pt;}
._9{width:2.880000pt;}
._8{width:3.793015pt;}
._12{width:4.928000pt;}
._13{width:5.952000pt;}
._c{width:7.360000pt;}
._d{width:8.337015pt;}
._1d{width:9.376257pt;}
._14{width:10.368000pt;}
._15{width:11.314808pt;}
._5{width:12.288000pt;}
._4{width:14.016000pt;}
._17{width:14.912000pt;}
._3{width:17.088000pt;}
._10{width:18.135364pt;}
._a{width:19.114667pt;}
._b{width:20.530808pt;}
._1e{width:21.888000pt;}
._e{width:22.912000pt;}
._f{width:23.858808pt;}
._11{width:24.832000pt;}
._1f{width:25.770667pt;}
._20{width:26.845474pt;}
._22{width:27.968000pt;}
._23{width:28.928000pt;}
._24{width:29.895646pt;}
._1a{width:30.848000pt;}
._21{width:31.906031pt;}
._18{width:32.832000pt;}
._19{width:33.920000pt;}
._25{width:35.072000pt;}
._1b{width:36.416000pt;}
._1c{width:37.312000pt;}
._2a{width:48.000000pt;}
._2{width:129.851436pt;}
._31{width:198.528000pt;}
._32{width:199.680000pt;}
._2d{width:232.384000pt;}
._2e{width:233.472000pt;}
._2f{width:298.816000pt;}
._30{width:299.776000pt;}
._28{width:317.952000pt;}
._29{width:318.986667pt;}
._2b{width:337.408000pt;}
._2c{width:338.570667pt;}
._27{width:377.472000pt;}
._33{width:389.329015pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:60.960000pt;}
.y5c{bottom:106.912000pt;}
.y33{bottom:113.792000pt;}
.y5d{bottom:114.592000pt;}
.y5b{bottom:125.312000pt;}
.y32{bottom:132.192000pt;}
.y44{bottom:132.992000pt;}
.y5a{bottom:143.706667pt;}
.y31{bottom:150.586667pt;}
.y43{bottom:151.386667pt;}
.y59{bottom:162.106667pt;}
.y30{bottom:168.986667pt;}
.y42{bottom:169.786667pt;}
.y58{bottom:180.506667pt;}
.y2f{bottom:187.386667pt;}
.y41{bottom:188.186667pt;}
.y57{bottom:198.906667pt;}
.y2e{bottom:205.786667pt;}
.y40{bottom:206.586667pt;}
.y56{bottom:217.306667pt;}
.y2d{bottom:224.186667pt;}
.y3f{bottom:224.986667pt;}
.y55{bottom:235.706667pt;}
.y2c{bottom:242.586667pt;}
.y3e{bottom:243.386667pt;}
.y54{bottom:254.106667pt;}
.y2b{bottom:260.986667pt;}
.y3d{bottom:261.786667pt;}
.y53{bottom:272.506667pt;}
.y2a{bottom:279.386667pt;}
.y3c{bottom:280.186667pt;}
.y52{bottom:290.906667pt;}
.y29{bottom:297.786667pt;}
.y3b{bottom:298.586667pt;}
.y51{bottom:309.346667pt;}
.y28{bottom:316.226667pt;}
.y3a{bottom:317.026667pt;}
.y50{bottom:327.746667pt;}
.y27{bottom:334.626667pt;}
.y39{bottom:335.426667pt;}
.y4f{bottom:346.146667pt;}
.y38{bottom:353.826667pt;}
.y4e{bottom:364.546667pt;}
.y26{bottom:371.746667pt;}
.y37{bottom:372.226667pt;}
.y4d{bottom:382.946667pt;}
.y36{bottom:390.626667pt;}
.y4c{bottom:401.346667pt;}
.y25{bottom:408.706667pt;}
.y35{bottom:409.026667pt;}
.y4b{bottom:419.746667pt;}
.y34{bottom:427.426667pt;}
.y4a{bottom:438.146667pt;}
.y24{bottom:445.826667pt;}
.y49{bottom:456.546667pt;}
.y23{bottom:464.226667pt;}
.y48{bottom:474.946667pt;}
.y22{bottom:482.626667pt;}
.y47{bottom:493.346667pt;}
.y21{bottom:501.026667pt;}
.y46{bottom:511.746667pt;}
.y20{bottom:519.426667pt;}
.y45{bottom:526.626667pt;}
.y1f{bottom:537.853333pt;}
.y1e{bottom:556.253333pt;}
.y1d{bottom:574.653333pt;}
.y1c{bottom:593.053333pt;}
.y1b{bottom:611.453333pt;}
.y1a{bottom:629.853333pt;}
.y19{bottom:648.253333pt;}
.y18{bottom:666.653333pt;}
.y17{bottom:685.053333pt;}
.y16{bottom:703.453333pt;}
.y15{bottom:721.853333pt;}
.y14{bottom:740.253333pt;}
.y13{bottom:758.653333pt;}
.y12{bottom:777.093333pt;}
.y11{bottom:795.493333pt;}
.y10{bottom:813.893333pt;}
.yf{bottom:832.293333pt;}
.ye{bottom:850.693333pt;}
.yd{bottom:869.093333pt;}
.yc{bottom:887.493333pt;}
.yb{bottom:905.893333pt;}
.ya{bottom:924.293333pt;}
.y9{bottom:942.693333pt;}
.y8{bottom:961.093333pt;}
.y7{bottom:979.493333pt;}
.y6{bottom:997.893333pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.h2{height:36.257812pt;}
.h4{height:40.343342pt;}
.h7{height:44.687500pt;}
.h6{height:45.156250pt;}
.h9{height:46.593750pt;}
.h5{height:50.578125pt;}
.h8{height:52.750000pt;}
.h3{height:62.935614pt;}
.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:96.031988pt;}
.x6{left:103.391988pt;}
.x3{left:107.231988pt;}
.xc{left:120.031988pt;}
.xb{left:122.751988pt;}
.x2{left:126.911988pt;}
.xd{left:144.026655pt;}
.x7{left:171.226655pt;}
.x4{left:184.506655pt;}
.x8{left:203.706655pt;}
.x9{left:271.266655pt;}
.x5{left:304.226655pt;}
.xa{left:396.866655pt;}
.xe{left:656.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; }
  