
    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_78b7b727406dd112f967bc9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026000;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_c15d5c2f6d9ab15eecc9715e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.041000;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_279d5ddd05d367217ee3acd4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_4b56be06d80069ea177e69b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.025000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v1{vertical-align:-9.483000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:54.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-13.797000px;}
.ws2{word-spacing:-13.041000px;}
.ws0{word-spacing:-10.512000px;}
.ws5{word-spacing:-10.176000px;}
.ws1{word-spacing:-9.198000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:200.299200px;}
.ws7{word-spacing:350.330400px;}
._17{margin-left:-14.066400px;}
._e{margin-left:-8.511300px;}
._f{margin-left:-6.033300px;}
._13{margin-left:-4.930800px;}
._1{margin-left:-3.177600px;}
._0{margin-left:-1.344000px;}
._2{width:1.363200px;}
._4{width:2.898000px;}
._8{width:4.262700px;}
._3{width:5.285700px;}
._7{width:6.432300px;}
._6{width:8.412600px;}
._9{width:9.424800px;}
._5{width:10.659600px;}
._b{width:11.692800px;}
._c{width:12.738600px;}
._a{width:15.183000px;}
._d{width:16.354800px;}
._10{width:17.501400px;}
._14{width:18.654300px;}
._15{width:20.329800px;}
._16{width:21.987000px;}
._18{width:23.173500px;}
._11{width:27.682200px;}
._12{width:29.013600px;}
._19{width:40.095300px;}
._1a{width:224.976600px;}
.fc2{color:rgb(205,23,25);}
.fc1{color:rgb(175,47,95);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.647600px;}
.y75{bottom:61.499850px;}
.y90{bottom:66.791850px;}
.yda{bottom:71.014950px;}
.y40{bottom:72.444750px;}
.y36{bottom:72.537900px;}
.yb4{bottom:75.972150px;}
.y74{bottom:82.494600px;}
.ydb{bottom:86.455800px;}
.y8f{bottom:87.786600px;}
.y3f{bottom:93.439500px;}
.y35{bottom:93.532650px;}
.yb3{bottom:96.966900px;}
.y73{bottom:103.489350px;}
.y8e{bottom:108.781350px;}
.y3e{bottom:114.434250px;}
.y34{bottom:114.527400px;}
.yb2{bottom:117.961650px;}
.y72{bottom:124.484100px;}
.y8d{bottom:129.776100px;}
.y3d{bottom:135.429000px;}
.y33{bottom:135.522150px;}
.yb1{bottom:138.956400px;}
.y71{bottom:145.478850px;}
.y8c{bottom:150.770850px;}
.y3c{bottom:156.423750px;}
.y32{bottom:156.516900px;}
.yb0{bottom:159.951150px;}
.y70{bottom:166.473600px;}
.y8b{bottom:171.765600px;}
.y31{bottom:177.511650px;}
.yaf{bottom:180.945900px;}
.y6f{bottom:187.468350px;}
.y3b{bottom:187.761600px;}
.y8a{bottom:192.760350px;}
.y30{bottom:198.506400px;}
.yae{bottom:201.940650px;}
.y3a{bottom:202.760100px;}
.y6e{bottom:208.463100px;}
.y89{bottom:213.755100px;}
.y39{bottom:222.194400px;}
.yad{bottom:222.935400px;}
.y2f{bottom:228.510150px;}
.y6d{bottom:229.457850px;}
.y88{bottom:234.749850px;}
.yac{bottom:243.930150px;}
.y2e{bottom:249.504900px;}
.y6c{bottom:250.452600px;}
.y87{bottom:255.744600px;}
.yab{bottom:264.924900px;}
.y2d{bottom:270.499650px;}
.y6b{bottom:271.447350px;}
.y86{bottom:276.739350px;}
.yaa{bottom:285.919650px;}
.y2c{bottom:291.494400px;}
.y6a{bottom:292.442100px;}
.y85{bottom:297.734100px;}
.ya9{bottom:306.914400px;}
.y2b{bottom:312.489150px;}
.y69{bottom:313.436850px;}
.y84{bottom:318.728850px;}
.ya8{bottom:327.909150px;}
.y2a{bottom:333.483900px;}
.y68{bottom:334.431600px;}
.y83{bottom:339.723600px;}
.ya7{bottom:348.903900px;}
.y29{bottom:354.478650px;}
.y67{bottom:355.426350px;}
.y82{bottom:360.718350px;}
.ya6{bottom:369.898650px;}
.y28{bottom:375.473400px;}
.y66{bottom:376.421100px;}
.y81{bottom:381.713100px;}
.ya5{bottom:390.893400px;}
.y27{bottom:396.468150px;}
.y65{bottom:397.415850px;}
.y80{bottom:402.707850px;}
.ya4{bottom:411.888150px;}
.y26{bottom:417.462900px;}
.y64{bottom:418.410600px;}
.y7f{bottom:423.702600px;}
.ya3{bottom:432.882900px;}
.y25{bottom:438.457650px;}
.y63{bottom:439.405350px;}
.yd7{bottom:439.545150px;}
.y7e{bottom:444.697350px;}
.ya2{bottom:453.877650px;}
.y24{bottom:459.452400px;}
.y62{bottom:460.400100px;}
.yd6{bottom:460.539900px;}
.y7d{bottom:465.692100px;}
.ya1{bottom:474.872400px;}
.y23{bottom:480.447150px;}
.y61{bottom:481.394850px;}
.yd5{bottom:481.534650px;}
.y7c{bottom:486.686850px;}
.ya0{bottom:495.867150px;}
.y22{bottom:501.441900px;}
.y60{bottom:502.389600px;}
.yd4{bottom:502.529400px;}
.y7b{bottom:507.681600px;}
.y9f{bottom:516.861900px;}
.y21{bottom:522.436650px;}
.y5f{bottom:523.384350px;}
.yd3{bottom:523.524150px;}
.y7a{bottom:528.676350px;}
.y9e{bottom:537.856650px;}
.y20{bottom:543.431400px;}
.y5e{bottom:544.379100px;}
.yd2{bottom:544.518900px;}
.y38{bottom:549.400650px;}
.y79{bottom:549.671100px;}
.y9d{bottom:558.851400px;}
.y1f{bottom:564.426150px;}
.y5d{bottom:565.373850px;}
.yd1{bottom:565.513650px;}
.y78{bottom:570.665850px;}
.y9c{bottom:579.846150px;}
.y1e{bottom:585.420900px;}
.y5c{bottom:586.368600px;}
.yd0{bottom:586.508400px;}
.y77{bottom:591.660600px;}
.y9b{bottom:600.840900px;}
.y1d{bottom:606.415650px;}
.y5b{bottom:607.363350px;}
.ycf{bottom:607.503150px;}
.y76{bottom:612.655350px;}
.y9a{bottom:621.835650px;}
.y1c{bottom:627.531150px;}
.y5a{bottom:628.358100px;}
.yce{bottom:628.497900px;}
.y99{bottom:642.830400px;}
.y92{bottom:645.592950px;}
.y1b{bottom:648.525900px;}
.y59{bottom:649.352850px;}
.ycd{bottom:649.492650px;}
.y98{bottom:663.825150px;}
.y1a{bottom:669.520650px;}
.y58{bottom:670.347600px;}
.ycc{bottom:670.487400px;}
.y97{bottom:676.459650px;}
.y19{bottom:690.515400px;}
.y57{bottom:691.342350px;}
.ycb{bottom:691.482150px;}
.y96{bottom:692.287650px;}
.yd9{bottom:701.383950px;}
.y95{bottom:708.115650px;}
.y18{bottom:711.510150px;}
.y56{bottom:712.337100px;}
.yca{bottom:712.476900px;}
.yd8{bottom:716.382450px;}
.y94{bottom:723.943650px;}
.y17{bottom:732.504900px;}
.y55{bottom:733.331850px;}
.yc9{bottom:733.471650px;}
.y93{bottom:739.771650px;}
.ye2{bottom:744.518550px;}
.y16{bottom:753.499650px;}
.y54{bottom:754.326600px;}
.yc8{bottom:754.466400px;}
.y15{bottom:774.494400px;}
.y53{bottom:775.321350px;}
.yc7{bottom:775.461150px;}
.ye1{bottom:776.746050px;}
.ye0{bottom:790.246050px;}
.y14{bottom:795.489150px;}
.y52{bottom:796.316100px;}
.yc6{bottom:796.455900px;}
.y13{bottom:816.483900px;}
.y51{bottom:817.310850px;}
.yc5{bottom:817.450650px;}
.ydf{bottom:817.821000px;}
.y12{bottom:837.478650px;}
.y50{bottom:838.305600px;}
.yc4{bottom:838.445400px;}
.y11{bottom:858.473400px;}
.y4f{bottom:859.300350px;}
.yc3{bottom:859.440150px;}
.y37{bottom:876.969150px;}
.y10{bottom:879.468150px;}
.y4e{bottom:880.295100px;}
.yc2{bottom:880.434900px;}
.yf{bottom:900.462900px;}
.y4d{bottom:901.289850px;}
.yc1{bottom:901.429650px;}
.yde{bottom:919.740750px;}
.ye{bottom:921.457650px;}
.y4c{bottom:922.284600px;}
.yc0{bottom:922.424400px;}
.ye3{bottom:923.055450px;}
.yd{bottom:942.452400px;}
.y4b{bottom:943.279350px;}
.ybf{bottom:943.419150px;}
.yc{bottom:963.447150px;}
.y4a{bottom:964.274100px;}
.ybe{bottom:964.413900px;}
.yb{bottom:984.441900px;}
.y49{bottom:985.268850px;}
.ybd{bottom:985.408650px;}
.ya{bottom:1005.436650px;}
.y48{bottom:1006.263600px;}
.ybc{bottom:1006.403400px;}
.ydd{bottom:1021.788000px;}
.y9{bottom:1026.431400px;}
.y47{bottom:1027.258350px;}
.ybb{bottom:1027.398150px;}
.y8{bottom:1047.426150px;}
.y46{bottom:1048.253100px;}
.yba{bottom:1048.392900px;}
.y7{bottom:1068.420900px;}
.y45{bottom:1069.247850px;}
.yb9{bottom:1069.387650px;}
.y6{bottom:1089.415650px;}
.y44{bottom:1090.242600px;}
.yb8{bottom:1090.382400px;}
.y5{bottom:1110.410400px;}
.y43{bottom:1111.237350px;}
.yb7{bottom:1111.377150px;}
.ydc{bottom:1123.197450px;}
.y42{bottom:1132.232100px;}
.yb6{bottom:1132.371900px;}
.y4{bottom:1139.914350px;}
.y41{bottom:1153.226850px;}
.yb5{bottom:1153.366650px;}
.y3{bottom:1154.914350px;}
.y2{bottom:1193.811000px;}
.y91{bottom:1200.561000px;}
.h5{height:38.640000px;}
.h4{height:38.934000px;}
.ha{height:39.360000px;}
.hc{height:41.820000px;}
.h8{height:43.470000px;}
.hb{height:44.280000px;}
.h7{height:45.423000px;}
.h2{height:48.300000px;}
.h9{height:49.200000px;}
.h6{height:50.715000px;}
.h3{height:78.720000px;}
.hd{height:103.200000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:54.000000px;}
.x2{left:59.527500px;}
.x13{left:68.164350px;}
.xc{left:74.574450px;}
.xd{left:88.425150px;}
.xf{left:127.227150px;}
.xe{left:128.644350px;}
.x10{left:174.543300px;}
.x11{left:254.836200px;}
.x12{left:381.069600px;}
.xa{left:404.141250px;}
.x8{left:452.694000px;}
.x6{left:458.220450px;}
.x3{left:611.680050px;}
.x4{left:626.122800px;}
.x5{left:633.588300px;}
.x9{left:749.195400px;}
.x1{left:824.273550px;}
.xb{left:851.102400px;}
@media print{
.v1{vertical-align:-8.429333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:48.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-12.264000pt;}
.ws2{word-spacing:-11.592000pt;}
.ws0{word-spacing:-9.344000pt;}
.ws5{word-spacing:-9.045333pt;}
.ws1{word-spacing:-8.176000pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:178.043733pt;}
.ws7{word-spacing:311.404800pt;}
._17{margin-left:-12.503467pt;}
._e{margin-left:-7.565600pt;}
._f{margin-left:-5.362933pt;}
._13{margin-left:-4.382933pt;}
._1{margin-left:-2.824533pt;}
._0{margin-left:-1.194667pt;}
._2{width:1.211733pt;}
._4{width:2.576000pt;}
._8{width:3.789067pt;}
._3{width:4.698400pt;}
._7{width:5.717600pt;}
._6{width:7.477867pt;}
._9{width:8.377600pt;}
._5{width:9.475200pt;}
._b{width:10.393600pt;}
._c{width:11.323200pt;}
._a{width:13.496000pt;}
._d{width:14.537600pt;}
._10{width:15.556800pt;}
._14{width:16.581600pt;}
._15{width:18.070933pt;}
._16{width:19.544000pt;}
._18{width:20.598667pt;}
._11{width:24.606400pt;}
._12{width:25.789867pt;}
._19{width:35.640267pt;}
._1a{width:199.979200pt;}
.fs5{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.464533pt;}
.y75{bottom:54.666533pt;}
.y90{bottom:59.370533pt;}
.yda{bottom:63.124400pt;}
.y40{bottom:64.395333pt;}
.y36{bottom:64.478133pt;}
.yb4{bottom:67.530800pt;}
.y74{bottom:73.328533pt;}
.ydb{bottom:76.849600pt;}
.y8f{bottom:78.032533pt;}
.y3f{bottom:83.057333pt;}
.y35{bottom:83.140133pt;}
.yb3{bottom:86.192800pt;}
.y73{bottom:91.990533pt;}
.y8e{bottom:96.694533pt;}
.y3e{bottom:101.719333pt;}
.y34{bottom:101.802133pt;}
.yb2{bottom:104.854800pt;}
.y72{bottom:110.652533pt;}
.y8d{bottom:115.356533pt;}
.y3d{bottom:120.381333pt;}
.y33{bottom:120.464133pt;}
.yb1{bottom:123.516800pt;}
.y71{bottom:129.314533pt;}
.y8c{bottom:134.018533pt;}
.y3c{bottom:139.043333pt;}
.y32{bottom:139.126133pt;}
.yb0{bottom:142.178800pt;}
.y70{bottom:147.976533pt;}
.y8b{bottom:152.680533pt;}
.y31{bottom:157.788133pt;}
.yaf{bottom:160.840800pt;}
.y6f{bottom:166.638533pt;}
.y3b{bottom:166.899200pt;}
.y8a{bottom:171.342533pt;}
.y30{bottom:176.450133pt;}
.yae{bottom:179.502800pt;}
.y3a{bottom:180.231200pt;}
.y6e{bottom:185.300533pt;}
.y89{bottom:190.004533pt;}
.y39{bottom:197.506133pt;}
.yad{bottom:198.164800pt;}
.y2f{bottom:203.120133pt;}
.y6d{bottom:203.962533pt;}
.y88{bottom:208.666533pt;}
.yac{bottom:216.826800pt;}
.y2e{bottom:221.782133pt;}
.y6c{bottom:222.624533pt;}
.y87{bottom:227.328533pt;}
.yab{bottom:235.488800pt;}
.y2d{bottom:240.444133pt;}
.y6b{bottom:241.286533pt;}
.y86{bottom:245.990533pt;}
.yaa{bottom:254.150800pt;}
.y2c{bottom:259.106133pt;}
.y6a{bottom:259.948533pt;}
.y85{bottom:264.652533pt;}
.ya9{bottom:272.812800pt;}
.y2b{bottom:277.768133pt;}
.y69{bottom:278.610533pt;}
.y84{bottom:283.314533pt;}
.ya8{bottom:291.474800pt;}
.y2a{bottom:296.430133pt;}
.y68{bottom:297.272533pt;}
.y83{bottom:301.976533pt;}
.ya7{bottom:310.136800pt;}
.y29{bottom:315.092133pt;}
.y67{bottom:315.934533pt;}
.y82{bottom:320.638533pt;}
.ya6{bottom:328.798800pt;}
.y28{bottom:333.754133pt;}
.y66{bottom:334.596533pt;}
.y81{bottom:339.300533pt;}
.ya5{bottom:347.460800pt;}
.y27{bottom:352.416133pt;}
.y65{bottom:353.258533pt;}
.y80{bottom:357.962533pt;}
.ya4{bottom:366.122800pt;}
.y26{bottom:371.078133pt;}
.y64{bottom:371.920533pt;}
.y7f{bottom:376.624533pt;}
.ya3{bottom:384.784800pt;}
.y25{bottom:389.740133pt;}
.y63{bottom:390.582533pt;}
.yd7{bottom:390.706800pt;}
.y7e{bottom:395.286533pt;}
.ya2{bottom:403.446800pt;}
.y24{bottom:408.402133pt;}
.y62{bottom:409.244533pt;}
.yd6{bottom:409.368800pt;}
.y7d{bottom:413.948533pt;}
.ya1{bottom:422.108800pt;}
.y23{bottom:427.064133pt;}
.y61{bottom:427.906533pt;}
.yd5{bottom:428.030800pt;}
.y7c{bottom:432.610533pt;}
.ya0{bottom:440.770800pt;}
.y22{bottom:445.726133pt;}
.y60{bottom:446.568533pt;}
.yd4{bottom:446.692800pt;}
.y7b{bottom:451.272533pt;}
.y9f{bottom:459.432800pt;}
.y21{bottom:464.388133pt;}
.y5f{bottom:465.230533pt;}
.yd3{bottom:465.354800pt;}
.y7a{bottom:469.934533pt;}
.y9e{bottom:478.094800pt;}
.y20{bottom:483.050133pt;}
.y5e{bottom:483.892533pt;}
.yd2{bottom:484.016800pt;}
.y38{bottom:488.356133pt;}
.y79{bottom:488.596533pt;}
.y9d{bottom:496.756800pt;}
.y1f{bottom:501.712133pt;}
.y5d{bottom:502.554533pt;}
.yd1{bottom:502.678800pt;}
.y78{bottom:507.258533pt;}
.y9c{bottom:515.418800pt;}
.y1e{bottom:520.374133pt;}
.y5c{bottom:521.216533pt;}
.yd0{bottom:521.340800pt;}
.y77{bottom:525.920533pt;}
.y9b{bottom:534.080800pt;}
.y1d{bottom:539.036133pt;}
.y5b{bottom:539.878533pt;}
.ycf{bottom:540.002800pt;}
.y76{bottom:544.582533pt;}
.y9a{bottom:552.742800pt;}
.y1c{bottom:557.805467pt;}
.y5a{bottom:558.540533pt;}
.yce{bottom:558.664800pt;}
.y99{bottom:571.404800pt;}
.y92{bottom:573.860400pt;}
.y1b{bottom:576.467467pt;}
.y59{bottom:577.202533pt;}
.ycd{bottom:577.326800pt;}
.y98{bottom:590.066800pt;}
.y1a{bottom:595.129467pt;}
.y58{bottom:595.864533pt;}
.ycc{bottom:595.988800pt;}
.y97{bottom:601.297467pt;}
.y19{bottom:613.791467pt;}
.y57{bottom:614.526533pt;}
.ycb{bottom:614.650800pt;}
.y96{bottom:615.366800pt;}
.yd9{bottom:623.452400pt;}
.y95{bottom:629.436133pt;}
.y18{bottom:632.453467pt;}
.y56{bottom:633.188533pt;}
.yca{bottom:633.312800pt;}
.yd8{bottom:636.784400pt;}
.y94{bottom:643.505467pt;}
.y17{bottom:651.115467pt;}
.y55{bottom:651.850533pt;}
.yc9{bottom:651.974800pt;}
.y93{bottom:657.574800pt;}
.ye2{bottom:661.794267pt;}
.y16{bottom:669.777467pt;}
.y54{bottom:670.512533pt;}
.yc8{bottom:670.636800pt;}
.y15{bottom:688.439467pt;}
.y53{bottom:689.174533pt;}
.yc7{bottom:689.298800pt;}
.ye1{bottom:690.440933pt;}
.ye0{bottom:702.440933pt;}
.y14{bottom:707.101467pt;}
.y52{bottom:707.836533pt;}
.yc6{bottom:707.960800pt;}
.y13{bottom:725.763467pt;}
.y51{bottom:726.498533pt;}
.yc5{bottom:726.622800pt;}
.ydf{bottom:726.952000pt;}
.y12{bottom:744.425467pt;}
.y50{bottom:745.160533pt;}
.yc4{bottom:745.284800pt;}
.y11{bottom:763.087467pt;}
.y4f{bottom:763.822533pt;}
.yc3{bottom:763.946800pt;}
.y37{bottom:779.528133pt;}
.y10{bottom:781.749467pt;}
.y4e{bottom:782.484533pt;}
.yc2{bottom:782.608800pt;}
.yf{bottom:800.411467pt;}
.y4d{bottom:801.146533pt;}
.yc1{bottom:801.270800pt;}
.yde{bottom:817.547333pt;}
.ye{bottom:819.073467pt;}
.y4c{bottom:819.808533pt;}
.yc0{bottom:819.932800pt;}
.ye3{bottom:820.493733pt;}
.yd{bottom:837.735467pt;}
.y4b{bottom:838.470533pt;}
.ybf{bottom:838.594800pt;}
.yc{bottom:856.397467pt;}
.y4a{bottom:857.132533pt;}
.ybe{bottom:857.256800pt;}
.yb{bottom:875.059467pt;}
.y49{bottom:875.794533pt;}
.ybd{bottom:875.918800pt;}
.ya{bottom:893.721467pt;}
.y48{bottom:894.456533pt;}
.ybc{bottom:894.580800pt;}
.ydd{bottom:908.256000pt;}
.y9{bottom:912.383467pt;}
.y47{bottom:913.118533pt;}
.ybb{bottom:913.242800pt;}
.y8{bottom:931.045467pt;}
.y46{bottom:931.780533pt;}
.yba{bottom:931.904800pt;}
.y7{bottom:949.707467pt;}
.y45{bottom:950.442533pt;}
.yb9{bottom:950.566800pt;}
.y6{bottom:968.369467pt;}
.y44{bottom:969.104533pt;}
.yb8{bottom:969.228800pt;}
.y5{bottom:987.031467pt;}
.y43{bottom:987.766533pt;}
.yb7{bottom:987.890800pt;}
.ydc{bottom:998.397733pt;}
.y42{bottom:1006.428533pt;}
.yb6{bottom:1006.552800pt;}
.y4{bottom:1013.257200pt;}
.y41{bottom:1025.090533pt;}
.yb5{bottom:1025.214800pt;}
.y3{bottom:1026.590533pt;}
.y2{bottom:1061.165333pt;}
.y91{bottom:1067.165333pt;}
.h5{height:34.346667pt;}
.h4{height:34.608000pt;}
.ha{height:34.986667pt;}
.hc{height:37.173333pt;}
.h8{height:38.640000pt;}
.hb{height:39.360000pt;}
.h7{height:40.376000pt;}
.h2{height:42.933333pt;}
.h9{height:43.733333pt;}
.h6{height:45.080000pt;}
.h3{height:69.973333pt;}
.hd{height:91.733333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:48.000000pt;}
.x2{left:52.913333pt;}
.x13{left:60.590533pt;}
.xc{left:66.288400pt;}
.xd{left:78.600133pt;}
.xf{left:113.090800pt;}
.xe{left:114.350533pt;}
.x10{left:155.149600pt;}
.x11{left:226.521067pt;}
.x12{left:338.728533pt;}
.xa{left:359.236667pt;}
.x8{left:402.394667pt;}
.x6{left:407.307067pt;}
.x3{left:543.715600pt;}
.x4{left:556.553600pt;}
.x5{left:563.189600pt;}
.x9{left:665.951467pt;}
.x1{left:732.687600pt;}
.xb{left:756.535467pt;}
}




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