
    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_893194ace5a3f35a7dba1359.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.828125;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_bb8f10d72132c29d1c72aaba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_14351d7b4918b6f1e6e2fc95.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_6b88b16e6eb35a592200c164.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fa9aef414178e2e344b5a565.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_28b80ef035b7128c688c958d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_5c5f1e3cc3671603f2d61ca1.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_577ace7aad9e1c62c232ca22.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_25d21b7f5edb88b3cacd65e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.005760px;}
.ls4{letter-spacing:0.060300px;}
.ls9{letter-spacing:0.209160px;}
.ls5{letter-spacing:0.236160px;}
.ls16{letter-spacing:0.259200px;}
.ls14{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.388800px;}
.ls8{letter-spacing:0.453600px;}
.ls7{letter-spacing:0.472320px;}
.ls15{letter-spacing:0.583200px;}
.ls3{letter-spacing:0.624960px;}
.ls6{letter-spacing:0.636480px;}
.ls0{letter-spacing:0.648000px;}
.ls2{letter-spacing:1.531800px;}
.lsa{letter-spacing:2.808000px;}
.lsc{letter-spacing:5.832000px;}
.lsd{letter-spacing:14.256000px;}
.ls10{letter-spacing:14.400000px;}
.lsb{letter-spacing:17.628600px;}
.lsf{letter-spacing:24.408000px;}
.lse{letter-spacing:25.128000px;}
.ls11{letter-spacing:31.680000px;}
.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;}
}
.ws61{word-spacing:-31.752000px;}
.ws4c{word-spacing:-25.200000px;}
.ws52{word-spacing:-24.480000px;}
.ws3f{word-spacing:-18.000000px;}
.ws30{word-spacing:-15.232320px;}
.ws24{word-spacing:-14.760000px;}
.ws5f{word-spacing:-14.472000px;}
.ws47{word-spacing:-14.328000px;}
.ws3b{word-spacing:-5.904000px;}
.ws31{word-spacing:-2.880000px;}
.ws2{word-spacing:-0.712800px;}
.ws70{word-spacing:-0.648000px;}
.ws2a{word-spacing:-0.518400px;}
.ws71{word-spacing:-0.453600px;}
.ws6f{word-spacing:-0.388800px;}
.ws76{word-spacing:-0.324000px;}
.ws0{word-spacing:-0.072000px;}
.ws1{word-spacing:-0.064800px;}
.ws2d{word-spacing:-0.047520px;}
.ws72{word-spacing:-0.041760px;}
.ws7{word-spacing:0.000000px;}
.ws23{word-spacing:10.804200px;}
.ws13{word-spacing:10.872000px;}
.ws34{word-spacing:10.944000px;}
.ws36{word-spacing:11.016000px;}
.ws62{word-spacing:11.304000px;}
.ws2e{word-spacing:11.376000px;}
.ws42{word-spacing:11.448000px;}
.ws22{word-spacing:11.520000px;}
.ws68{word-spacing:11.664000px;}
.ws4f{word-spacing:11.808000px;}
.ws65{word-spacing:11.952000px;}
.ws69{word-spacing:12.024000px;}
.ws19{word-spacing:12.240000px;}
.ws1d{word-spacing:12.384000px;}
.wsd{word-spacing:12.600000px;}
.ws18{word-spacing:12.816000px;}
.ws6a{word-spacing:13.104000px;}
.ws49{word-spacing:13.176000px;}
.ws50{word-spacing:13.464000px;}
.ws33{word-spacing:13.608000px;}
.ws74{word-spacing:13.867200px;}
.ws46{word-spacing:14.184000px;}
.ws5d{word-spacing:14.307840px;}
.ws5e{word-spacing:14.328000px;}
.ws75{word-spacing:14.385600px;}
.ws5b{word-spacing:14.400000px;}
.ws63{word-spacing:14.688000px;}
.ws39{word-spacing:14.739960px;}
.ws3a{word-spacing:14.760000px;}
.wsa{word-spacing:14.832000px;}
.ws2c{word-spacing:15.120000px;}
.ws6e{word-spacing:15.163200px;}
.ws1f{word-spacing:15.192000px;}
.ws66{word-spacing:15.264000px;}
.ws1e{word-spacing:15.282360px;}
.ws32{word-spacing:15.408000px;}
.ws5c{word-spacing:15.480000px;}
.ws1a{word-spacing:15.552000px;}
.ws21{word-spacing:15.840000px;}
.ws59{word-spacing:15.984000px;}
.ws58{word-spacing:16.200000px;}
.wsf{word-spacing:16.662360px;}
.ws10{word-spacing:16.704000px;}
.ws8{word-spacing:16.776000px;}
.ws12{word-spacing:16.992000px;}
.ws43{word-spacing:17.208000px;}
.ws2f{word-spacing:17.280000px;}
.ws5a{word-spacing:17.424000px;}
.ws57{word-spacing:17.496000px;}
.ws48{word-spacing:17.568000px;}
.ws6c{word-spacing:17.755200px;}
.ws4e{word-spacing:17.928000px;}
.ws67{word-spacing:18.144000px;}
.ws25{word-spacing:18.216000px;}
.ws11{word-spacing:18.360000px;}
.ws6b{word-spacing:18.432000px;}
.ws3e{word-spacing:18.702960px;}
.ws40{word-spacing:18.720000px;}
.wse{word-spacing:19.368000px;}
.ws9{word-spacing:19.440000px;}
.ws3d{word-spacing:20.016000px;}
.ws17{word-spacing:20.160000px;}
.ws16{word-spacing:20.376000px;}
.ws45{word-spacing:20.520000px;}
.ws35{word-spacing:20.736000px;}
.ws53{word-spacing:20.808000px;}
.wsc{word-spacing:21.312000px;}
.ws44{word-spacing:21.384000px;}
.ws5{word-spacing:21.672000px;}
.ws1b{word-spacing:22.320000px;}
.ws27{word-spacing:22.392000px;}
.ws56{word-spacing:22.752000px;}
.ws37{word-spacing:22.968000px;}
.ws54{word-spacing:23.184000px;}
.ws38{word-spacing:23.688000px;}
.ws3c{word-spacing:24.120000px;}
.ws51{word-spacing:24.336000px;}
.ws20{word-spacing:24.840000px;}
.ws4b{word-spacing:25.007520px;}
.ws4d{word-spacing:25.056000px;}
.ws6d{word-spacing:26.373600px;}
.ws41{word-spacing:26.496000px;}
.ws29{word-spacing:27.072000px;}
.ws64{word-spacing:27.792000px;}
.ws2b{word-spacing:28.368000px;}
.ws26{word-spacing:30.168000px;}
.ws14{word-spacing:30.600000px;}
.ws60{word-spacing:31.608000px;}
.ws15{word-spacing:32.760000px;}
.ws4{word-spacing:34.272000px;}
.ws55{word-spacing:34.848000px;}
.ws28{word-spacing:35.640000px;}
.ws1c{word-spacing:37.080000px;}
.ws3{word-spacing:40.320000px;}
.ws4a{word-spacing:44.064000px;}
.ws6{word-spacing:44.784000px;}
.wsb{word-spacing:55.008000px;}
.ws73{word-spacing:1537.489800px;}
._d{margin-left:-31.139040px;}
._c{margin-left:-24.998160px;}
._b{margin-left:-14.020440px;}
._8{margin-left:-7.200000px;}
._a{margin-left:-5.811840px;}
._9{margin-left:-2.000760px;}
._0{width:1.490400px;}
._3{width:2.576760px;}
._2{width:4.104000px;}
._1{width:5.616000px;}
._4{width:7.015560px;}
._7{width:8.216880px;}
._5{width:9.288000px;}
._6{width:10.584000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:47.520000px;}
.fs7{font-size:53.280000px;}
.fs4{font-size:59.040000px;}
.fs1{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:12.599972px;}
.yad{bottom:95.939998px;}
.y4e{bottom:96.659999px;}
.y5e{bottom:103.499999px;}
.y4b{bottom:104.939998px;}
.y7c{bottom:106.739998px;}
.y90{bottom:108.179999px;}
.y77{bottom:108.539999px;}
.y5f{bottom:114.299999px;}
.yac{bottom:118.259999px;}
.y4d{bottom:120.779999px;}
.yab{bottom:128.339999px;}
.y5d{bottom:131.219998px;}
.y4c{bottom:131.579998px;}
.y4a{bottom:137.700029px;}
.y7b{bottom:139.860028px;}
.y8f{bottom:140.940028px;}
.y2b{bottom:141.300028px;}
.y76{bottom:141.660028px;}
.y5c{bottom:155.340028px;}
.y5b{bottom:166.140028px;}
.y49{bottom:170.820029px;}
.yaa{bottom:171.540029px;}
.y7a{bottom:172.620028px;}
.y2a{bottom:174.060029px;}
.y75{bottom:174.420028px;}
.ya9{bottom:203.220029px;}
.y48{bottom:203.580028px;}
.y79{bottom:205.740028px;}
.y29{bottom:207.180029px;}
.y74{bottom:207.540028px;}
.y5a{bottom:216.540028px;}
.ya8{bottom:234.900028px;}
.y47{bottom:236.700028px;}
.y78{bottom:237.060028px;}
.y8e{bottom:238.500029px;}
.y28{bottom:240.300028px;}
.y59{bottom:249.660028px;}
.ya7{bottom:267.660029px;}
.y46{bottom:269.460029px;}
.y8d{bottom:271.620029px;}
.y27{bottom:273.060028px;}
.y73{bottom:273.420029px;}
.y58{bottom:282.420029px;}
.ya6{bottom:288.900029px;}
.y45{bottom:302.580029px;}
.y8c{bottom:304.380029px;}
.y26{bottom:306.180029px;}
.y72{bottom:306.540029px;}
.y57{bottom:315.540029px;}
.ya5{bottom:320.580029px;}
.y44{bottom:335.700028px;}
.y8b{bottom:337.500029px;}
.y25{bottom:338.940029px;}
.y71{bottom:339.300028px;}
.y56{bottom:348.300028px;}
.ya4{bottom:350.820029px;}
.y43{bottom:368.460029px;}
.y8a{bottom:370.260028px;}
.y24{bottom:372.060028px;}
.y70{bottom:372.420029px;}
.ya3{bottom:381.060028px;}
.y55{bottom:381.420029px;}
.y42{bottom:401.580029px;}
.y89{bottom:403.380029px;}
.y23{bottom:404.820028px;}
.y6f{bottom:405.180028px;}
.ya2{bottom:411.300029px;}
.y54{bottom:414.180028px;}
.y41{bottom:434.340028px;}
.y88{bottom:436.140029px;}
.y22{bottom:437.940029px;}
.y6e{bottom:438.300029px;}
.ya1{bottom:441.180028px;}
.y53{bottom:445.860029px;}
.ya0{bottom:461.340028px;}
.y40{bottom:467.460029px;}
.y87{bottom:469.260029px;}
.y21{bottom:470.700028px;}
.y6d{bottom:471.060028px;}
.y52{bottom:478.260029px;}
.y9f{bottom:481.500028px;}
.y3f{bottom:500.220028px;}
.y9e{bottom:501.660029px;}
.y86{bottom:502.380029px;}
.y20{bottom:503.820028px;}
.y6c{bottom:504.180028px;}
.y51{bottom:511.380029px;}
.y9d{bottom:521.820028px;}
.y3e{bottom:533.340028px;}
.y85{bottom:535.140028px;}
.y1f{bottom:536.940028px;}
.y9c{bottom:541.980028px;}
.y50{bottom:544.140028px;}
.y1e{bottom:557.820028px;}
.y9b{bottom:562.140028px;}
.y3d{bottom:566.100029px;}
.y84{bottom:568.260028px;}
.y6b{bottom:570.060028px;}
.y4f{bottom:577.260028px;}
.y1d{bottom:578.700028px;}
.y9a{bottom:592.380028px;}
.y1c{bottom:598.860028px;}
.y3c{bottom:599.220028px;}
.y83{bottom:601.020028px;}
.y6a{bottom:603.180028px;}
.y1b{bottom:619.020028px;}
.y99{bottom:622.620028px;}
.y3b{bottom:631.980028px;}
.y82{bottom:634.140028px;}
.y69{bottom:635.940028px;}
.y1a{bottom:639.180028px;}
.y98{bottom:652.860028px;}
.y19{bottom:659.340028px;}
.y3a{bottom:665.100029px;}
.y81{bottom:666.900028px;}
.y68{bottom:669.060028px;}
.y18{bottom:679.500028px;}
.y97{bottom:683.100029px;}
.y39{bottom:698.220028px;}
.y17{bottom:699.660028px;}
.y80{bottom:700.020028px;}
.y67{bottom:701.820028px;}
.y96{bottom:713.340028px;}
.y16{bottom:719.820028px;}
.y38{bottom:730.980028px;}
.y7f{bottom:732.780028px;}
.y66{bottom:733.140028px;}
.y15{bottom:739.980028px;}
.y95{bottom:743.580029px;}
.y14{bottom:759.780028px;}
.y37{bottom:764.100028px;}
.y65{bottom:765.900028px;}
.y94{bottom:773.820029px;}
.y13{bottom:779.940028px;}
.y36{bottom:796.860028px;}
.y64{bottom:799.020029px;}
.y12{bottom:800.100028px;}
.y93{bottom:804.059878px;}
.y11{bottom:820.260028px;}
.y35{bottom:829.980029px;}
.y63{bottom:831.780028px;}
.y92{bottom:833.940028px;}
.y10{bottom:840.420029px;}
.yf{bottom:860.580029px;}
.y34{bottom:862.740028px;}
.y91{bottom:864.180028px;}
.y62{bottom:864.899878px;}
.ye{bottom:880.740028px;}
.y33{bottom:895.860028px;}
.y61{bottom:897.660028px;}
.yd{bottom:900.899878px;}
.yc{bottom:921.059878px;}
.y32{bottom:928.620028px;}
.y60{bottom:928.980029px;}
.y7e{bottom:930.780028px;}
.yb{bottom:941.219879px;}
.ya{bottom:961.379878px;}
.y31{bottom:961.740028px;}
.y7d{bottom:962.100028px;}
.y9{bottom:981.539878px;}
.y30{bottom:994.860028px;}
.y8{bottom:1001.700029px;}
.y7{bottom:1021.860028px;}
.y2f{bottom:1027.620028px;}
.y6{bottom:1042.020029px;}
.y2e{bottom:1060.739878px;}
.y5{bottom:1062.180028px;}
.y4{bottom:1082.340028px;}
.y2d{bottom:1093.500028px;}
.y3{bottom:1104.300029px;}
.y2{bottom:1126.260029px;}
.y2c{bottom:1126.620028px;}
.he{height:26.208984px;}
.hb{height:34.114922px;}
.hf{height:38.789297px;}
.h7{height:43.189453px;}
.h6{height:44.898047px;}
.h8{height:47.988281px;}
.h3{height:49.359375px;}
.hc{height:51.804141px;}
.h5{height:53.441016px;}
.h4{height:59.378906px;}
.h9{height:63.175781px;}
.hd{height:64.679766px;}
.ha{height:72.310078px;}
.h2{height:1237.500000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:867.599850px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:12.600000px;}
.x2{left:115.200060px;}
.x3{left:221.400150px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.005120pt;}
.ls4{letter-spacing:0.053600pt;}
.ls9{letter-spacing:0.185920pt;}
.ls5{letter-spacing:0.209920pt;}
.ls16{letter-spacing:0.230400pt;}
.ls14{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.345600pt;}
.ls8{letter-spacing:0.403200pt;}
.ls7{letter-spacing:0.419840pt;}
.ls15{letter-spacing:0.518400pt;}
.ls3{letter-spacing:0.555520pt;}
.ls6{letter-spacing:0.565760pt;}
.ls0{letter-spacing:0.576000pt;}
.ls2{letter-spacing:1.361600pt;}
.lsa{letter-spacing:2.496000pt;}
.lsc{letter-spacing:5.184000pt;}
.lsd{letter-spacing:12.672000pt;}
.ls10{letter-spacing:12.800000pt;}
.lsb{letter-spacing:15.669867pt;}
.lsf{letter-spacing:21.696000pt;}
.lse{letter-spacing:22.336000pt;}
.ls11{letter-spacing:28.160000pt;}
.ws61{word-spacing:-28.224000pt;}
.ws4c{word-spacing:-22.400000pt;}
.ws52{word-spacing:-21.760000pt;}
.ws3f{word-spacing:-16.000000pt;}
.ws30{word-spacing:-13.539840pt;}
.ws24{word-spacing:-13.120000pt;}
.ws5f{word-spacing:-12.864000pt;}
.ws47{word-spacing:-12.736000pt;}
.ws3b{word-spacing:-5.248000pt;}
.ws31{word-spacing:-2.560000pt;}
.ws2{word-spacing:-0.633600pt;}
.ws70{word-spacing:-0.576000pt;}
.ws2a{word-spacing:-0.460800pt;}
.ws71{word-spacing:-0.403200pt;}
.ws6f{word-spacing:-0.345600pt;}
.ws76{word-spacing:-0.288000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws1{word-spacing:-0.057600pt;}
.ws2d{word-spacing:-0.042240pt;}
.ws72{word-spacing:-0.037120pt;}
.ws7{word-spacing:0.000000pt;}
.ws23{word-spacing:9.603733pt;}
.ws13{word-spacing:9.664000pt;}
.ws34{word-spacing:9.728000pt;}
.ws36{word-spacing:9.792000pt;}
.ws62{word-spacing:10.048000pt;}
.ws2e{word-spacing:10.112000pt;}
.ws42{word-spacing:10.176000pt;}
.ws22{word-spacing:10.240000pt;}
.ws68{word-spacing:10.368000pt;}
.ws4f{word-spacing:10.496000pt;}
.ws65{word-spacing:10.624000pt;}
.ws69{word-spacing:10.688000pt;}
.ws19{word-spacing:10.880000pt;}
.ws1d{word-spacing:11.008000pt;}
.wsd{word-spacing:11.200000pt;}
.ws18{word-spacing:11.392000pt;}
.ws6a{word-spacing:11.648000pt;}
.ws49{word-spacing:11.712000pt;}
.ws50{word-spacing:11.968000pt;}
.ws33{word-spacing:12.096000pt;}
.ws74{word-spacing:12.326400pt;}
.ws46{word-spacing:12.608000pt;}
.ws5d{word-spacing:12.718080pt;}
.ws5e{word-spacing:12.736000pt;}
.ws75{word-spacing:12.787200pt;}
.ws5b{word-spacing:12.800000pt;}
.ws63{word-spacing:13.056000pt;}
.ws39{word-spacing:13.102187pt;}
.ws3a{word-spacing:13.120000pt;}
.wsa{word-spacing:13.184000pt;}
.ws2c{word-spacing:13.440000pt;}
.ws6e{word-spacing:13.478400pt;}
.ws1f{word-spacing:13.504000pt;}
.ws66{word-spacing:13.568000pt;}
.ws1e{word-spacing:13.584320pt;}
.ws32{word-spacing:13.696000pt;}
.ws5c{word-spacing:13.760000pt;}
.ws1a{word-spacing:13.824000pt;}
.ws21{word-spacing:14.080000pt;}
.ws59{word-spacing:14.208000pt;}
.ws58{word-spacing:14.400000pt;}
.wsf{word-spacing:14.810987pt;}
.ws10{word-spacing:14.848000pt;}
.ws8{word-spacing:14.912000pt;}
.ws12{word-spacing:15.104000pt;}
.ws43{word-spacing:15.296000pt;}
.ws2f{word-spacing:15.360000pt;}
.ws5a{word-spacing:15.488000pt;}
.ws57{word-spacing:15.552000pt;}
.ws48{word-spacing:15.616000pt;}
.ws6c{word-spacing:15.782400pt;}
.ws4e{word-spacing:15.936000pt;}
.ws67{word-spacing:16.128000pt;}
.ws25{word-spacing:16.192000pt;}
.ws11{word-spacing:16.320000pt;}
.ws6b{word-spacing:16.384000pt;}
.ws3e{word-spacing:16.624853pt;}
.ws40{word-spacing:16.640000pt;}
.wse{word-spacing:17.216000pt;}
.ws9{word-spacing:17.280000pt;}
.ws3d{word-spacing:17.792000pt;}
.ws17{word-spacing:17.920000pt;}
.ws16{word-spacing:18.112000pt;}
.ws45{word-spacing:18.240000pt;}
.ws35{word-spacing:18.432000pt;}
.ws53{word-spacing:18.496000pt;}
.wsc{word-spacing:18.944000pt;}
.ws44{word-spacing:19.008000pt;}
.ws5{word-spacing:19.264000pt;}
.ws1b{word-spacing:19.840000pt;}
.ws27{word-spacing:19.904000pt;}
.ws56{word-spacing:20.224000pt;}
.ws37{word-spacing:20.416000pt;}
.ws54{word-spacing:20.608000pt;}
.ws38{word-spacing:21.056000pt;}
.ws3c{word-spacing:21.440000pt;}
.ws51{word-spacing:21.632000pt;}
.ws20{word-spacing:22.080000pt;}
.ws4b{word-spacing:22.228907pt;}
.ws4d{word-spacing:22.272000pt;}
.ws6d{word-spacing:23.443200pt;}
.ws41{word-spacing:23.552000pt;}
.ws29{word-spacing:24.064000pt;}
.ws64{word-spacing:24.704000pt;}
.ws2b{word-spacing:25.216000pt;}
.ws26{word-spacing:26.816000pt;}
.ws14{word-spacing:27.200000pt;}
.ws60{word-spacing:28.096000pt;}
.ws15{word-spacing:29.120000pt;}
.ws4{word-spacing:30.464000pt;}
.ws55{word-spacing:30.976000pt;}
.ws28{word-spacing:31.680000pt;}
.ws1c{word-spacing:32.960000pt;}
.ws3{word-spacing:35.840000pt;}
.ws4a{word-spacing:39.168000pt;}
.ws6{word-spacing:39.808000pt;}
.wsb{word-spacing:48.896000pt;}
.ws73{word-spacing:1366.657600pt;}
._d{margin-left:-27.679147pt;}
._c{margin-left:-22.220587pt;}
._b{margin-left:-12.462613pt;}
._8{margin-left:-6.400000pt;}
._a{margin-left:-5.166080pt;}
._9{margin-left:-1.778453pt;}
._0{width:1.324800pt;}
._3{width:2.290453pt;}
._2{width:3.648000pt;}
._1{width:4.992000pt;}
._4{width:6.236053pt;}
._7{width:7.303893pt;}
._5{width:8.256000pt;}
._6{width:9.408000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.240000pt;}
.fs7{font-size:47.360000pt;}
.fs4{font-size:52.480000pt;}
.fs1{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:11.199975pt;}
.yad{bottom:85.279999pt;}
.y4e{bottom:85.919999pt;}
.y5e{bottom:91.999999pt;}
.y4b{bottom:93.279999pt;}
.y7c{bottom:94.879999pt;}
.y90{bottom:96.159999pt;}
.y77{bottom:96.479999pt;}
.y5f{bottom:101.599999pt;}
.yac{bottom:105.119999pt;}
.y4d{bottom:107.359999pt;}
.yab{bottom:114.079999pt;}
.y5d{bottom:116.639999pt;}
.y4c{bottom:116.959999pt;}
.y4a{bottom:122.400025pt;}
.y7b{bottom:124.320025pt;}
.y8f{bottom:125.280025pt;}
.y2b{bottom:125.600025pt;}
.y76{bottom:125.920025pt;}
.y5c{bottom:138.080025pt;}
.y5b{bottom:147.680025pt;}
.y49{bottom:151.840025pt;}
.yaa{bottom:152.480025pt;}
.y7a{bottom:153.440025pt;}
.y2a{bottom:154.720025pt;}
.y75{bottom:155.040025pt;}
.ya9{bottom:180.640025pt;}
.y48{bottom:180.960025pt;}
.y79{bottom:182.880025pt;}
.y29{bottom:184.160025pt;}
.y74{bottom:184.480025pt;}
.y5a{bottom:192.480025pt;}
.ya8{bottom:208.800025pt;}
.y47{bottom:210.400025pt;}
.y78{bottom:210.720025pt;}
.y8e{bottom:212.000025pt;}
.y28{bottom:213.600025pt;}
.y59{bottom:221.920025pt;}
.ya7{bottom:237.920025pt;}
.y46{bottom:239.520025pt;}
.y8d{bottom:241.440025pt;}
.y27{bottom:242.720025pt;}
.y73{bottom:243.040025pt;}
.y58{bottom:251.040025pt;}
.ya6{bottom:256.800025pt;}
.y45{bottom:268.960025pt;}
.y8c{bottom:270.560025pt;}
.y26{bottom:272.160025pt;}
.y72{bottom:272.480025pt;}
.y57{bottom:280.480025pt;}
.ya5{bottom:284.960025pt;}
.y44{bottom:298.400025pt;}
.y8b{bottom:300.000025pt;}
.y25{bottom:301.280025pt;}
.y71{bottom:301.600025pt;}
.y56{bottom:309.600025pt;}
.ya4{bottom:311.840025pt;}
.y43{bottom:327.520025pt;}
.y8a{bottom:329.120025pt;}
.y24{bottom:330.720025pt;}
.y70{bottom:331.040025pt;}
.ya3{bottom:338.720025pt;}
.y55{bottom:339.040025pt;}
.y42{bottom:356.960025pt;}
.y89{bottom:358.560025pt;}
.y23{bottom:359.840025pt;}
.y6f{bottom:360.160025pt;}
.ya2{bottom:365.600025pt;}
.y54{bottom:368.160025pt;}
.y41{bottom:386.080025pt;}
.y88{bottom:387.680025pt;}
.y22{bottom:389.280025pt;}
.y6e{bottom:389.600025pt;}
.ya1{bottom:392.160025pt;}
.y53{bottom:396.320025pt;}
.ya0{bottom:410.080025pt;}
.y40{bottom:415.520025pt;}
.y87{bottom:417.120025pt;}
.y21{bottom:418.400025pt;}
.y6d{bottom:418.720025pt;}
.y52{bottom:425.120025pt;}
.y9f{bottom:428.000025pt;}
.y3f{bottom:444.640025pt;}
.y9e{bottom:445.920025pt;}
.y86{bottom:446.560025pt;}
.y20{bottom:447.840025pt;}
.y6c{bottom:448.160025pt;}
.y51{bottom:454.560025pt;}
.y9d{bottom:463.840025pt;}
.y3e{bottom:474.080025pt;}
.y85{bottom:475.680025pt;}
.y1f{bottom:477.280025pt;}
.y9c{bottom:481.760025pt;}
.y50{bottom:483.680025pt;}
.y1e{bottom:495.840025pt;}
.y9b{bottom:499.680025pt;}
.y3d{bottom:503.200025pt;}
.y84{bottom:505.120025pt;}
.y6b{bottom:506.720025pt;}
.y4f{bottom:513.120025pt;}
.y1d{bottom:514.400025pt;}
.y9a{bottom:526.560025pt;}
.y1c{bottom:532.320025pt;}
.y3c{bottom:532.640025pt;}
.y83{bottom:534.240025pt;}
.y6a{bottom:536.160025pt;}
.y1b{bottom:550.240025pt;}
.y99{bottom:553.440025pt;}
.y3b{bottom:561.760025pt;}
.y82{bottom:563.680025pt;}
.y69{bottom:565.280025pt;}
.y1a{bottom:568.160025pt;}
.y98{bottom:580.320025pt;}
.y19{bottom:586.080025pt;}
.y3a{bottom:591.200025pt;}
.y81{bottom:592.800025pt;}
.y68{bottom:594.720025pt;}
.y18{bottom:604.000025pt;}
.y97{bottom:607.200025pt;}
.y39{bottom:620.640025pt;}
.y17{bottom:621.920025pt;}
.y80{bottom:622.240025pt;}
.y67{bottom:623.840025pt;}
.y96{bottom:634.080025pt;}
.y16{bottom:639.840025pt;}
.y38{bottom:649.760025pt;}
.y7f{bottom:651.360025pt;}
.y66{bottom:651.680025pt;}
.y15{bottom:657.760025pt;}
.y95{bottom:660.960025pt;}
.y14{bottom:675.360025pt;}
.y37{bottom:679.200025pt;}
.y65{bottom:680.800025pt;}
.y94{bottom:687.840025pt;}
.y13{bottom:693.280025pt;}
.y36{bottom:708.320025pt;}
.y64{bottom:710.240025pt;}
.y12{bottom:711.200025pt;}
.y93{bottom:714.719892pt;}
.y11{bottom:729.120025pt;}
.y35{bottom:737.760025pt;}
.y63{bottom:739.360025pt;}
.y92{bottom:741.280025pt;}
.y10{bottom:747.040025pt;}
.yf{bottom:764.960025pt;}
.y34{bottom:766.880025pt;}
.y91{bottom:768.160025pt;}
.y62{bottom:768.799892pt;}
.ye{bottom:782.880025pt;}
.y33{bottom:796.320025pt;}
.y61{bottom:797.920025pt;}
.yd{bottom:800.799892pt;}
.yc{bottom:818.719892pt;}
.y32{bottom:825.440025pt;}
.y60{bottom:825.760025pt;}
.y7e{bottom:827.360025pt;}
.yb{bottom:836.639892pt;}
.ya{bottom:854.559892pt;}
.y31{bottom:854.880025pt;}
.y7d{bottom:855.200025pt;}
.y9{bottom:872.479892pt;}
.y30{bottom:884.320025pt;}
.y8{bottom:890.400025pt;}
.y7{bottom:908.320025pt;}
.y2f{bottom:913.440025pt;}
.y6{bottom:926.240025pt;}
.y2e{bottom:942.879892pt;}
.y5{bottom:944.160025pt;}
.y4{bottom:962.080025pt;}
.y2d{bottom:972.000025pt;}
.y3{bottom:981.600025pt;}
.y2{bottom:1001.120025pt;}
.y2c{bottom:1001.440025pt;}
.he{height:23.296875pt;}
.hb{height:30.324375pt;}
.hf{height:34.479375pt;}
.h7{height:38.390625pt;}
.h6{height:39.909375pt;}
.h8{height:42.656250pt;}
.h3{height:43.875000pt;}
.hc{height:46.048125pt;}
.h5{height:47.503125pt;}
.h4{height:52.781250pt;}
.h9{height:56.156250pt;}
.hd{height:57.493125pt;}
.ha{height:64.275625pt;}
.h2{height:1100.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:771.199867pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:11.200000pt;}
.x2{left:102.400053pt;}
.x3{left:196.800133pt;}
}




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