
    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_abcb871fb71c02fe901651be.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.029785;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_c2b94c3c0bdff8073fcf8d2a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.060059;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_2f337f04482b1f579745fedb.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_87b4d817364470e289517afb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_6193fc93719873dbca485474.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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_57302793dfc24aa76bbc31a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899902;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_af06264edabbfd31a9f5eb74.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b0391bf0c78cce6f225c0a28.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f0504af3bbd385e4a8654d85.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1a443e40dcf637619da6a482.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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:ffe;src:url('chunks/assets/font_5bba192e8879ea04e90953ed.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.317400px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.400200px;}
.ls8{letter-spacing:6.768000px;}
.lsa{letter-spacing:54.120000px;}
.ls9{letter-spacing:54.864000px;}
.ls4{letter-spacing:237.576000px;}
.ls5{letter-spacing:280.056000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.464600px;}
.ws1{word-spacing:-0.466440px;}
.ws5{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-9.504000px;}
._4{margin-left:-7.488000px;}
._1{margin-left:-5.904000px;}
._5{margin-left:-4.032000px;}
._3{margin-left:-2.592000px;}
._2{margin-left:-1.512000px;}
._6{width:1.224000px;}
._10{width:3.000000px;}
._9{width:4.608000px;}
._c{width:5.832000px;}
._18{width:7.128000px;}
._1a{width:8.328000px;}
._1e{width:9.504000px;}
._15{width:11.592000px;}
._17{width:13.080000px;}
._8{width:14.256000px;}
._a{width:19.512000px;}
._b{width:20.592000px;}
._e{width:21.816000px;}
._16{width:22.896000px;}
._11{width:24.624000px;}
._f{width:26.424000px;}
._19{width:27.504000px;}
._1b{width:29.736000px;}
._1c{width:32.328000px;}
._1d{width:33.480000px;}
._12{width:59.472000px;}
._13{width:60.480000px;}
._d{width:172.080000px;}
._14{width:185.316000px;}
._7{width:237.576000px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y38{bottom:5.220000px;}
.ya{bottom:5.760000px;}
.y8{bottom:5.940000px;}
.y7{bottom:26.100000px;}
.y6{bottom:41.760000px;}
.y9{bottom:45.360000px;}
.y36{bottom:99.000000px;}
.y35{bottom:122.760000px;}
.y34{bottom:146.520000px;}
.y50{bottom:148.860000px;}
.y33{bottom:170.280000px;}
.y4f{bottom:187.770000px;}
.y32{bottom:194.070000px;}
.y4e{bottom:211.530000px;}
.y31{bottom:218.010000px;}
.y4d{bottom:235.290000px;}
.y30{bottom:241.770000px;}
.y4c{bottom:259.050000px;}
.y2f{bottom:265.530000px;}
.y4b{bottom:282.990000px;}
.y2e{bottom:289.290000px;}
.y4a{bottom:306.750000px;}
.y2d{bottom:313.230000px;}
.y49{bottom:330.510000px;}
.y2c{bottom:336.990000px;}
.y48{bottom:354.270000px;}
.y2b{bottom:360.750000px;}
.y2a{bottom:384.510000px;}
.y47{bottom:393.150000px;}
.y29{bottom:408.450000px;}
.y46{bottom:416.910000px;}
.y28{bottom:432.255000px;}
.y45{bottom:440.715000px;}
.y27{bottom:456.015000px;}
.y44{bottom:464.655000px;}
.y26{bottom:479.775000px;}
.y43{bottom:488.415000px;}
.y25{bottom:503.715000px;}
.y42{bottom:512.175000px;}
.y24{bottom:527.475000px;}
.y41{bottom:535.935000px;}
.y23{bottom:551.235000px;}
.y40{bottom:559.875000px;}
.y22{bottom:574.995000px;}
.y3f{bottom:583.455000px;}
.y21{bottom:598.935000px;}
.y3e{bottom:608.475000px;}
.y20{bottom:622.695000px;}
.y3d{bottom:633.675000px;}
.y1f{bottom:646.455000px;}
.y3c{bottom:658.875000px;}
.y1e{bottom:670.245000px;}
.y3b{bottom:682.485000px;}
.y1d{bottom:694.185000px;}
.y3a{bottom:707.865000px;}
.y39{bottom:731.445000px;}
.y1c{bottom:732.885000px;}
.y1b{bottom:756.645000px;}
.y1a{bottom:780.585000px;}
.y19{bottom:804.345000px;}
.y18{bottom:828.105000px;}
.y17{bottom:851.865000px;}
.y16{bottom:875.805000px;}
.y15{bottom:899.565000px;}
.y14{bottom:923.370000px;}
.y13{bottom:947.130000px;}
.y12{bottom:970.890000px;}
.y11{bottom:994.830000px;}
.y10{bottom:1018.590000px;}
.yf{bottom:1042.350000px;}
.ye{bottom:1066.110000px;}
.yd{bottom:1090.050000px;}
.yc{bottom:1113.810000px;}
.y37{bottom:1132.170000px;}
.yb{bottom:1137.570000px;}
.y5{bottom:1157.760000px;}
.y4{bottom:1169.100000px;}
.y3{bottom:1185.120000px;}
.y2{bottom:1203.300000px;}
.y1{bottom:1224.540000px;}
.h8{height:21.780000px;}
.hb{height:23.256000px;}
.h5{height:25.136719px;}
.h4{height:37.705078px;}
.ha{height:50.273438px;}
.h3{height:50.597578px;}
.h9{height:50.800781px;}
.hd{height:52.417969px;}
.h2{height:60.679688px;}
.h6{height:61.329023px;}
.h7{height:65.884219px;}
.hc{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.500000px;}
.w4{width:383.835000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:16.635000px;}
.x10{left:19.980000px;}
.x5{left:127.655987px;}
.x2{left:130.895987px;}
.xf{left:154.649987px;}
.x14{left:159.689987px;}
.x1{left:167.249987px;}
.xa{left:180.749987px;}
.x11{left:207.749987px;}
.x12{left:234.749987px;}
.x13{left:279.929987px;}
.x3{left:394.814987px;}
.xb{left:414.074987px;}
.x7{left:454.500000px;}
.x4{left:478.514987px;}
.x9{left:505.004987px;}
.x6{left:512.204987px;}
.xd{left:604.364987px;}
.xc{left:732.929987px;}
.xe{left:818.969987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.282133pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.355733pt;}
.ls8{letter-spacing:6.016000pt;}
.lsa{letter-spacing:48.106667pt;}
.ls9{letter-spacing:48.768000pt;}
.ls4{letter-spacing:211.178667pt;}
.ls5{letter-spacing:248.938667pt;}
.ws4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-11.968533pt;}
.ws1{word-spacing:-0.414613pt;}
.ws5{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-8.448000pt;}
._4{margin-left:-6.656000pt;}
._1{margin-left:-5.248000pt;}
._5{margin-left:-3.584000pt;}
._3{margin-left:-2.304000pt;}
._2{margin-left:-1.344000pt;}
._6{width:1.088000pt;}
._10{width:2.666667pt;}
._9{width:4.096000pt;}
._c{width:5.184000pt;}
._18{width:6.336000pt;}
._1a{width:7.402667pt;}
._1e{width:8.448000pt;}
._15{width:10.304000pt;}
._17{width:11.626667pt;}
._8{width:12.672000pt;}
._a{width:17.344000pt;}
._b{width:18.304000pt;}
._e{width:19.392000pt;}
._16{width:20.352000pt;}
._11{width:21.888000pt;}
._f{width:23.488000pt;}
._19{width:24.448000pt;}
._1b{width:26.432000pt;}
._1c{width:28.736000pt;}
._1d{width:29.760000pt;}
._12{width:52.864000pt;}
._13{width:53.760000pt;}
._d{width:152.960000pt;}
._14{width:164.725333pt;}
._7{width:211.178667pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:4.640000pt;}
.ya{bottom:5.120000pt;}
.y8{bottom:5.280000pt;}
.y7{bottom:23.200000pt;}
.y6{bottom:37.120000pt;}
.y9{bottom:40.320000pt;}
.y36{bottom:88.000000pt;}
.y35{bottom:109.120000pt;}
.y34{bottom:130.240000pt;}
.y50{bottom:132.320000pt;}
.y33{bottom:151.360000pt;}
.y4f{bottom:166.906667pt;}
.y32{bottom:172.506667pt;}
.y4e{bottom:188.026667pt;}
.y31{bottom:193.786667pt;}
.y4d{bottom:209.146667pt;}
.y30{bottom:214.906667pt;}
.y4c{bottom:230.266667pt;}
.y2f{bottom:236.026667pt;}
.y4b{bottom:251.546667pt;}
.y2e{bottom:257.146667pt;}
.y4a{bottom:272.666667pt;}
.y2d{bottom:278.426667pt;}
.y49{bottom:293.786667pt;}
.y2c{bottom:299.546667pt;}
.y48{bottom:314.906667pt;}
.y2b{bottom:320.666667pt;}
.y2a{bottom:341.786667pt;}
.y47{bottom:349.466667pt;}
.y29{bottom:363.066667pt;}
.y46{bottom:370.586667pt;}
.y28{bottom:384.226667pt;}
.y45{bottom:391.746667pt;}
.y27{bottom:405.346667pt;}
.y44{bottom:413.026667pt;}
.y26{bottom:426.466667pt;}
.y43{bottom:434.146667pt;}
.y25{bottom:447.746667pt;}
.y42{bottom:455.266667pt;}
.y24{bottom:468.866667pt;}
.y41{bottom:476.386667pt;}
.y23{bottom:489.986667pt;}
.y40{bottom:497.666667pt;}
.y22{bottom:511.106667pt;}
.y3f{bottom:518.626667pt;}
.y21{bottom:532.386667pt;}
.y3e{bottom:540.866667pt;}
.y20{bottom:553.506667pt;}
.y3d{bottom:563.266667pt;}
.y1f{bottom:574.626667pt;}
.y3c{bottom:585.666667pt;}
.y1e{bottom:595.773333pt;}
.y3b{bottom:606.653333pt;}
.y1d{bottom:617.053333pt;}
.y3a{bottom:629.213333pt;}
.y39{bottom:650.173333pt;}
.y1c{bottom:651.453333pt;}
.y1b{bottom:672.573333pt;}
.y1a{bottom:693.853333pt;}
.y19{bottom:714.973333pt;}
.y18{bottom:736.093333pt;}
.y17{bottom:757.213333pt;}
.y16{bottom:778.493333pt;}
.y15{bottom:799.613333pt;}
.y14{bottom:820.773333pt;}
.y13{bottom:841.893333pt;}
.y12{bottom:863.013333pt;}
.y11{bottom:884.293333pt;}
.y10{bottom:905.413333pt;}
.yf{bottom:926.533333pt;}
.ye{bottom:947.653333pt;}
.yd{bottom:968.933333pt;}
.yc{bottom:990.053333pt;}
.y37{bottom:1006.373333pt;}
.yb{bottom:1011.173333pt;}
.y5{bottom:1029.120000pt;}
.y4{bottom:1039.200000pt;}
.y3{bottom:1053.440000pt;}
.y2{bottom:1069.600000pt;}
.y1{bottom:1088.480000pt;}
.h8{height:19.360000pt;}
.hb{height:20.672000pt;}
.h5{height:22.343750pt;}
.h4{height:33.515625pt;}
.ha{height:44.687500pt;}
.h3{height:44.975625pt;}
.h9{height:45.156250pt;}
.hd{height:46.593750pt;}
.h2{height:53.937500pt;}
.h6{height:54.514687pt;}
.h7{height:58.563750pt;}
.hc{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.000000pt;}
.w4{width:341.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:14.786667pt;}
.x10{left:17.760000pt;}
.x5{left:113.471988pt;}
.x2{left:116.351988pt;}
.xf{left:137.466655pt;}
.x14{left:141.946655pt;}
.x1{left:148.666655pt;}
.xa{left:160.666655pt;}
.x11{left:184.666655pt;}
.x12{left:208.666655pt;}
.x13{left:248.826655pt;}
.x3{left:350.946655pt;}
.xb{left:368.066655pt;}
.x7{left:404.000000pt;}
.x4{left:425.346655pt;}
.x9{left:448.893322pt;}
.x6{left:455.293322pt;}
.xd{left:537.213322pt;}
.xc{left:651.493322pt;}
.xe{left:727.973322pt;}
}




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