
    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_21d2554adfd655d0dd0d7042.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_e9bc4adff665175ea0ac58b0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.335449;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_d8f19bfdc5fbf29f14eb0db4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.099609;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_f0f9556caf429533dc385cc8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.944336;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_a99c72b963065ab943cd51e8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.024414;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_6761148688a1cf409937ee85.woff')format("woff");}.ff6{font-family:ff6;line-height:1.060547;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_9f9009520fa6f858efb485be.woff')format("woff");}.ff7{font-family:ff7;line-height:0.897949;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_c1049aaa8435d6092239d356.woff')format("woff");}.ff8{font-family:ff8;line-height:1.105957;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_ff31dbba37c57b0baed94705.woff')format("woff");}.ff9{font-family:ff9;line-height:1.335449;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;}
.ls2{letter-spacing:-6.480000px;}
.ls7{letter-spacing:-4.698000px;}
.ls6{letter-spacing:-1.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.400000px;}
.ls4{letter-spacing:5.550000px;}
.ls1{letter-spacing:6.000000px;}
.ls5{letter-spacing:6.300000px;}
.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;}
}
.ws7{word-spacing:-69.000000px;}
.ws9{word-spacing:-58.800000px;}
.ws5{word-spacing:-26.625000px;}
.ws0{word-spacing:-20.196000px;}
.ws1{word-spacing:-18.630000px;}
.ws6{word-spacing:-18.102000px;}
.ws2{word-spacing:-17.043000px;}
.wsa{word-spacing:-15.309000px;}
.ws4{word-spacing:-6.000000px;}
.ws8{word-spacing:-2.400000px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-7.325700px;}
._7{margin-left:-4.884000px;}
._1{margin-left:-3.534300px;}
._2{margin-left:-2.450700px;}
._4{margin-left:-1.151700px;}
._0{width:1.883700px;}
._8{width:3.159900px;}
._f{width:4.534200px;}
._3{width:5.550300px;}
._5{width:6.599700px;}
._9{width:7.832400px;}
._10{width:9.970500px;}
._c{width:455.516400px;}
._e{width:456.784800px;}
._a{width:578.400000px;}
._b{width:1015.945500px;}
._d{width:1025.095500px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:63.000000px;}
.fs4{font-size:69.000000px;}
.fs5{font-size:75.000000px;}
.fs3{font-size:81.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:51.310050px;}
.y62{bottom:106.182600px;}
.y40{bottom:106.268850px;}
.y84{bottom:106.320600px;}
.y1b{bottom:106.419900px;}
.y61{bottom:126.606600px;}
.y83{bottom:126.623850px;}
.y3f{bottom:126.882600px;}
.y1a{bottom:127.240650px;}
.y93{bottom:133.201350px;}
.y82{bottom:146.927100px;}
.y60{bottom:147.030600px;}
.y3e{bottom:147.496350px;}
.y19{bottom:148.061400px;}
.y81{bottom:167.230350px;}
.y5f{bottom:167.454600px;}
.y3d{bottom:168.110100px;}
.y80{bottom:187.533600px;}
.y5e{bottom:187.878600px;}
.y18{bottom:189.720150px;}
.y7f{bottom:207.836850px;}
.y3c{bottom:209.337600px;}
.y7e{bottom:228.140100px;}
.y5d{bottom:228.726600px;}
.y3b{bottom:229.951350px;}
.y17{bottom:238.710150px;}
.y7d{bottom:248.443350px;}
.y5c{bottom:249.150600px;}
.y3a{bottom:250.565100px;}
.y16{bottom:259.530900px;}
.y5b{bottom:269.574600px;}
.y39{bottom:271.178850px;}
.y15{bottom:280.351650px;}
.y7c{bottom:289.049850px;}
.y38{bottom:291.792600px;}
.y14{bottom:301.172400px;}
.y7b{bottom:309.353100px;}
.y5a{bottom:310.422600px;}
.y37{bottom:312.406350px;}
.y13{bottom:321.993150px;}
.y7a{bottom:329.656350px;}
.y36{bottom:333.020100px;}
.y12{bottom:342.813900px;}
.y79{bottom:349.959600px;}
.y35{bottom:353.633850px;}
.y11{bottom:363.634650px;}
.y78{bottom:370.262850px;}
.y59{bottom:371.677350px;}
.y34{bottom:374.247600px;}
.y10{bottom:384.455400px;}
.y77{bottom:390.566100px;}
.y58{bottom:392.101350px;}
.y33{bottom:394.861350px;}
.yf{bottom:405.276150px;}
.y57{bottom:412.525350px;}
.y32{bottom:415.475100px;}
.y76{bottom:431.172600px;}
.y56{bottom:432.949350px;}
.y31{bottom:436.088850px;}
.y75{bottom:451.475850px;}
.y55{bottom:453.373350px;}
.y30{bottom:456.702600px;}
.ye{bottom:467.755650px;}
.y74{bottom:471.779100px;}
.y54{bottom:473.797350px;}
.y2f{bottom:477.316350px;}
.yd{bottom:488.576400px;}
.y73{bottom:492.082350px;}
.y53{bottom:494.221350px;}
.y2e{bottom:497.930100px;}
.yc{bottom:509.397150px;}
.ya6{bottom:511.172400px;}
.y72{bottom:512.385600px;}
.y52{bottom:514.645350px;}
.y2d{bottom:518.543850px;}
.yb{bottom:530.217900px;}
.ya5{bottom:531.423900px;}
.y71{bottom:532.688850px;}
.y51{bottom:535.069350px;}
.ya{bottom:551.038650px;}
.ya4{bottom:551.675400px;}
.y70{bottom:552.992100px;}
.y50{bottom:555.493350px;}
.y2c{bottom:559.771350px;}
.ya3{bottom:571.926900px;}
.y6f{bottom:573.295350px;}
.y92{bottom:578.677350px;}
.y2b{bottom:580.385100px;}
.ya2{bottom:592.178400px;}
.y9{bottom:592.697400px;}
.y6e{bottom:593.598600px;}
.y4f{bottom:596.341350px;}
.y91{bottom:598.928850px;}
.ya1{bottom:612.429900px;}
.y8{bottom:613.518150px;}
.y6d{bottom:613.901850px;}
.y4e{bottom:616.765350px;}
.y90{bottom:619.180350px;}
.y2a{bottom:621.612600px;}
.ya0{bottom:632.681400px;}
.y4d{bottom:637.189350px;}
.y8f{bottom:639.431850px;}
.y9f{bottom:652.932900px;}
.y6c{bottom:654.508350px;}
.y7{bottom:655.176900px;}
.y4c{bottom:657.613350px;}
.y8e{bottom:659.683350px;}
.y9e{bottom:673.184400px;}
.y6b{bottom:674.811600px;}
.y29{bottom:675.950100px;}
.y4b{bottom:678.037350px;}
.y9d{bottom:693.435900px;}
.y6a{bottom:695.114850px;}
.y28{bottom:696.563850px;}
.y6{bottom:697.265550px;}
.y4a{bottom:698.461350px;}
.y8d{bottom:700.186350px;}
.y9c{bottom:713.687400px;}
.y69{bottom:715.418100px;}
.y27{bottom:717.177600px;}
.y49{bottom:718.885350px;}
.y8c{bottom:720.437850px;}
.y9b{bottom:733.938900px;}
.y26{bottom:737.791350px;}
.y48{bottom:739.309350px;}
.y8b{bottom:740.689350px;}
.y68{bottom:750.780600px;}
.y9a{bottom:754.190400px;}
.y25{bottom:758.405100px;}
.y47{bottom:759.733350px;}
.y5{bottom:760.112100px;}
.y8a{bottom:760.940850px;}
.y99{bottom:774.441900px;}
.y24{bottom:779.018850px;}
.y46{bottom:780.157350px;}
.y89{bottom:781.192350px;}
.y98{bottom:794.693400px;}
.y23{bottom:799.632600px;}
.y45{bottom:800.581350px;}
.y67{bottom:801.185100px;}
.y88{bottom:801.443850px;}
.y97{bottom:814.944900px;}
.y22{bottom:820.246350px;}
.y44{bottom:821.005350px;}
.y66{bottom:821.488350px;}
.y4{bottom:821.940150px;}
.y96{bottom:835.196400px;}
.y21{bottom:840.860100px;}
.y43{bottom:841.429350px;}
.y65{bottom:841.791600px;}
.y87{bottom:841.946850px;}
.y3{bottom:852.030150px;}
.y20{bottom:861.473850px;}
.y42{bottom:861.853350px;}
.y64{bottom:862.094850px;}
.y86{bottom:862.198350px;}
.y95{bottom:876.709950px;}
.y1f{bottom:882.087600px;}
.y2{bottom:882.120150px;}
.y41{bottom:882.277350px;}
.y63{bottom:882.398100px;}
.y85{bottom:882.449850px;}
.y94{bottom:900.706200px;}
.y1e{bottom:902.701350px;}
.y1{bottom:903.698850px;}
.y1d{bottom:948.189000px;}
.hb{height:40.757812px;}
.h9{height:49.088379px;}
.h3{height:50.947266px;}
.h2{height:53.494629px;}
.h8{height:58.589355px;}
.h6{height:59.600098px;}
.ha{height:63.684082px;}
.hc{height:64.687500px;}
.h5{height:68.778809px;}
.h7{height:74.390625px;}
.hd{height:87.328125px;}
.h4{height:116.437500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:80.914500px;}
.x4{left:82.214250px;}
.x7{left:83.622750px;}
.x3{left:85.039350px;}
.x6{left:104.236500px;}
.x5{left:106.029150px;}
.x2{left:232.451700px;}
.x1{left:233.719200px;}
.x9{left:507.196500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-5.760000pt;}
.ls7{letter-spacing:-4.176000pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:2.133333pt;}
.ls4{letter-spacing:4.933333pt;}
.ls1{letter-spacing:5.333333pt;}
.ls5{letter-spacing:5.600000pt;}
.ws7{word-spacing:-61.333333pt;}
.ws9{word-spacing:-52.266667pt;}
.ws5{word-spacing:-23.666667pt;}
.ws0{word-spacing:-17.952000pt;}
.ws1{word-spacing:-16.560000pt;}
.ws6{word-spacing:-16.090667pt;}
.ws2{word-spacing:-15.149333pt;}
.wsa{word-spacing:-13.608000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws8{word-spacing:-2.133333pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-6.511733pt;}
._7{margin-left:-4.341333pt;}
._1{margin-left:-3.141600pt;}
._2{margin-left:-2.178400pt;}
._4{margin-left:-1.023733pt;}
._0{width:1.674400pt;}
._8{width:2.808800pt;}
._f{width:4.030400pt;}
._3{width:4.933600pt;}
._5{width:5.866400pt;}
._9{width:6.962133pt;}
._10{width:8.862667pt;}
._c{width:404.903467pt;}
._e{width:406.030933pt;}
._a{width:514.133333pt;}
._b{width:903.062667pt;}
._d{width:911.196000pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:56.000000pt;}
.fs4{font-size:61.333333pt;}
.fs5{font-size:66.666667pt;}
.fs3{font-size:72.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:45.608933pt;}
.y62{bottom:94.384533pt;}
.y40{bottom:94.461200pt;}
.y84{bottom:94.507200pt;}
.y1b{bottom:94.595467pt;}
.y61{bottom:112.539200pt;}
.y83{bottom:112.554533pt;}
.y3f{bottom:112.784533pt;}
.y1a{bottom:113.102800pt;}
.y93{bottom:118.401200pt;}
.y82{bottom:130.601867pt;}
.y60{bottom:130.693867pt;}
.y3e{bottom:131.107867pt;}
.y19{bottom:131.610133pt;}
.y81{bottom:148.649200pt;}
.y5f{bottom:148.848533pt;}
.y3d{bottom:149.431200pt;}
.y80{bottom:166.696533pt;}
.y5e{bottom:167.003200pt;}
.y18{bottom:168.640133pt;}
.y7f{bottom:184.743867pt;}
.y3c{bottom:186.077867pt;}
.y7e{bottom:202.791200pt;}
.y5d{bottom:203.312533pt;}
.y3b{bottom:204.401200pt;}
.y17{bottom:212.186800pt;}
.y7d{bottom:220.838533pt;}
.y5c{bottom:221.467200pt;}
.y3a{bottom:222.724533pt;}
.y16{bottom:230.694133pt;}
.y5b{bottom:239.621867pt;}
.y39{bottom:241.047867pt;}
.y15{bottom:249.201467pt;}
.y7c{bottom:256.933200pt;}
.y38{bottom:259.371200pt;}
.y14{bottom:267.708800pt;}
.y7b{bottom:274.980533pt;}
.y5a{bottom:275.931200pt;}
.y37{bottom:277.694533pt;}
.y13{bottom:286.216133pt;}
.y7a{bottom:293.027867pt;}
.y36{bottom:296.017867pt;}
.y12{bottom:304.723467pt;}
.y79{bottom:311.075200pt;}
.y35{bottom:314.341200pt;}
.y11{bottom:323.230800pt;}
.y78{bottom:329.122533pt;}
.y59{bottom:330.379867pt;}
.y34{bottom:332.664533pt;}
.y10{bottom:341.738133pt;}
.y77{bottom:347.169867pt;}
.y58{bottom:348.534533pt;}
.y33{bottom:350.987867pt;}
.yf{bottom:360.245467pt;}
.y57{bottom:366.689200pt;}
.y32{bottom:369.311200pt;}
.y76{bottom:383.264533pt;}
.y56{bottom:384.843867pt;}
.y31{bottom:387.634533pt;}
.y75{bottom:401.311867pt;}
.y55{bottom:402.998533pt;}
.y30{bottom:405.957867pt;}
.ye{bottom:415.782800pt;}
.y74{bottom:419.359200pt;}
.y54{bottom:421.153200pt;}
.y2f{bottom:424.281200pt;}
.yd{bottom:434.290133pt;}
.y73{bottom:437.406533pt;}
.y53{bottom:439.307867pt;}
.y2e{bottom:442.604533pt;}
.yc{bottom:452.797467pt;}
.ya6{bottom:454.375467pt;}
.y72{bottom:455.453867pt;}
.y52{bottom:457.462533pt;}
.y2d{bottom:460.927867pt;}
.yb{bottom:471.304800pt;}
.ya5{bottom:472.376800pt;}
.y71{bottom:473.501200pt;}
.y51{bottom:475.617200pt;}
.ya{bottom:489.812133pt;}
.ya4{bottom:490.378133pt;}
.y70{bottom:491.548533pt;}
.y50{bottom:493.771867pt;}
.y2c{bottom:497.574533pt;}
.ya3{bottom:508.379467pt;}
.y6f{bottom:509.595867pt;}
.y92{bottom:514.379867pt;}
.y2b{bottom:515.897867pt;}
.ya2{bottom:526.380800pt;}
.y9{bottom:526.842133pt;}
.y6e{bottom:527.643200pt;}
.y4f{bottom:530.081200pt;}
.y91{bottom:532.381200pt;}
.ya1{bottom:544.382133pt;}
.y8{bottom:545.349467pt;}
.y6d{bottom:545.690533pt;}
.y4e{bottom:548.235867pt;}
.y90{bottom:550.382533pt;}
.y2a{bottom:552.544533pt;}
.ya0{bottom:562.383467pt;}
.y4d{bottom:566.390533pt;}
.y8f{bottom:568.383867pt;}
.y9f{bottom:580.384800pt;}
.y6c{bottom:581.785200pt;}
.y7{bottom:582.379467pt;}
.y4c{bottom:584.545200pt;}
.y8e{bottom:586.385200pt;}
.y9e{bottom:598.386133pt;}
.y6b{bottom:599.832533pt;}
.y29{bottom:600.844533pt;}
.y4b{bottom:602.699867pt;}
.y9d{bottom:616.387467pt;}
.y6a{bottom:617.879867pt;}
.y28{bottom:619.167867pt;}
.y6{bottom:619.791600pt;}
.y4a{bottom:620.854533pt;}
.y8d{bottom:622.387867pt;}
.y9c{bottom:634.388800pt;}
.y69{bottom:635.927200pt;}
.y27{bottom:637.491200pt;}
.y49{bottom:639.009200pt;}
.y8c{bottom:640.389200pt;}
.y9b{bottom:652.390133pt;}
.y26{bottom:655.814533pt;}
.y48{bottom:657.163867pt;}
.y8b{bottom:658.390533pt;}
.y68{bottom:667.360533pt;}
.y9a{bottom:670.391467pt;}
.y25{bottom:674.137867pt;}
.y47{bottom:675.318533pt;}
.y5{bottom:675.655200pt;}
.y8a{bottom:676.391867pt;}
.y99{bottom:688.392800pt;}
.y24{bottom:692.461200pt;}
.y46{bottom:693.473200pt;}
.y89{bottom:694.393200pt;}
.y98{bottom:706.394133pt;}
.y23{bottom:710.784533pt;}
.y45{bottom:711.627867pt;}
.y67{bottom:712.164533pt;}
.y88{bottom:712.394533pt;}
.y97{bottom:724.395467pt;}
.y22{bottom:729.107867pt;}
.y44{bottom:729.782533pt;}
.y66{bottom:730.211867pt;}
.y4{bottom:730.613467pt;}
.y96{bottom:742.396800pt;}
.y21{bottom:747.431200pt;}
.y43{bottom:747.937200pt;}
.y65{bottom:748.259200pt;}
.y87{bottom:748.397200pt;}
.y3{bottom:757.360133pt;}
.y20{bottom:765.754533pt;}
.y42{bottom:766.091867pt;}
.y64{bottom:766.306533pt;}
.y86{bottom:766.398533pt;}
.y95{bottom:779.297733pt;}
.y1f{bottom:784.077867pt;}
.y2{bottom:784.106800pt;}
.y41{bottom:784.246533pt;}
.y63{bottom:784.353867pt;}
.y85{bottom:784.399867pt;}
.y94{bottom:800.627733pt;}
.y1e{bottom:802.401200pt;}
.y1{bottom:803.287867pt;}
.y1d{bottom:842.834667pt;}
.hb{height:36.229167pt;}
.h9{height:43.634115pt;}
.h3{height:45.286458pt;}
.h2{height:47.550781pt;}
.h8{height:52.079427pt;}
.h6{height:52.977865pt;}
.ha{height:56.608073pt;}
.hc{height:57.500000pt;}
.h5{height:61.136719pt;}
.h7{height:66.125000pt;}
.hd{height:77.625000pt;}
.h4{height:103.500000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:71.924000pt;}
.x4{left:73.079333pt;}
.x7{left:74.331333pt;}
.x3{left:75.590533pt;}
.x6{left:92.654667pt;}
.x5{left:94.248133pt;}
.x2{left:206.623733pt;}
.x1{left:207.750400pt;}
.x9{left:450.841333pt;}
}




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