
    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_2f426324bee60293630da951.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_e566b585555e4dc980ea4026.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_b5801a04cd70b1a9c701aaef.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_f0f69bf5b8a2e80bb1b87025.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_de576d6a818ee48943f89c10.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b2d4eae100cb16e2fdb9d9d0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4eb456a30f515dcd2cee7342.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_32ee78666d94667acd2c4582.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.707000;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_752c0d2fe9e3dd283e0f2d6e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_2f426324bee60293630da951.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_e566b585555e4dc980ea4026.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.720000;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_2a54eac6dac6dde69350d9b6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720000;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_52f4cef3973919d5b425031a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:2.940000px;}
.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;}
}
.ws26{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.000000px;}
.ws1e{word-spacing:-3.600000px;}
.ws18{word-spacing:-2.940000px;}
.ws1f{word-spacing:-2.760000px;}
.wsf{word-spacing:-1.800000px;}
.ws28{word-spacing:-1.200000px;}
.wsd{word-spacing:-0.900000px;}
.ws11{word-spacing:-0.780000px;}
.ws17{word-spacing:-0.420000px;}
.ws14{word-spacing:-0.360000px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:0.720000px;}
.ws10{word-spacing:2.700000px;}
.ws5{word-spacing:4.260000px;}
.ws4{word-spacing:6.000000px;}
.ws8{word-spacing:6.060000px;}
.wsb{word-spacing:7.260000px;}
.ws1c{word-spacing:8.220000px;}
.ws6{word-spacing:8.460000px;}
.ws13{word-spacing:9.480000px;}
.ws7{word-spacing:9.540000px;}
.ws23{word-spacing:9.660000px;}
.wsc{word-spacing:10.200000px;}
.ws22{word-spacing:12.720000px;}
.ws19{word-spacing:13.260000px;}
.ws1b{word-spacing:13.320000px;}
.ws1a{word-spacing:13.920000px;}
.ws21{word-spacing:15.120000px;}
.ws2b{word-spacing:15.240000px;}
.ws12{word-spacing:16.020000px;}
.ws25{word-spacing:16.080000px;}
.ws20{word-spacing:18.000000px;}
.ws1d{word-spacing:21.600000px;}
.ws29{word-spacing:21.900000px;}
.ws15{word-spacing:22.020000px;}
.ws24{word-spacing:23.340000px;}
.ws16{word-spacing:25.500000px;}
.wse{word-spacing:25.620000px;}
.ws27{word-spacing:26.580000px;}
.ws2a{word-spacing:29.400000px;}
.ws2c{word-spacing:32.940000px;}
.ws0{word-spacing:48.021000px;}
.ws1{word-spacing:386.314800px;}
.ws9{word-spacing:1714.377600px;}
._25{margin-left:-8.418000px;}
._2{margin-left:-7.047000px;}
._3{margin-left:-6.004800px;}
._0{margin-left:-4.950000px;}
._4{margin-left:-2.970000px;}
._1{margin-left:-1.629000px;}
._16{width:1.181400px;}
._7{width:2.256000px;}
._6{width:3.384000px;}
._14{width:4.584000px;}
._13{width:6.102000px;}
._8{width:7.290000px;}
._9{width:8.292000px;}
._15{width:9.468000px;}
._b{width:10.584000px;}
._a{width:11.826000px;}
._c{width:12.828000px;}
._12{width:13.932000px;}
._11{width:16.230000px;}
._e{width:18.300000px;}
._f{width:19.584000px;}
._10{width:20.682000px;}
._1f{width:22.464000px;}
._26{width:23.718000px;}
._1d{width:24.810000px;}
._17{width:26.580000px;}
._1a{width:27.912000px;}
._19{width:29.910000px;}
._1e{width:32.874000px;}
._24{width:36.216000px;}
._27{width:38.214000px;}
._28{width:39.366000px;}
._22{width:43.440000px;}
._1b{width:45.270000px;}
._29{width:46.668000px;}
._1c{width:49.524000px;}
._21{width:52.020000px;}
._23{width:54.780000px;}
._20{width:56.100000px;}
._18{width:59.820000px;}
._5{width:64.020000px;}
._d{width:70.020000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y37{bottom:64.760550px;}
.y36{bottom:65.586600px;}
.y68{bottom:99.159600px;}
.y2c{bottom:117.142650px;}
.y67{bottom:118.659600px;}
.y2b{bottom:136.642650px;}
.y66{bottom:138.159600px;}
.y2a{bottom:156.142650px;}
.y65{bottom:157.659600px;}
.y29{bottom:175.642650px;}
.y64{bottom:177.159600px;}
.y28{bottom:195.142650px;}
.y63{bottom:196.659600px;}
.y27{bottom:214.642650px;}
.y62{bottom:216.159600px;}
.y26{bottom:234.142650px;}
.y61{bottom:235.659600px;}
.y25{bottom:253.642650px;}
.y60{bottom:255.159600px;}
.y24{bottom:273.142650px;}
.y5f{bottom:274.659600px;}
.y23{bottom:292.642650px;}
.y5e{bottom:294.159600px;}
.y22{bottom:312.142650px;}
.y5d{bottom:313.659600px;}
.y21{bottom:331.642650px;}
.y5c{bottom:333.159600px;}
.y20{bottom:351.142650px;}
.y5b{bottom:352.659600px;}
.y1f{bottom:370.642650px;}
.y5a{bottom:372.159600px;}
.y1e{bottom:390.142650px;}
.y59{bottom:391.659600px;}
.y1d{bottom:409.642650px;}
.y58{bottom:411.159600px;}
.y1c{bottom:429.142650px;}
.y57{bottom:430.659600px;}
.y1b{bottom:448.642650px;}
.y56{bottom:450.159600px;}
.y35{bottom:456.139950px;}
.y1a{bottom:468.142650px;}
.y55{bottom:469.659600px;}
.y34{bottom:478.639950px;}
.y19{bottom:487.642650px;}
.y54{bottom:489.159600px;}
.y33{bottom:501.139950px;}
.y18{bottom:507.142650px;}
.y53{bottom:508.659600px;}
.y17{bottom:526.642650px;}
.y52{bottom:528.159600px;}
.y32{bottom:541.639950px;}
.y16{bottom:546.142650px;}
.y51{bottom:547.659600px;}
.y15{bottom:565.642650px;}
.y50{bottom:567.159600px;}
.y14{bottom:585.142650px;}
.y31{bottom:586.639950px;}
.y4f{bottom:586.659600px;}
.y13{bottom:604.642650px;}
.y4e{bottom:606.159600px;}
.y12{bottom:624.142650px;}
.y4d{bottom:625.659600px;}
.y30{bottom:627.139950px;}
.y11{bottom:643.642650px;}
.y4c{bottom:645.159600px;}
.y2f{bottom:663.139950px;}
.y10{bottom:663.142650px;}
.y4b{bottom:664.659600px;}
.yf{bottom:682.642650px;}
.y4a{bottom:684.159600px;}
.y2e{bottom:699.139950px;}
.ye{bottom:702.142650px;}
.y49{bottom:703.659600px;}
.yd{bottom:721.642650px;}
.y48{bottom:723.159600px;}
.y2d{bottom:735.139950px;}
.yc{bottom:741.142650px;}
.y47{bottom:742.659600px;}
.yb{bottom:760.642650px;}
.y46{bottom:762.159600px;}
.ya{bottom:780.142650px;}
.y45{bottom:781.659600px;}
.y9{bottom:799.642650px;}
.y44{bottom:801.159600px;}
.y43{bottom:820.659600px;}
.y8{bottom:838.648650px;}
.y42{bottom:840.159600px;}
.y7{bottom:858.142650px;}
.y41{bottom:859.659600px;}
.y6{bottom:876.142650px;}
.y40{bottom:879.159600px;}
.y3f{bottom:898.659600px;}
.y5{bottom:915.142650px;}
.y3e{bottom:918.159600px;}
.y3d{bottom:937.659600px;}
.y4{bottom:942.142650px;}
.y3c{bottom:957.159600px;}
.y3{bottom:969.142650px;}
.y3b{bottom:976.659600px;}
.y3a{bottom:996.159600px;}
.y39{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y38{bottom:1039.374150px;}
.he{height:34.176000px;}
.hd{height:34.560000px;}
.h6{height:37.494141px;}
.h5{height:40.664062px;}
.h7{height:41.660156px;}
.h8{height:41.689453px;}
.hc{height:42.000000px;}
.hb{height:42.720000px;}
.ha{height:46.200000px;}
.h9{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h4{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xb{left:63.779550px;}
.x2{left:65.202600px;}
.xa{left:73.559100px;}
.x1{left:74.853150px;}
.x10{left:90.779550px;}
.x9{left:224.187900px;}
.x3{left:264.417450px;}
.x4{left:267.229950px;}
.x5{left:378.492450px;}
.xf{left:399.929550px;}
.xe{left:412.272150px;}
.x8{left:423.524550px;}
.x11{left:426.929550px;}
.x7{left:449.917050px;}
.xd{left:614.196150px;}
.x6{left:626.048400px;}
.xc{left:632.875800px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:2.613333pt;}
.ws26{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1e{word-spacing:-3.200000pt;}
.ws18{word-spacing:-2.613333pt;}
.ws1f{word-spacing:-2.453333pt;}
.wsf{word-spacing:-1.600000pt;}
.ws28{word-spacing:-1.066667pt;}
.wsd{word-spacing:-0.800000pt;}
.ws11{word-spacing:-0.693333pt;}
.ws17{word-spacing:-0.373333pt;}
.ws14{word-spacing:-0.320000pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:0.640000pt;}
.ws10{word-spacing:2.400000pt;}
.ws5{word-spacing:3.786667pt;}
.ws4{word-spacing:5.333333pt;}
.ws8{word-spacing:5.386667pt;}
.wsb{word-spacing:6.453333pt;}
.ws1c{word-spacing:7.306667pt;}
.ws6{word-spacing:7.520000pt;}
.ws13{word-spacing:8.426667pt;}
.ws7{word-spacing:8.480000pt;}
.ws23{word-spacing:8.586667pt;}
.wsc{word-spacing:9.066667pt;}
.ws22{word-spacing:11.306667pt;}
.ws19{word-spacing:11.786667pt;}
.ws1b{word-spacing:11.840000pt;}
.ws1a{word-spacing:12.373333pt;}
.ws21{word-spacing:13.440000pt;}
.ws2b{word-spacing:13.546667pt;}
.ws12{word-spacing:14.240000pt;}
.ws25{word-spacing:14.293333pt;}
.ws20{word-spacing:16.000000pt;}
.ws1d{word-spacing:19.200000pt;}
.ws29{word-spacing:19.466667pt;}
.ws15{word-spacing:19.573333pt;}
.ws24{word-spacing:20.746667pt;}
.ws16{word-spacing:22.666667pt;}
.wse{word-spacing:22.773333pt;}
.ws27{word-spacing:23.626667pt;}
.ws2a{word-spacing:26.133333pt;}
.ws2c{word-spacing:29.280000pt;}
.ws0{word-spacing:42.685333pt;}
.ws1{word-spacing:343.390933pt;}
.ws9{word-spacing:1523.891200pt;}
._25{margin-left:-7.482667pt;}
._2{margin-left:-6.264000pt;}
._3{margin-left:-5.337600pt;}
._0{margin-left:-4.400000pt;}
._4{margin-left:-2.640000pt;}
._1{margin-left:-1.448000pt;}
._16{width:1.050133pt;}
._7{width:2.005333pt;}
._6{width:3.008000pt;}
._14{width:4.074667pt;}
._13{width:5.424000pt;}
._8{width:6.480000pt;}
._9{width:7.370667pt;}
._15{width:8.416000pt;}
._b{width:9.408000pt;}
._a{width:10.512000pt;}
._c{width:11.402667pt;}
._12{width:12.384000pt;}
._11{width:14.426667pt;}
._e{width:16.266667pt;}
._f{width:17.408000pt;}
._10{width:18.384000pt;}
._1f{width:19.968000pt;}
._26{width:21.082667pt;}
._1d{width:22.053333pt;}
._17{width:23.626667pt;}
._1a{width:24.810667pt;}
._19{width:26.586667pt;}
._1e{width:29.221333pt;}
._24{width:32.192000pt;}
._27{width:33.968000pt;}
._28{width:34.992000pt;}
._22{width:38.613333pt;}
._1b{width:40.240000pt;}
._29{width:41.482667pt;}
._1c{width:44.021333pt;}
._21{width:46.240000pt;}
._23{width:48.693333pt;}
._20{width:49.866667pt;}
._18{width:53.173333pt;}
._5{width:56.906667pt;}
._d{width:62.240000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y37{bottom:57.564933pt;}
.y36{bottom:58.299200pt;}
.y68{bottom:88.141867pt;}
.y2c{bottom:104.126800pt;}
.y67{bottom:105.475200pt;}
.y2b{bottom:121.460133pt;}
.y66{bottom:122.808533pt;}
.y2a{bottom:138.793467pt;}
.y65{bottom:140.141867pt;}
.y29{bottom:156.126800pt;}
.y64{bottom:157.475200pt;}
.y28{bottom:173.460133pt;}
.y63{bottom:174.808533pt;}
.y27{bottom:190.793467pt;}
.y62{bottom:192.141867pt;}
.y26{bottom:208.126800pt;}
.y61{bottom:209.475200pt;}
.y25{bottom:225.460133pt;}
.y60{bottom:226.808533pt;}
.y24{bottom:242.793467pt;}
.y5f{bottom:244.141867pt;}
.y23{bottom:260.126800pt;}
.y5e{bottom:261.475200pt;}
.y22{bottom:277.460133pt;}
.y5d{bottom:278.808533pt;}
.y21{bottom:294.793467pt;}
.y5c{bottom:296.141867pt;}
.y20{bottom:312.126800pt;}
.y5b{bottom:313.475200pt;}
.y1f{bottom:329.460133pt;}
.y5a{bottom:330.808533pt;}
.y1e{bottom:346.793467pt;}
.y59{bottom:348.141867pt;}
.y1d{bottom:364.126800pt;}
.y58{bottom:365.475200pt;}
.y1c{bottom:381.460133pt;}
.y57{bottom:382.808533pt;}
.y1b{bottom:398.793467pt;}
.y56{bottom:400.141867pt;}
.y35{bottom:405.457733pt;}
.y1a{bottom:416.126800pt;}
.y55{bottom:417.475200pt;}
.y34{bottom:425.457733pt;}
.y19{bottom:433.460133pt;}
.y54{bottom:434.808533pt;}
.y33{bottom:445.457733pt;}
.y18{bottom:450.793467pt;}
.y53{bottom:452.141867pt;}
.y17{bottom:468.126800pt;}
.y52{bottom:469.475200pt;}
.y32{bottom:481.457733pt;}
.y16{bottom:485.460133pt;}
.y51{bottom:486.808533pt;}
.y15{bottom:502.793467pt;}
.y50{bottom:504.141867pt;}
.y14{bottom:520.126800pt;}
.y31{bottom:521.457733pt;}
.y4f{bottom:521.475200pt;}
.y13{bottom:537.460133pt;}
.y4e{bottom:538.808533pt;}
.y12{bottom:554.793467pt;}
.y4d{bottom:556.141867pt;}
.y30{bottom:557.457733pt;}
.y11{bottom:572.126800pt;}
.y4c{bottom:573.475200pt;}
.y2f{bottom:589.457733pt;}
.y10{bottom:589.460133pt;}
.y4b{bottom:590.808533pt;}
.yf{bottom:606.793467pt;}
.y4a{bottom:608.141867pt;}
.y2e{bottom:621.457733pt;}
.ye{bottom:624.126800pt;}
.y49{bottom:625.475200pt;}
.yd{bottom:641.460133pt;}
.y48{bottom:642.808533pt;}
.y2d{bottom:653.457733pt;}
.yc{bottom:658.793467pt;}
.y47{bottom:660.141867pt;}
.yb{bottom:676.126800pt;}
.y46{bottom:677.475200pt;}
.ya{bottom:693.460133pt;}
.y45{bottom:694.808533pt;}
.y9{bottom:710.793467pt;}
.y44{bottom:712.141867pt;}
.y43{bottom:729.475200pt;}
.y8{bottom:745.465467pt;}
.y42{bottom:746.808533pt;}
.y7{bottom:762.793467pt;}
.y41{bottom:764.141867pt;}
.y6{bottom:778.793467pt;}
.y40{bottom:781.475200pt;}
.y3f{bottom:798.808533pt;}
.y5{bottom:813.460133pt;}
.y3e{bottom:816.141867pt;}
.y3d{bottom:833.475200pt;}
.y4{bottom:837.460133pt;}
.y3c{bottom:850.808533pt;}
.y3{bottom:861.460133pt;}
.y3b{bottom:868.141867pt;}
.y3a{bottom:885.475200pt;}
.y39{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y38{bottom:923.888133pt;}
.he{height:30.378667pt;}
.hd{height:30.720000pt;}
.h6{height:33.328125pt;}
.h5{height:36.145833pt;}
.h7{height:37.031250pt;}
.h8{height:37.057292pt;}
.hc{height:37.333333pt;}
.hb{height:37.973333pt;}
.ha{height:41.066667pt;}
.h9{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h4{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xb{left:56.692933pt;}
.x2{left:57.957867pt;}
.xa{left:65.385867pt;}
.x1{left:66.536133pt;}
.x10{left:80.692933pt;}
.x9{left:199.278133pt;}
.x3{left:235.037733pt;}
.x4{left:237.537733pt;}
.x5{left:336.437733pt;}
.xf{left:355.492933pt;}
.xe{left:366.464133pt;}
.x8{left:376.466267pt;}
.x11{left:379.492933pt;}
.x7{left:399.926267pt;}
.xd{left:545.952133pt;}
.x6{left:556.487467pt;}
.xc{left:562.556267pt;}
}




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