
    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_0501aabb8ec0267503543dfc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_e6e23f085ac257a721e217e5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.682617;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_3f60480ca0e37db82a83118c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.968000;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_2810031e3d1598ca50abe27c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_162f2e4f190b1564c11dfe34.woff')format("woff");}.ff5{font-family:ff5;line-height:0.816000;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_8a5ff9650d22465f6fbef334.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_81b0e7ac5db1c26052fd02e3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.678711;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;}
.v1{vertical-align:180.000000px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.648000px;}
.lse{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.936000px;}
.lsf{letter-spacing:1.008000px;}
.ls9{letter-spacing:1.152000px;}
.lsd{letter-spacing:1.512000px;}
.ls14{letter-spacing:4.392000px;}
.ls5{letter-spacing:5.778000px;}
.ls0{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.ls2{letter-spacing:14.828628px;}
.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;}
}
.ws9{word-spacing:-49.320000px;}
.ws7{word-spacing:-49.248000px;}
.wsd{word-spacing:-49.176000px;}
.ws6{word-spacing:-49.104000px;}
.wsa{word-spacing:-48.960000px;}
.ws2{word-spacing:-48.888000px;}
.ws8{word-spacing:-48.744000px;}
.wsc{word-spacing:-48.672000px;}
.wsb{word-spacing:-48.600000px;}
.ws1{word-spacing:-48.528000px;}
.ws0{word-spacing:-25.320000px;}
.ws5{word-spacing:-20.232000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:129.300000px;}
._12{margin-left:-15.816000px;}
._11{margin-left:-14.016000px;}
._7{margin-left:-10.740000px;}
._5{margin-left:-8.460000px;}
._10{margin-left:-7.284000px;}
._0{margin-left:-5.940000px;}
._f{margin-left:-4.188000px;}
._8{margin-left:-2.652000px;}
._2{margin-left:-1.260000px;}
._1{width:1.860000px;}
._6{width:2.880000px;}
._3{width:4.200000px;}
._9{width:5.220000px;}
._a{width:6.228000px;}
._e{width:7.518000px;}
._c{width:8.532000px;}
._b{width:10.080000px;}
._d{width:11.292000px;}
._4{width:165.360000px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y1{bottom:93.257850px;}
.y43{bottom:138.257850px;}
.y68{bottom:140.277450px;}
.y14{bottom:140.348400px;}
.y9d{bottom:141.287850px;}
.y8d{bottom:143.591850px;}
.y42{bottom:160.757850px;}
.y67{bottom:162.777450px;}
.y13{bottom:162.848400px;}
.y9c{bottom:163.787850px;}
.y8c{bottom:165.947850px;}
.y41{bottom:183.257850px;}
.y66{bottom:185.277450px;}
.y12{bottom:185.348400px;}
.y9b{bottom:186.287850px;}
.y8b{bottom:188.303850px;}
.y40{bottom:205.757850px;}
.y65{bottom:207.777450px;}
.y11{bottom:207.848400px;}
.y9a{bottom:208.787850px;}
.y8a{bottom:210.659850px;}
.y3f{bottom:228.257850px;}
.y64{bottom:230.277450px;}
.y10{bottom:230.348400px;}
.y99{bottom:231.287850px;}
.y89{bottom:233.015850px;}
.y3e{bottom:250.757850px;}
.y63{bottom:252.777450px;}
.yf{bottom:252.848400px;}
.y98{bottom:253.787850px;}
.y88{bottom:255.371850px;}
.y3d{bottom:273.257850px;}
.y62{bottom:275.277450px;}
.ye{bottom:275.348400px;}
.y97{bottom:276.287850px;}
.y87{bottom:277.727850px;}
.y3c{bottom:295.757850px;}
.y61{bottom:297.777450px;}
.yd{bottom:297.848400px;}
.y96{bottom:298.787850px;}
.y86{bottom:300.083850px;}
.y3b{bottom:318.257850px;}
.y60{bottom:320.277450px;}
.yc{bottom:320.348400px;}
.y95{bottom:321.287850px;}
.y85{bottom:322.439850px;}
.y3a{bottom:340.757850px;}
.y5f{bottom:342.777450px;}
.yb{bottom:342.848400px;}
.y94{bottom:343.787850px;}
.y84{bottom:344.795850px;}
.y39{bottom:363.257850px;}
.y5e{bottom:365.277450px;}
.ya{bottom:365.348400px;}
.y93{bottom:366.287850px;}
.y83{bottom:367.151850px;}
.y38{bottom:385.757850px;}
.y5d{bottom:387.777450px;}
.y9{bottom:387.848400px;}
.y92{bottom:388.787850px;}
.y82{bottom:389.507850px;}
.y37{bottom:408.257850px;}
.y5c{bottom:410.277450px;}
.y8{bottom:410.348400px;}
.y91{bottom:411.287850px;}
.y81{bottom:411.863850px;}
.ya1{bottom:427.007850px;}
.y36{bottom:430.757850px;}
.y5b{bottom:432.777450px;}
.y7{bottom:432.848400px;}
.y90{bottom:433.787850px;}
.y80{bottom:434.219850px;}
.ya0{bottom:445.757850px;}
.y35{bottom:453.257850px;}
.y5a{bottom:455.277450px;}
.y6{bottom:455.348400px;}
.y8f{bottom:456.287850px;}
.y7f{bottom:456.575850px;}
.y9f{bottom:464.507850px;}
.y34{bottom:475.757850px;}
.y59{bottom:477.777450px;}
.y4{bottom:477.848400px;}
.y8e{bottom:478.787850px;}
.y7e{bottom:478.931850px;}
.y33{bottom:498.257850px;}
.y58{bottom:500.277450px;}
.y5{bottom:500.348400px;}
.y7d{bottom:501.287850px;}
.y9e{bottom:502.007850px;}
.y32{bottom:520.757850px;}
.y57{bottom:522.777450px;}
.y7c{bottom:523.643850px;}
.y31{bottom:543.257850px;}
.y56{bottom:545.277450px;}
.y7b{bottom:545.999850px;}
.y30{bottom:565.757850px;}
.y55{bottom:567.777450px;}
.y7a{bottom:568.355850px;}
.y3{bottom:568.734150px;}
.y2f{bottom:588.257850px;}
.y54{bottom:590.277450px;}
.y79{bottom:590.711850px;}
.y2{bottom:591.234150px;}
.y2e{bottom:610.757850px;}
.y53{bottom:612.777450px;}
.y78{bottom:613.067850px;}
.y2d{bottom:633.257850px;}
.y52{bottom:635.277450px;}
.y77{bottom:635.423850px;}
.y1e{bottom:651.807900px;}
.y2c{bottom:655.757850px;}
.y51{bottom:657.777450px;}
.y76{bottom:657.779850px;}
.y1d{bottom:671.301900px;}
.y2b{bottom:678.257850px;}
.y75{bottom:680.135850px;}
.y50{bottom:680.277450px;}
.y1c{bottom:690.795900px;}
.y2a{bottom:700.757850px;}
.y74{bottom:702.491850px;}
.y4f{bottom:702.777450px;}
.y1b{bottom:710.289900px;}
.y29{bottom:723.257850px;}
.y73{bottom:724.847850px;}
.y4e{bottom:725.277450px;}
.y1a{bottom:729.783900px;}
.y28{bottom:745.757850px;}
.y72{bottom:747.203850px;}
.y4d{bottom:747.777450px;}
.y19{bottom:749.277900px;}
.y27{bottom:768.257850px;}
.y18{bottom:768.771900px;}
.y71{bottom:769.559850px;}
.y4c{bottom:770.277450px;}
.y17{bottom:788.265900px;}
.y26{bottom:790.757850px;}
.y70{bottom:791.915850px;}
.y4b{bottom:792.777450px;}
.y16{bottom:807.759900px;}
.y25{bottom:813.257850px;}
.y6f{bottom:814.271850px;}
.y4a{bottom:815.277450px;}
.y15{bottom:827.253900px;}
.y24{bottom:835.757850px;}
.y6e{bottom:836.627850px;}
.y49{bottom:837.777450px;}
.y23{bottom:858.257850px;}
.y6d{bottom:858.983850px;}
.y48{bottom:860.277450px;}
.y22{bottom:880.757850px;}
.y6c{bottom:881.339850px;}
.y47{bottom:882.777450px;}
.y21{bottom:903.257850px;}
.y6b{bottom:903.695850px;}
.y46{bottom:905.277450px;}
.y20{bottom:925.757850px;}
.y6a{bottom:926.051850px;}
.y45{bottom:927.777450px;}
.y1f{bottom:948.257850px;}
.y69{bottom:948.407850px;}
.y44{bottom:950.277450px;}
.h6{height:45.852539px;}
.h3{height:50.580000px;}
.h2{height:50.947266px;}
.h4{height:61.136719px;}
.h5{height:342.453024px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x6{left:88.759800px;}
.x7{left:103.663800px;}
.x2{left:112.649850px;}
.x4{left:127.434000px;}
.x3{left:158.484000px;}
.x8{left:180.531450px;}
.x5{left:342.106350px;}
.x1{left:417.403050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:160.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.832000pt;}
.lsf{letter-spacing:0.896000pt;}
.ls9{letter-spacing:1.024000pt;}
.lsd{letter-spacing:1.344000pt;}
.ls14{letter-spacing:3.904000pt;}
.ls5{letter-spacing:5.136000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls2{letter-spacing:13.181003pt;}
.ws9{word-spacing:-43.840000pt;}
.ws7{word-spacing:-43.776000pt;}
.wsd{word-spacing:-43.712000pt;}
.ws6{word-spacing:-43.648000pt;}
.wsa{word-spacing:-43.520000pt;}
.ws2{word-spacing:-43.456000pt;}
.ws8{word-spacing:-43.328000pt;}
.wsc{word-spacing:-43.264000pt;}
.wsb{word-spacing:-43.200000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws0{word-spacing:-22.506667pt;}
.ws5{word-spacing:-17.984000pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:114.933333pt;}
._12{margin-left:-14.058667pt;}
._11{margin-left:-12.458667pt;}
._7{margin-left:-9.546667pt;}
._5{margin-left:-7.520000pt;}
._10{margin-left:-6.474667pt;}
._0{margin-left:-5.280000pt;}
._f{margin-left:-3.722667pt;}
._8{margin-left:-2.357333pt;}
._2{margin-left:-1.120000pt;}
._1{width:1.653333pt;}
._6{width:2.560000pt;}
._3{width:3.733333pt;}
._9{width:4.640000pt;}
._a{width:5.536000pt;}
._e{width:6.682667pt;}
._c{width:7.584000pt;}
._b{width:8.960000pt;}
._d{width:10.037333pt;}
._4{width:146.986667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:82.895867pt;}
.y43{bottom:122.895867pt;}
.y68{bottom:124.691067pt;}
.y14{bottom:124.754133pt;}
.y9d{bottom:125.589200pt;}
.y8d{bottom:127.637200pt;}
.y42{bottom:142.895867pt;}
.y67{bottom:144.691067pt;}
.y13{bottom:144.754133pt;}
.y9c{bottom:145.589200pt;}
.y8c{bottom:147.509200pt;}
.y41{bottom:162.895867pt;}
.y66{bottom:164.691067pt;}
.y12{bottom:164.754133pt;}
.y9b{bottom:165.589200pt;}
.y8b{bottom:167.381200pt;}
.y40{bottom:182.895867pt;}
.y65{bottom:184.691067pt;}
.y11{bottom:184.754133pt;}
.y9a{bottom:185.589200pt;}
.y8a{bottom:187.253200pt;}
.y3f{bottom:202.895867pt;}
.y64{bottom:204.691067pt;}
.y10{bottom:204.754133pt;}
.y99{bottom:205.589200pt;}
.y89{bottom:207.125200pt;}
.y3e{bottom:222.895867pt;}
.y63{bottom:224.691067pt;}
.yf{bottom:224.754133pt;}
.y98{bottom:225.589200pt;}
.y88{bottom:226.997200pt;}
.y3d{bottom:242.895867pt;}
.y62{bottom:244.691067pt;}
.ye{bottom:244.754133pt;}
.y97{bottom:245.589200pt;}
.y87{bottom:246.869200pt;}
.y3c{bottom:262.895867pt;}
.y61{bottom:264.691067pt;}
.yd{bottom:264.754133pt;}
.y96{bottom:265.589200pt;}
.y86{bottom:266.741200pt;}
.y3b{bottom:282.895867pt;}
.y60{bottom:284.691067pt;}
.yc{bottom:284.754133pt;}
.y95{bottom:285.589200pt;}
.y85{bottom:286.613200pt;}
.y3a{bottom:302.895867pt;}
.y5f{bottom:304.691067pt;}
.yb{bottom:304.754133pt;}
.y94{bottom:305.589200pt;}
.y84{bottom:306.485200pt;}
.y39{bottom:322.895867pt;}
.y5e{bottom:324.691067pt;}
.ya{bottom:324.754133pt;}
.y93{bottom:325.589200pt;}
.y83{bottom:326.357200pt;}
.y38{bottom:342.895867pt;}
.y5d{bottom:344.691067pt;}
.y9{bottom:344.754133pt;}
.y92{bottom:345.589200pt;}
.y82{bottom:346.229200pt;}
.y37{bottom:362.895867pt;}
.y5c{bottom:364.691067pt;}
.y8{bottom:364.754133pt;}
.y91{bottom:365.589200pt;}
.y81{bottom:366.101200pt;}
.ya1{bottom:379.562533pt;}
.y36{bottom:382.895867pt;}
.y5b{bottom:384.691067pt;}
.y7{bottom:384.754133pt;}
.y90{bottom:385.589200pt;}
.y80{bottom:385.973200pt;}
.ya0{bottom:396.229200pt;}
.y35{bottom:402.895867pt;}
.y5a{bottom:404.691067pt;}
.y6{bottom:404.754133pt;}
.y8f{bottom:405.589200pt;}
.y7f{bottom:405.845200pt;}
.y9f{bottom:412.895867pt;}
.y34{bottom:422.895867pt;}
.y59{bottom:424.691067pt;}
.y4{bottom:424.754133pt;}
.y8e{bottom:425.589200pt;}
.y7e{bottom:425.717200pt;}
.y33{bottom:442.895867pt;}
.y58{bottom:444.691067pt;}
.y5{bottom:444.754133pt;}
.y7d{bottom:445.589200pt;}
.y9e{bottom:446.229200pt;}
.y32{bottom:462.895867pt;}
.y57{bottom:464.691067pt;}
.y7c{bottom:465.461200pt;}
.y31{bottom:482.895867pt;}
.y56{bottom:484.691067pt;}
.y7b{bottom:485.333200pt;}
.y30{bottom:502.895867pt;}
.y55{bottom:504.691067pt;}
.y7a{bottom:505.205200pt;}
.y3{bottom:505.541467pt;}
.y2f{bottom:522.895867pt;}
.y54{bottom:524.691067pt;}
.y79{bottom:525.077200pt;}
.y2{bottom:525.541467pt;}
.y2e{bottom:542.895867pt;}
.y53{bottom:544.691067pt;}
.y78{bottom:544.949200pt;}
.y2d{bottom:562.895867pt;}
.y52{bottom:564.691067pt;}
.y77{bottom:564.821200pt;}
.y1e{bottom:579.384800pt;}
.y2c{bottom:582.895867pt;}
.y51{bottom:584.691067pt;}
.y76{bottom:584.693200pt;}
.y1d{bottom:596.712800pt;}
.y2b{bottom:602.895867pt;}
.y75{bottom:604.565200pt;}
.y50{bottom:604.691067pt;}
.y1c{bottom:614.040800pt;}
.y2a{bottom:622.895867pt;}
.y74{bottom:624.437200pt;}
.y4f{bottom:624.691067pt;}
.y1b{bottom:631.368800pt;}
.y29{bottom:642.895867pt;}
.y73{bottom:644.309200pt;}
.y4e{bottom:644.691067pt;}
.y1a{bottom:648.696800pt;}
.y28{bottom:662.895867pt;}
.y72{bottom:664.181200pt;}
.y4d{bottom:664.691067pt;}
.y19{bottom:666.024800pt;}
.y27{bottom:682.895867pt;}
.y18{bottom:683.352800pt;}
.y71{bottom:684.053200pt;}
.y4c{bottom:684.691067pt;}
.y17{bottom:700.680800pt;}
.y26{bottom:702.895867pt;}
.y70{bottom:703.925200pt;}
.y4b{bottom:704.691067pt;}
.y16{bottom:718.008800pt;}
.y25{bottom:722.895867pt;}
.y6f{bottom:723.797200pt;}
.y4a{bottom:724.691067pt;}
.y15{bottom:735.336800pt;}
.y24{bottom:742.895867pt;}
.y6e{bottom:743.669200pt;}
.y49{bottom:744.691067pt;}
.y23{bottom:762.895867pt;}
.y6d{bottom:763.541200pt;}
.y48{bottom:764.691067pt;}
.y22{bottom:782.895867pt;}
.y6c{bottom:783.413200pt;}
.y47{bottom:784.691067pt;}
.y21{bottom:802.895867pt;}
.y6b{bottom:803.285200pt;}
.y46{bottom:804.691067pt;}
.y20{bottom:822.895867pt;}
.y6a{bottom:823.157200pt;}
.y45{bottom:824.691067pt;}
.y1f{bottom:842.895867pt;}
.y69{bottom:843.029200pt;}
.y44{bottom:844.691067pt;}
.h6{height:40.757812pt;}
.h3{height:44.960000pt;}
.h2{height:45.286458pt;}
.h4{height:54.343750pt;}
.h5{height:304.402688pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x6{left:78.897600pt;}
.x7{left:92.145600pt;}
.x2{left:100.133200pt;}
.x4{left:113.274667pt;}
.x3{left:140.874667pt;}
.x8{left:160.472400pt;}
.x5{left:304.094533pt;}
.x1{left:371.024933pt;}
}




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