
    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_72b8f60f78ecca752a406a92.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_a329d1dc7354f376d067e289.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_30c6f129afabda96a7c51c98.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_93ad4fdcc60545dcfef030dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_b5a5895ca48d112fbeb2d102.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_50719e1dcce6e81f9e35a925.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912109;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_47d55e44ce13f31624f2d757.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:21.600000px;}
.ls8{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.726000px;}
.ls4{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.462000px;}
.lsa{letter-spacing:-0.396000px;}
.lse{letter-spacing:-0.330000px;}
.ls9{letter-spacing:-0.264000px;}
.ls7{letter-spacing:-0.198000px;}
.ls6{letter-spacing:-0.132000px;}
.ls5{letter-spacing:-0.066000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007800px;}
.ls1{letter-spacing:3.685800px;}
.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;}
}
.ws19{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.012000px;}
.ws1{word-spacing:-15.000000px;}
.ws18{word-spacing:-13.932000px;}
.ws2{word-spacing:-10.500000px;}
.ws10{word-spacing:-3.300000px;}
.wsa{word-spacing:-3.000000px;}
.ws17{word-spacing:-2.772000px;}
.ws8{word-spacing:-2.700000px;}
.ws12{word-spacing:-2.640000px;}
.ws5{word-spacing:-1.296000px;}
.ws15{word-spacing:-1.122000px;}
.ws4{word-spacing:-0.972000px;}
.ws23{word-spacing:-0.462000px;}
.wsb{word-spacing:-0.420000px;}
.ws3{word-spacing:0.000000px;}
.ws1d{word-spacing:0.066000px;}
.ws9{word-spacing:0.702000px;}
.ws1c{word-spacing:1.650000px;}
.ws14{word-spacing:1.848000px;}
.ws2c{word-spacing:2.244000px;}
.ws13{word-spacing:2.640000px;}
.wse{word-spacing:2.772000px;}
.ws11{word-spacing:3.036000px;}
.ws25{word-spacing:3.300000px;}
.ws20{word-spacing:3.432000px;}
.wsf{word-spacing:3.630000px;}
.wsc{word-spacing:3.672000px;}
.ws22{word-spacing:5.280000px;}
.ws7{word-spacing:5.940000px;}
.ws16{word-spacing:6.270000px;}
.ws6{word-spacing:7.020000px;}
.ws2d{word-spacing:7.062000px;}
.ws1e{word-spacing:7.128000px;}
.ws2b{word-spacing:7.656000px;}
.ws26{word-spacing:9.372000px;}
.ws27{word-spacing:10.428000px;}
.ws1b{word-spacing:10.758000px;}
.ws21{word-spacing:12.474000px;}
.ws28{word-spacing:12.936000px;}
.ws1f{word-spacing:13.860000px;}
.wsd{word-spacing:13.992000px;}
.ws29{word-spacing:14.388000px;}
.ws24{word-spacing:14.982000px;}
.ws1a{word-spacing:15.642000px;}
.ws2a{word-spacing:17.226000px;}
._4{margin-left:-9.892800px;}
._2{margin-left:-7.971000px;}
._5{margin-left:-5.994000px;}
._1{margin-left:-4.914000px;}
._8{margin-left:-3.116400px;}
._0{margin-left:-2.014200px;}
._a{margin-left:-1.009800px;}
._3{width:1.310400px;}
._7{width:2.548200px;}
._6{width:3.691800px;}
._9{width:4.765200px;}
._b{width:6.725400px;}
._c{width:12.804000px;}
.fc3{color:rgb(171,35,33);}
.fc2{color:rgb(198,56,54);}
.fc1{color:rgb(133,138,141);}
.fc0{color:rgb(27,24,26);}
.fs5{font-size:42.000000px;}
.fs3{font-size:50.400000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.631050px;}
.y2b{bottom:128.314950px;}
.y2a{bottom:149.314950px;}
.y29{bottom:170.314950px;}
.y28{bottom:191.314950px;}
.y27{bottom:212.314950px;}
.y26{bottom:233.314950px;}
.y25{bottom:254.314950px;}
.y24{bottom:275.314950px;}
.y23{bottom:296.314950px;}
.y22{bottom:317.314950px;}
.y21{bottom:338.314950px;}
.y20{bottom:359.314950px;}
.y1f{bottom:380.314950px;}
.y1e{bottom:401.314950px;}
.y1d{bottom:422.314950px;}
.y1c{bottom:443.314950px;}
.y1b{bottom:464.314950px;}
.y1a{bottom:485.314950px;}
.y19{bottom:506.314950px;}
.y18{bottom:527.314950px;}
.y47{bottom:548.314950px;}
.y46{bottom:569.314950px;}
.y45{bottom:590.314950px;}
.y44{bottom:611.314950px;}
.y17{bottom:616.564800px;}
.y43{bottom:632.314950px;}
.y16{bottom:634.564800px;}
.y15{bottom:652.564800px;}
.y42{bottom:653.314950px;}
.y14{bottom:670.564800px;}
.y41{bottom:674.314950px;}
.y13{bottom:688.564800px;}
.y40{bottom:695.314950px;}
.y12{bottom:706.564800px;}
.y3f{bottom:716.314950px;}
.y11{bottom:724.564800px;}
.y3e{bottom:737.314950px;}
.y10{bottom:742.564800px;}
.y3d{bottom:758.314950px;}
.yf{bottom:760.564800px;}
.ye{bottom:778.564800px;}
.y3c{bottom:779.314950px;}
.yd{bottom:796.564800px;}
.y3b{bottom:800.314950px;}
.yc{bottom:814.564800px;}
.y3a{bottom:821.314950px;}
.y39{bottom:842.314950px;}
.y38{bottom:863.314950px;}
.y37{bottom:884.314950px;}
.yb{bottom:892.092450px;}
.y36{bottom:905.314950px;}
.ya{bottom:922.092450px;}
.y35{bottom:926.314950px;}
.y34{bottom:947.314950px;}
.y33{bottom:968.314950px;}
.y32{bottom:989.314950px;}
.y9{bottom:994.612050px;}
.y31{bottom:1010.314950px;}
.y48{bottom:1031.314950px;}
.y30{bottom:1052.314950px;}
.y2f{bottom:1073.314950px;}
.y8{bottom:1082.502300px;}
.y2e{bottom:1094.314950px;}
.y7{bottom:1100.502300px;}
.y2d{bottom:1115.314950px;}
.y6{bottom:1118.502300px;}
.y5{bottom:1136.502300px;}
.y4{bottom:1163.006250px;}
.y3{bottom:1181.006250px;}
.y2c{bottom:1189.226850px;}
.y2{bottom:1199.006250px;}
.h3{height:39.313477px;}
.h2{height:41.689453px;}
.h7{height:41.777344px;}
.h9{height:45.858398px;}
.h8{height:45.955078px;}
.h6{height:47.182617px;}
.ha{height:56.929688px;}
.h4{height:58.292578px;}
.h5{height:73.195312px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:127.559100px;}
.xb{left:157.322850px;}
.xa{left:170.078700px;}
.x9{left:191.338650px;}
.x1{left:442.706700px;}
.x2{left:531.518700px;}
.x5{left:534.564000px;}
.x4{left:560.766450px;}
.x7{left:571.300200px;}
.x6{left:595.834800px;}
.x3{left:665.879250px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls8{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.645333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.410667pt;}
.lsa{letter-spacing:-0.352000pt;}
.lse{letter-spacing:-0.293333pt;}
.ls9{letter-spacing:-0.234667pt;}
.ls7{letter-spacing:-0.176000pt;}
.ls6{letter-spacing:-0.117333pt;}
.ls5{letter-spacing:-0.058667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006933pt;}
.ls1{letter-spacing:3.276267pt;}
.ws19{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws18{word-spacing:-12.384000pt;}
.ws2{word-spacing:-9.333333pt;}
.ws10{word-spacing:-2.933333pt;}
.wsa{word-spacing:-2.666667pt;}
.ws17{word-spacing:-2.464000pt;}
.ws8{word-spacing:-2.400000pt;}
.ws12{word-spacing:-2.346667pt;}
.ws5{word-spacing:-1.152000pt;}
.ws15{word-spacing:-0.997333pt;}
.ws4{word-spacing:-0.864000pt;}
.ws23{word-spacing:-0.410667pt;}
.wsb{word-spacing:-0.373333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.058667pt;}
.ws9{word-spacing:0.624000pt;}
.ws1c{word-spacing:1.466667pt;}
.ws14{word-spacing:1.642667pt;}
.ws2c{word-spacing:1.994667pt;}
.ws13{word-spacing:2.346667pt;}
.wse{word-spacing:2.464000pt;}
.ws11{word-spacing:2.698667pt;}
.ws25{word-spacing:2.933333pt;}
.ws20{word-spacing:3.050667pt;}
.wsf{word-spacing:3.226667pt;}
.wsc{word-spacing:3.264000pt;}
.ws22{word-spacing:4.693333pt;}
.ws7{word-spacing:5.280000pt;}
.ws16{word-spacing:5.573333pt;}
.ws6{word-spacing:6.240000pt;}
.ws2d{word-spacing:6.277333pt;}
.ws1e{word-spacing:6.336000pt;}
.ws2b{word-spacing:6.805333pt;}
.ws26{word-spacing:8.330667pt;}
.ws27{word-spacing:9.269333pt;}
.ws1b{word-spacing:9.562667pt;}
.ws21{word-spacing:11.088000pt;}
.ws28{word-spacing:11.498667pt;}
.ws1f{word-spacing:12.320000pt;}
.wsd{word-spacing:12.437333pt;}
.ws29{word-spacing:12.789333pt;}
.ws24{word-spacing:13.317333pt;}
.ws1a{word-spacing:13.904000pt;}
.ws2a{word-spacing:15.312000pt;}
._4{margin-left:-8.793600pt;}
._2{margin-left:-7.085333pt;}
._5{margin-left:-5.328000pt;}
._1{margin-left:-4.368000pt;}
._8{margin-left:-2.770133pt;}
._0{margin-left:-1.790400pt;}
._a{margin-left:-0.897600pt;}
._3{width:1.164800pt;}
._7{width:2.265067pt;}
._6{width:3.281600pt;}
._9{width:4.235733pt;}
._b{width:5.978133pt;}
._c{width:11.381333pt;}
.fs5{font-size:37.333333pt;}
.fs3{font-size:44.800000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.227600pt;}
.y2b{bottom:114.057733pt;}
.y2a{bottom:132.724400pt;}
.y29{bottom:151.391067pt;}
.y28{bottom:170.057733pt;}
.y27{bottom:188.724400pt;}
.y26{bottom:207.391067pt;}
.y25{bottom:226.057733pt;}
.y24{bottom:244.724400pt;}
.y23{bottom:263.391067pt;}
.y22{bottom:282.057733pt;}
.y21{bottom:300.724400pt;}
.y20{bottom:319.391067pt;}
.y1f{bottom:338.057733pt;}
.y1e{bottom:356.724400pt;}
.y1d{bottom:375.391067pt;}
.y1c{bottom:394.057733pt;}
.y1b{bottom:412.724400pt;}
.y1a{bottom:431.391067pt;}
.y19{bottom:450.057733pt;}
.y18{bottom:468.724400pt;}
.y47{bottom:487.391067pt;}
.y46{bottom:506.057733pt;}
.y45{bottom:524.724400pt;}
.y44{bottom:543.391067pt;}
.y17{bottom:548.057600pt;}
.y43{bottom:562.057733pt;}
.y16{bottom:564.057600pt;}
.y15{bottom:580.057600pt;}
.y42{bottom:580.724400pt;}
.y14{bottom:596.057600pt;}
.y41{bottom:599.391067pt;}
.y13{bottom:612.057600pt;}
.y40{bottom:618.057733pt;}
.y12{bottom:628.057600pt;}
.y3f{bottom:636.724400pt;}
.y11{bottom:644.057600pt;}
.y3e{bottom:655.391067pt;}
.y10{bottom:660.057600pt;}
.y3d{bottom:674.057733pt;}
.yf{bottom:676.057600pt;}
.ye{bottom:692.057600pt;}
.y3c{bottom:692.724400pt;}
.yd{bottom:708.057600pt;}
.y3b{bottom:711.391067pt;}
.yc{bottom:724.057600pt;}
.y3a{bottom:730.057733pt;}
.y39{bottom:748.724400pt;}
.y38{bottom:767.391067pt;}
.y37{bottom:786.057733pt;}
.yb{bottom:792.971067pt;}
.y36{bottom:804.724400pt;}
.ya{bottom:819.637733pt;}
.y35{bottom:823.391067pt;}
.y34{bottom:842.057733pt;}
.y33{bottom:860.724400pt;}
.y32{bottom:879.391067pt;}
.y9{bottom:884.099600pt;}
.y31{bottom:898.057733pt;}
.y48{bottom:916.724400pt;}
.y30{bottom:935.391067pt;}
.y2f{bottom:954.057733pt;}
.y8{bottom:962.224267pt;}
.y2e{bottom:972.724400pt;}
.y7{bottom:978.224267pt;}
.y2d{bottom:991.391067pt;}
.y6{bottom:994.224267pt;}
.y5{bottom:1010.224267pt;}
.y4{bottom:1033.783333pt;}
.y3{bottom:1049.783333pt;}
.y2c{bottom:1057.090533pt;}
.y2{bottom:1065.783333pt;}
.h3{height:34.945312pt;}
.h2{height:37.057292pt;}
.h7{height:37.135417pt;}
.h9{height:40.763021pt;}
.h8{height:40.848958pt;}
.h6{height:41.940104pt;}
.ha{height:50.604167pt;}
.h4{height:51.815625pt;}
.h5{height:65.062500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:113.385867pt;}
.xb{left:139.842533pt;}
.xa{left:151.181067pt;}
.x9{left:170.078800pt;}
.x1{left:393.517067pt;}
.x2{left:472.461067pt;}
.x5{left:475.168000pt;}
.x4{left:498.459067pt;}
.x7{left:507.822400pt;}
.x6{left:529.630933pt;}
.x3{left:591.892667pt;}
}




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