
    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_2d5db42c971295ab63354ba8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_14f2e41decf99b21658d39c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.224121;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_b5cac01c60ac59d48578974b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_13a8b4cc42bc9dd198c9b070.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_7376b5db8721e6d920051431.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-2.848320px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.993600px;}
.ls10{letter-spacing:-0.927360px;}
.ls17{letter-spacing:-0.794880px;}
.ls12{letter-spacing:-0.662400px;}
.ls11{letter-spacing:-0.596160px;}
.ls6{letter-spacing:-0.529920px;}
.ls7{letter-spacing:-0.463680px;}
.ls14{letter-spacing:-0.397440px;}
.ls1b{letter-spacing:-0.378000px;}
.lsa{letter-spacing:-0.331200px;}
.ls13{letter-spacing:-0.311040px;}
.ls1c{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.264960px;}
.lse{letter-spacing:-0.198720px;}
.lsd{letter-spacing:-0.155520px;}
.ls9{letter-spacing:-0.132480px;}
.ls15{letter-spacing:-0.077760px;}
.lsc{letter-spacing:-0.066240px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.066240px;}
.ls1a{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.132480px;}
.lsb{letter-spacing:0.198720px;}
.ls3{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.251712px;}
.ls4{letter-spacing:0.264960px;}
.ls1d{letter-spacing:0.270000px;}
.ls19{letter-spacing:0.734400px;}
.ls2{letter-spacing:170.159040px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws24{word-spacing:-21.539520px;}
.ws1b{word-spacing:-18.745920px;}
.ws25{word-spacing:-18.679680px;}
.ws7{word-spacing:-18.613440px;}
.ws5{word-spacing:-18.547200px;}
.ws2{word-spacing:-18.480960px;}
.ws6{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.348480px;}
.ws8{word-spacing:-18.282240px;}
.ws1{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.149760px;}
.ws13{word-spacing:-17.951040px;}
.ws1a{word-spacing:-17.884800px;}
.ws26{word-spacing:-17.686080px;}
.ws27{word-spacing:-17.487360px;}
.ws2c{word-spacing:-15.120000px;}
.ws29{word-spacing:-15.066000px;}
.ws2a{word-spacing:-14.796000px;}
.ws2b{word-spacing:-14.688000px;}
.ws22{word-spacing:-0.728640px;}
.ws21{word-spacing:-0.662400px;}
.ws12{word-spacing:-0.529920px;}
.ws15{word-spacing:-0.331200px;}
.ws11{word-spacing:-0.264960px;}
.ws2e{word-spacing:-0.216000px;}
.wsd{word-spacing:-0.198720px;}
.ws28{word-spacing:-0.132480px;}
.ws19{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.066240px;}
.wse{word-spacing:0.077760px;}
.ws1e{word-spacing:0.132480px;}
.ws9{word-spacing:0.198720px;}
.ws1d{word-spacing:0.233280px;}
.wsf{word-spacing:0.264960px;}
.ws2f{word-spacing:0.324000px;}
.wsc{word-spacing:0.331200px;}
.ws10{word-spacing:0.397440px;}
.ws2d{word-spacing:0.432000px;}
.wsb{word-spacing:0.463680px;}
.ws1c{word-spacing:0.529920px;}
.ws18{word-spacing:0.596160px;}
.ws1f{word-spacing:0.662400px;}
.ws20{word-spacing:0.699840px;}
.wsa{word-spacing:0.794880px;}
.ws16{word-spacing:0.861120px;}
.ws14{word-spacing:0.927360px;}
.ws23{word-spacing:0.993600px;}
._3{margin-left:-2.497248px;}
._0{margin-left:-1.020096px;}
._1{width:1.212192px;}
._4{width:334.975680px;}
._5{width:714.464640px;}
._2{width:979.358400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:57.607200px;}
.y5{bottom:66.525004px;}
.y26{bottom:77.760720px;}
.y25{bottom:97.020000px;}
.y4{bottom:97.125005px;}
.ya0{bottom:118.603440px;}
.y79{bottom:121.484160px;}
.y4e{bottom:125.075520px;}
.yc8{bottom:125.434080px;}
.y22{bottom:139.264499px;}
.y9f{bottom:140.562000px;}
.ye4{bottom:140.580000px;}
.y78{bottom:143.624880px;}
.y4d{bottom:147.216240px;}
.yc7{bottom:147.574800px;}
.y9e{bottom:162.702720px;}
.y77{bottom:165.583440px;}
.y4c{bottom:169.356960px;}
.yc6{bottom:169.715520px;}
.ye3{bottom:183.777120px;}
.y9d{bottom:184.843440px;}
.y76{bottom:187.724160px;}
.y4b{bottom:191.497680px;}
.yc5{bottom:191.856240px;}
.y19{bottom:196.933500px;}
.y9c{bottom:206.984160px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y75{bottom:209.864880px;}
.y4a{bottom:213.638400px;}
.yc4{bottom:213.996960px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.ye2{bottom:226.800000px;}
.y9b{bottom:229.124880px;}
.y74{bottom:232.005600px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yc3{bottom:236.137680px;}
.y9a{bottom:251.265600px;}
.y73{bottom:254.146320px;}
.y49{bottom:256.843440px;}
.yc2{bottom:258.278400px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.ye1{bottom:270.000000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y99{bottom:273.406320px;}
.y72{bottom:276.287040px;}
.y48{bottom:278.984160px;}
.yc1{bottom:280.419120px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.ye0{bottom:292.139280px;}
.y98{bottom:295.547040px;}
.y71{bottom:298.427760px;}
.y47{bottom:301.124880px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.ydf{bottom:314.280000px;}
.y70{bottom:320.568480px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y46{bottom:323.265600px;}
.yc0{bottom:323.442000px;}
.y97{bottom:338.752080px;}
.y6f{bottom:342.709200px;}
.y45{bottom:345.224160px;}
.ybf{bottom:345.582720px;}
.y10{bottom:348.133500px;}
.yde{bottom:357.300000px;}
.y96{bottom:360.892800px;}
.y6e{bottom:364.849920px;}
.y44{bottom:367.364880px;}
.ybe{bottom:367.723440px;}
.ydd{bottom:379.440000px;}
.y95{bottom:383.033520px;}
.yf{bottom:386.785499px;}
.y43{bottom:389.505600px;}
.ybd{bottom:389.864160px;}
.y94{bottom:405.174240px;}
.ye{bottom:408.044999px;}
.y6d{bottom:408.054960px;}
.y42{bottom:411.646320px;}
.ybc{bottom:412.004880px;}
.ydc{bottom:422.635680px;}
.y93{bottom:427.314960px;}
.y6c{bottom:430.195680px;}
.y41{bottom:433.787040px;}
.ybb{bottom:434.145600px;}
.ydb{bottom:444.776400px;}
.y92{bottom:449.455680px;}
.y6b{bottom:452.336400px;}
.y40{bottom:455.927760px;}
.yba{bottom:456.286320px;}
.y91{bottom:471.414240px;}
.y6a{bottom:474.477120px;}
.y3f{bottom:478.068480px;}
.yb9{bottom:478.427040px;}
.yd{bottom:484.864502px;}
.yda{bottom:487.799280px;}
.y90{bottom:493.554960px;}
.y69{bottom:496.435680px;}
.y3e{bottom:500.209200px;}
.yb8{bottom:500.567760px;}
.yc{bottom:502.864502px;}
.yd9{bottom:509.940000px;}
.y8f{bottom:515.695680px;}
.y68{bottom:518.576400px;}
.yb{bottom:520.864502px;}
.y3d{bottom:522.349920px;}
.y8e{bottom:537.836400px;}
.ya{bottom:538.864499px;}
.y67{bottom:540.717120px;}
.yb7{bottom:543.590640px;}
.yd8{bottom:554.040000px;}
.y9{bottom:556.864499px;}
.y8d{bottom:559.977120px;}
.y66{bottom:562.857840px;}
.y3c{bottom:565.554960px;}
.yb6{bottom:565.731360px;}
.y8c{bottom:582.117840px;}
.y65{bottom:584.998560px;}
.y3b{bottom:587.695680px;}
.yb5{bottom:587.872080px;}
.yd7{bottom:599.560560px;}
.y8b{bottom:604.258560px;}
.y64{bottom:607.139280px;}
.y3a{bottom:609.836400px;}
.yb4{bottom:610.012800px;}
.y8a{bottom:626.399280px;}
.y63{bottom:629.280000px;}
.y39{bottom:631.977120px;}
.yb3{bottom:632.153520px;}
.yd6{bottom:640.596240px;}
.y8{bottom:645.510000px;}
.y89{bottom:648.540000px;}
.y38{bottom:654.117840px;}
.yb2{bottom:654.294240px;}
.yd5{bottom:662.736960px;}
.y7{bottom:666.771000px;}
.y62{bottom:673.380000px;}
.y37{bottom:676.076400px;}
.yb1{bottom:676.434960px;}
.y88{bottom:692.640000px;}
.y36{bottom:698.217120px;}
.yb0{bottom:698.575680px;}
.yd4{bottom:705.942000px;}
.y61{bottom:719.637120px;}
.y35{bottom:720.357840px;}
.yaf{bottom:720.716400px;}
.y6{bottom:726.298500px;}
.yd3{bottom:728.082720px;}
.y87{bottom:738.895680px;}
.y60{bottom:741.777840px;}
.y34{bottom:742.498560px;}
.yae{bottom:742.857120px;}
.y3{bottom:752.599495px;}
.y86{bottom:761.036400px;}
.y5f{bottom:763.918560px;}
.y33{bottom:764.639280px;}
.yad{bottom:764.997840px;}
.yd2{bottom:771.105600px;}
.y85{bottom:783.177120px;}
.y5e{bottom:786.059280px;}
.y32{bottom:786.780000px;}
.yac{bottom:787.138560px;}
.yd1{bottom:793.246320px;}
.y84{bottom:805.317840px;}
.y5d{bottom:808.200000px;}
.yab{bottom:809.279280px;}
.y83{bottom:827.458560px;}
.y31{bottom:829.979850px;}
.y5c{bottom:830.340720px;}
.yaa{bottom:831.420000px;}
.yd0{bottom:836.451360px;}
.y82{bottom:849.417120px;}
.y30{bottom:852.120000px;}
.y5b{bottom:852.481440px;}
.y81{bottom:871.557840px;}
.y2f{bottom:874.260000px;}
.ya9{bottom:874.429200px;}
.y5a{bottom:874.440000px;}
.y2{bottom:879.369000px;}
.ycf{bottom:879.474240px;}
.y80{bottom:893.698560px;}
.y2e{bottom:896.400000px;}
.ya8{bottom:896.569920px;}
.y59{bottom:896.577120px;}
.y7f{bottom:915.839280px;}
.y2d{bottom:918.540000px;}
.ya7{bottom:918.710640px;}
.y58{bottom:918.717840px;}
.yce{bottom:922.679280px;}
.y7e{bottom:937.980000px;}
.ya6{bottom:940.851360px;}
.y57{bottom:940.858560px;}
.ycd{bottom:944.820000px;}
.y7d{bottom:960.118560px;}
.ya5{bottom:962.992080px;}
.y56{bottom:962.999280px;}
.y2c{bottom:964.980000px;}
.y1{bottom:966.726000px;}
.y7c{bottom:982.259280px;}
.ya4{bottom:985.132800px;}
.y55{bottom:985.140000px;}
.ycc{bottom:987.120000px;}
.y7b{bottom:1004.400000px;}
.y2b{bottom:1006.917840px;}
.ya3{bottom:1007.273520px;}
.ycb{bottom:1007.278560px;}
.y54{bottom:1028.337840px;}
.ya2{bottom:1029.414240px;}
.yca{bottom:1029.419280px;}
.y7a{bottom:1048.500000px;}
.y53{bottom:1050.478560px;}
.ya1{bottom:1051.554960px;}
.yc9{bottom:1051.560000px;}
.y2a{bottom:1052.096400px;}
.y52{bottom:1072.619280px;}
.y51{bottom:1094.760000px;}
.y29{bottom:1097.100000px;}
.ye7{bottom:1102.680000px;}
.y50{bottom:1116.900720px;}
.ye6{bottom:1124.095500px;}
.y4f{bottom:1139.041440px;}
.y28{bottom:1139.952240px;}
.ye5{bottom:1142.280000px;}
.y24{bottom:1169.999280px;}
.y23{bottom:1192.140000px;}
.h7{height:32.130000px;}
.ha{height:44.149219px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h12{height:49.306641px;}
.h13{height:49.324641px;}
.h2{height:55.080000px;}
.h9{height:60.482812px;}
.h11{height:60.485692px;}
.he{height:60.488573px;}
.hd{height:60.494333px;}
.h10{height:60.500093px;}
.hf{height:60.526013px;}
.hb{height:70.615102px;}
.hc{height:71.001563px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x9{left:216.540000px;}
.x6{left:222.653520px;}
.x5{left:272.880000px;}
.x7{left:442.268640px;}
.x3{left:454.959000px;}
.x8{left:778.337280px;}
@media print{
.v1{vertical-align:-2.531840pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.883200pt;}
.ls10{letter-spacing:-0.824320pt;}
.ls17{letter-spacing:-0.706560pt;}
.ls12{letter-spacing:-0.588800pt;}
.ls11{letter-spacing:-0.529920pt;}
.ls6{letter-spacing:-0.471040pt;}
.ls7{letter-spacing:-0.412160pt;}
.ls14{letter-spacing:-0.353280pt;}
.ls1b{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:-0.294400pt;}
.ls13{letter-spacing:-0.276480pt;}
.ls1c{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.235520pt;}
.lse{letter-spacing:-0.176640pt;}
.lsd{letter-spacing:-0.138240pt;}
.ls9{letter-spacing:-0.117760pt;}
.ls15{letter-spacing:-0.069120pt;}
.lsc{letter-spacing:-0.058880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.058880pt;}
.ls1a{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.117760pt;}
.lsb{letter-spacing:0.176640pt;}
.ls3{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.223744pt;}
.ls4{letter-spacing:0.235520pt;}
.ls1d{letter-spacing:0.240000pt;}
.ls19{letter-spacing:0.652800pt;}
.ls2{letter-spacing:151.252480pt;}
.ws24{word-spacing:-19.146240pt;}
.ws1b{word-spacing:-16.663040pt;}
.ws25{word-spacing:-16.604160pt;}
.ws7{word-spacing:-16.545280pt;}
.ws5{word-spacing:-16.486400pt;}
.ws2{word-spacing:-16.427520pt;}
.ws6{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.309760pt;}
.ws8{word-spacing:-16.250880pt;}
.ws1{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.133120pt;}
.ws13{word-spacing:-15.956480pt;}
.ws1a{word-spacing:-15.897600pt;}
.ws26{word-spacing:-15.720960pt;}
.ws27{word-spacing:-15.544320pt;}
.ws2c{word-spacing:-13.440000pt;}
.ws29{word-spacing:-13.392000pt;}
.ws2a{word-spacing:-13.152000pt;}
.ws2b{word-spacing:-13.056000pt;}
.ws22{word-spacing:-0.647680pt;}
.ws21{word-spacing:-0.588800pt;}
.ws12{word-spacing:-0.471040pt;}
.ws15{word-spacing:-0.294400pt;}
.ws11{word-spacing:-0.235520pt;}
.ws2e{word-spacing:-0.192000pt;}
.wsd{word-spacing:-0.176640pt;}
.ws28{word-spacing:-0.117760pt;}
.ws19{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.058880pt;}
.wse{word-spacing:0.069120pt;}
.ws1e{word-spacing:0.117760pt;}
.ws9{word-spacing:0.176640pt;}
.ws1d{word-spacing:0.207360pt;}
.wsf{word-spacing:0.235520pt;}
.ws2f{word-spacing:0.288000pt;}
.wsc{word-spacing:0.294400pt;}
.ws10{word-spacing:0.353280pt;}
.ws2d{word-spacing:0.384000pt;}
.wsb{word-spacing:0.412160pt;}
.ws1c{word-spacing:0.471040pt;}
.ws18{word-spacing:0.529920pt;}
.ws1f{word-spacing:0.588800pt;}
.ws20{word-spacing:0.622080pt;}
.wsa{word-spacing:0.706560pt;}
.ws16{word-spacing:0.765440pt;}
.ws14{word-spacing:0.824320pt;}
.ws23{word-spacing:0.883200pt;}
._3{margin-left:-2.219776pt;}
._0{margin-left:-0.906752pt;}
._1{width:1.077504pt;}
._4{width:297.756160pt;}
._5{width:635.079680pt;}
._2{width:870.540800pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:51.206400pt;}
.y5{bottom:59.133337pt;}
.y26{bottom:69.120640pt;}
.y25{bottom:86.240000pt;}
.y4{bottom:86.333337pt;}
.ya0{bottom:105.425280pt;}
.y79{bottom:107.985920pt;}
.y4e{bottom:111.178240pt;}
.yc8{bottom:111.496960pt;}
.y22{bottom:123.790666pt;}
.y9f{bottom:124.944000pt;}
.ye4{bottom:124.960000pt;}
.y78{bottom:127.666560pt;}
.y4d{bottom:130.858880pt;}
.yc7{bottom:131.177600pt;}
.y9e{bottom:144.624640pt;}
.y77{bottom:147.185280pt;}
.y4c{bottom:150.539520pt;}
.yc6{bottom:150.858240pt;}
.ye3{bottom:163.357440pt;}
.y9d{bottom:164.305280pt;}
.y76{bottom:166.865920pt;}
.y4b{bottom:170.220160pt;}
.yc5{bottom:170.538880pt;}
.y19{bottom:175.052000pt;}
.y9c{bottom:183.985920pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y75{bottom:186.546560pt;}
.y4a{bottom:189.900800pt;}
.yc4{bottom:190.219520pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.ye2{bottom:201.600000pt;}
.y9b{bottom:203.666560pt;}
.y74{bottom:206.227200pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yc3{bottom:209.900160pt;}
.y9a{bottom:223.347200pt;}
.y73{bottom:225.907840pt;}
.y49{bottom:228.305280pt;}
.yc2{bottom:229.580800pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.ye1{bottom:240.000000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y99{bottom:243.027840pt;}
.y72{bottom:245.588480pt;}
.y48{bottom:247.985920pt;}
.yc1{bottom:249.261440pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.ye0{bottom:259.679360pt;}
.y98{bottom:262.708480pt;}
.y71{bottom:265.269120pt;}
.y47{bottom:267.666560pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.ydf{bottom:279.360000pt;}
.y70{bottom:284.949760pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y46{bottom:287.347200pt;}
.yc0{bottom:287.504000pt;}
.y97{bottom:301.112960pt;}
.y6f{bottom:304.630400pt;}
.y45{bottom:306.865920pt;}
.ybf{bottom:307.184640pt;}
.y10{bottom:309.452000pt;}
.yde{bottom:317.600000pt;}
.y96{bottom:320.793600pt;}
.y6e{bottom:324.311040pt;}
.y44{bottom:326.546560pt;}
.ybe{bottom:326.865280pt;}
.ydd{bottom:337.280000pt;}
.y95{bottom:340.474240pt;}
.yf{bottom:343.809333pt;}
.y43{bottom:346.227200pt;}
.ybd{bottom:346.545920pt;}
.y94{bottom:360.154880pt;}
.ye{bottom:362.706666pt;}
.y6d{bottom:362.715520pt;}
.y42{bottom:365.907840pt;}
.ybc{bottom:366.226560pt;}
.ydc{bottom:375.676160pt;}
.y93{bottom:379.835520pt;}
.y6c{bottom:382.396160pt;}
.y41{bottom:385.588480pt;}
.ybb{bottom:385.907200pt;}
.ydb{bottom:395.356800pt;}
.y92{bottom:399.516160pt;}
.y6b{bottom:402.076800pt;}
.y40{bottom:405.269120pt;}
.yba{bottom:405.587840pt;}
.y91{bottom:419.034880pt;}
.y6a{bottom:421.757440pt;}
.y3f{bottom:424.949760pt;}
.yb9{bottom:425.268480pt;}
.yd{bottom:430.990669pt;}
.yda{bottom:433.599360pt;}
.y90{bottom:438.715520pt;}
.y69{bottom:441.276160pt;}
.y3e{bottom:444.630400pt;}
.yb8{bottom:444.949120pt;}
.yc{bottom:446.990669pt;}
.yd9{bottom:453.280000pt;}
.y8f{bottom:458.396160pt;}
.y68{bottom:460.956800pt;}
.yb{bottom:462.990669pt;}
.y3d{bottom:464.311040pt;}
.y8e{bottom:478.076800pt;}
.ya{bottom:478.990666pt;}
.y67{bottom:480.637440pt;}
.yb7{bottom:483.191680pt;}
.yd8{bottom:492.480000pt;}
.y9{bottom:494.990666pt;}
.y8d{bottom:497.757440pt;}
.y66{bottom:500.318080pt;}
.y3c{bottom:502.715520pt;}
.yb6{bottom:502.872320pt;}
.y8c{bottom:517.438080pt;}
.y65{bottom:519.998720pt;}
.y3b{bottom:522.396160pt;}
.yb5{bottom:522.552960pt;}
.yd7{bottom:532.942720pt;}
.y8b{bottom:537.118720pt;}
.y64{bottom:539.679360pt;}
.y3a{bottom:542.076800pt;}
.yb4{bottom:542.233600pt;}
.y8a{bottom:556.799360pt;}
.y63{bottom:559.360000pt;}
.y39{bottom:561.757440pt;}
.yb3{bottom:561.914240pt;}
.yd6{bottom:569.418880pt;}
.y8{bottom:573.786667pt;}
.y89{bottom:576.480000pt;}
.y38{bottom:581.438080pt;}
.yb2{bottom:581.594880pt;}
.yd5{bottom:589.099520pt;}
.y7{bottom:592.685334pt;}
.y62{bottom:598.560000pt;}
.y37{bottom:600.956800pt;}
.yb1{bottom:601.275520pt;}
.y88{bottom:615.680000pt;}
.y36{bottom:620.637440pt;}
.yb0{bottom:620.956160pt;}
.yd4{bottom:627.504000pt;}
.y61{bottom:639.677440pt;}
.y35{bottom:640.318080pt;}
.yaf{bottom:640.636800pt;}
.y6{bottom:645.598667pt;}
.yd3{bottom:647.184640pt;}
.y87{bottom:656.796160pt;}
.y60{bottom:659.358080pt;}
.y34{bottom:659.998720pt;}
.yae{bottom:660.317440pt;}
.y3{bottom:668.977329pt;}
.y86{bottom:676.476800pt;}
.y5f{bottom:679.038720pt;}
.y33{bottom:679.679360pt;}
.yad{bottom:679.998080pt;}
.yd2{bottom:685.427200pt;}
.y85{bottom:696.157440pt;}
.y5e{bottom:698.719360pt;}
.y32{bottom:699.360000pt;}
.yac{bottom:699.678720pt;}
.yd1{bottom:705.107840pt;}
.y84{bottom:715.838080pt;}
.y5d{bottom:718.400000pt;}
.yab{bottom:719.359360pt;}
.y83{bottom:735.518720pt;}
.y31{bottom:737.759867pt;}
.y5c{bottom:738.080640pt;}
.yaa{bottom:739.040000pt;}
.yd0{bottom:743.512320pt;}
.y82{bottom:755.037440pt;}
.y30{bottom:757.440000pt;}
.y5b{bottom:757.761280pt;}
.y81{bottom:774.718080pt;}
.y2f{bottom:777.120000pt;}
.ya9{bottom:777.270400pt;}
.y5a{bottom:777.280000pt;}
.y2{bottom:781.661334pt;}
.ycf{bottom:781.754880pt;}
.y80{bottom:794.398720pt;}
.y2e{bottom:796.800000pt;}
.ya8{bottom:796.951040pt;}
.y59{bottom:796.957440pt;}
.y7f{bottom:814.079360pt;}
.y2d{bottom:816.480000pt;}
.ya7{bottom:816.631680pt;}
.y58{bottom:816.638080pt;}
.yce{bottom:820.159360pt;}
.y7e{bottom:833.760000pt;}
.ya6{bottom:836.312320pt;}
.y57{bottom:836.318720pt;}
.ycd{bottom:839.840000pt;}
.y7d{bottom:853.438720pt;}
.ya5{bottom:855.992960pt;}
.y56{bottom:855.999360pt;}
.y2c{bottom:857.760000pt;}
.y1{bottom:859.312000pt;}
.y7c{bottom:873.119360pt;}
.ya4{bottom:875.673600pt;}
.y55{bottom:875.680000pt;}
.ycc{bottom:877.440000pt;}
.y7b{bottom:892.800000pt;}
.y2b{bottom:895.038080pt;}
.ya3{bottom:895.354240pt;}
.ycb{bottom:895.358720pt;}
.y54{bottom:914.078080pt;}
.ya2{bottom:915.034880pt;}
.yca{bottom:915.039360pt;}
.y7a{bottom:932.000000pt;}
.y53{bottom:933.758720pt;}
.ya1{bottom:934.715520pt;}
.yc9{bottom:934.720000pt;}
.y2a{bottom:935.196800pt;}
.y52{bottom:953.439360pt;}
.y51{bottom:973.120000pt;}
.y29{bottom:975.200000pt;}
.ye7{bottom:980.160000pt;}
.y50{bottom:992.800640pt;}
.ye6{bottom:999.196000pt;}
.y4f{bottom:1012.481280pt;}
.y28{bottom:1013.290880pt;}
.ye5{bottom:1015.360000pt;}
.y24{bottom:1039.999360pt;}
.y23{bottom:1059.680000pt;}
.h7{height:28.560000pt;}
.ha{height:39.243750pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h12{height:43.828125pt;}
.h13{height:43.844125pt;}
.h2{height:48.960000pt;}
.h9{height:53.762500pt;}
.h11{height:53.765060pt;}
.he{height:53.767620pt;}
.hd{height:53.772740pt;}
.h10{height:53.777860pt;}
.hf{height:53.800900pt;}
.hb{height:62.768980pt;}
.hc{height:63.112500pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x9{left:192.480000pt;}
.x6{left:197.914240pt;}
.x5{left:242.560000pt;}
.x7{left:393.127680pt;}
.x3{left:404.408000pt;}
.x8{left:691.855360pt;}
}




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