
    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_28f958a9b91b5487123f8483.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_f8cc9968e88664809ace1a63.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_f0486a96444bec40e0fe8957.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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);}
.v4{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:21.000000px;}
.v3{vertical-align:22.500000px;}
.v1{vertical-align:31.500000px;}
.v2{vertical-align:84.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.006000px;}
.lsf{letter-spacing:0.012000px;}
.ls14{letter-spacing:0.904500px;}
.ls9{letter-spacing:0.933000px;}
.ls16{letter-spacing:1.432500px;}
.ls7{letter-spacing:1.488000px;}
.ls4{letter-spacing:1.494000px;}
.lse{letter-spacing:1.500000px;}
.ls5{letter-spacing:1.506000px;}
.lsc{letter-spacing:1.518000px;}
.ls13{letter-spacing:1.839000px;}
.ls12{letter-spacing:3.000000px;}
.lsb{letter-spacing:11.994000px;}
.ls11{letter-spacing:12.888606px;}
.lsd{letter-spacing:16.500000px;}
.ls15{letter-spacing:16.839000px;}
.ls8{letter-spacing:17.433000px;}
.ls1{letter-spacing:18.000000px;}
.ls10{letter-spacing:18.888606px;}
.ls6{letter-spacing:20.433000px;}
.ls3{letter-spacing:21.012000px;}
.lsa{letter-spacing:21.933000px;}
.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;}
}
.ws5{word-spacing:-23.520000px;}
.ws40{word-spacing:-17.766000px;}
.ws6{word-spacing:-17.640000px;}
.ws11{word-spacing:-17.430000px;}
.ws18{word-spacing:-17.406000px;}
.ws1e{word-spacing:-17.100000px;}
.ws1a{word-spacing:-16.992000px;}
.ws3b{word-spacing:-16.920000px;}
.ws4c{word-spacing:-16.848000px;}
.ws44{word-spacing:-16.830000px;}
.ws42{word-spacing:-16.776000px;}
.ws1b{word-spacing:-16.752000px;}
.wsf{word-spacing:-16.632000px;}
.ws15{word-spacing:-16.548000px;}
.ws35{word-spacing:-16.524000px;}
.ws4d{word-spacing:-16.518000px;}
.ws17{word-spacing:-16.506000px;}
.wsb{word-spacing:-16.500000px;}
.ws43{word-spacing:-16.470000px;}
.ws21{word-spacing:-16.458000px;}
.ws16{word-spacing:-16.434000px;}
.ws13{word-spacing:-16.422000px;}
.ws12{word-spacing:-16.338000px;}
.ws4b{word-spacing:-16.320000px;}
.ws10{word-spacing:-16.296000px;}
.ws3c{word-spacing:-16.290000px;}
.ws14{word-spacing:-16.254000px;}
.ws4a{word-spacing:-16.218000px;}
.wse{word-spacing:-16.170000px;}
.ws20{word-spacing:-16.122000px;}
.ws46{word-spacing:-16.008000px;}
.ws1f{word-spacing:-15.954000px;}
.ws4e{word-spacing:-15.948000px;}
.ws45{word-spacing:-15.840000px;}
.ws47{word-spacing:-15.558000px;}
.ws48{word-spacing:-15.552000px;}
.ws49{word-spacing:-15.510000px;}
.ws52{word-spacing:-15.450000px;}
.ws6c{word-spacing:-15.324000px;}
.ws70{word-spacing:-15.240000px;}
.ws68{word-spacing:-15.168000px;}
.ws6a{word-spacing:-15.126000px;}
.ws59{word-spacing:-15.120000px;}
.ws57{word-spacing:-15.114000px;}
.ws4f{word-spacing:-15.000000px;}
.ws5f{word-spacing:-14.946000px;}
.ws56{word-spacing:-14.916000px;}
.ws66{word-spacing:-14.910000px;}
.ws64{word-spacing:-14.736000px;}
.ws53{word-spacing:-14.700000px;}
.ws1{word-spacing:-14.535000px;}
.ws9{word-spacing:-14.268000px;}
.ws0{word-spacing:-14.250000px;}
.ws8{word-spacing:-14.244000px;}
.ws7{word-spacing:-13.968000px;}
.ws3d{word-spacing:-13.728000px;}
.wsa{word-spacing:-13.680000px;}
.ws3e{word-spacing:-13.608000px;}
.ws69{word-spacing:-13.524000px;}
.ws1c{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.230000px;}
.ws5b{word-spacing:-13.200000px;}
.ws1d{word-spacing:-12.480000px;}
.ws4{word-spacing:-12.372000px;}
.ws67{word-spacing:-12.168000px;}
.ws6f{word-spacing:-12.091500px;}
.wsd{word-spacing:-11.994000px;}
.ws51{word-spacing:-11.700000px;}
.ws6b{word-spacing:-11.574000px;}
.ws25{word-spacing:-11.542500px;}
.ws62{word-spacing:-11.421000px;}
.ws54{word-spacing:-11.403000px;}
.ws58{word-spacing:-11.371500px;}
.ws6e{word-spacing:-11.286000px;}
.ws5e{word-spacing:-11.281500px;}
.ws50{word-spacing:-11.250000px;}
.ws61{word-spacing:-11.227500px;}
.ws6d{word-spacing:-11.205000px;}
.ws5d{word-spacing:-11.196000px;}
.ws65{word-spacing:-11.160000px;}
.ws5c{word-spacing:-11.101500px;}
.ws63{word-spacing:-10.984500px;}
.ws55{word-spacing:-10.948500px;}
.ws5a{word-spacing:-9.337500px;}
.ws33{word-spacing:-3.594000px;}
.ws39{word-spacing:-3.120000px;}
.ws27{word-spacing:-2.610000px;}
.ws32{word-spacing:-2.592000px;}
.ws3f{word-spacing:-2.418000px;}
.ws24{word-spacing:-2.064000px;}
.ws29{word-spacing:-1.734000px;}
.ws31{word-spacing:-1.332000px;}
.ws37{word-spacing:-1.308000px;}
.ws2d{word-spacing:-1.248000px;}
.ws34{word-spacing:-0.612000px;}
.ws41{word-spacing:-0.606000px;}
.ws3{word-spacing:0.000000px;}
.ws23{word-spacing:0.636000px;}
.ws19{word-spacing:0.846000px;}
.ws3a{word-spacing:1.320000px;}
.ws2c{word-spacing:2.220000px;}
.ws36{word-spacing:2.382000px;}
.ws2b{word-spacing:3.402000px;}
.ws22{word-spacing:3.810000px;}
.ws38{word-spacing:3.978000px;}
.ws2f{word-spacing:4.866000px;}
.ws2a{word-spacing:4.902000px;}
.ws28{word-spacing:5.016000px;}
.ws2e{word-spacing:5.166000px;}
.ws30{word-spacing:5.412000px;}
.ws60{word-spacing:6.727618px;}
.ws26{word-spacing:7.524000px;}
.wsc{word-spacing:9.747000px;}
._20{margin-left:-11.647500px;}
._1f{margin-left:-10.572000px;}
._17{margin-left:-8.982000px;}
._b{margin-left:-7.494000px;}
._8{margin-left:-5.472000px;}
._d{margin-left:-4.440000px;}
._5{margin-left:-3.024000px;}
._2{margin-left:-1.512000px;}
._1{width:1.512000px;}
._4{width:3.024000px;}
._3{width:4.482000px;}
._6{width:5.892000px;}
._11{width:7.530000px;}
._12{width:8.976000px;}
._15{width:10.560000px;}
._14{width:12.000000px;}
._13{width:13.542000px;}
._9{width:14.652000px;}
._7{width:16.101000px;}
._1e{width:17.748000px;}
._18{width:19.101000px;}
._c{width:21.228000px;}
._16{width:24.054000px;}
._19{width:25.410000px;}
._1b{width:29.910000px;}
._1a{width:31.374000px;}
._10{width:47.430000px;}
._0{width:49.500000px;}
._e{width:107.358000px;}
._1d{width:181.056000px;}
._f{width:206.544000px;}
._1c{width:571.272000px;}
._a{width:595.290000px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.998500px;}
.fs9{font-size:45.000000px;}
.fs7{font-size:46.170000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:67.188000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:37.742130px;}
.y7f{bottom:38.867130px;}
.y45{bottom:40.367130px;}
.y96{bottom:41.867130px;}
.y1{bottom:51.992130px;}
.y7e{bottom:56.117130px;}
.y44{bottom:57.617130px;}
.y4c{bottom:66.242130px;}
.y7d{bottom:73.367130px;}
.y43{bottom:74.867130px;}
.y4b{bottom:80.492130px;}
.y95{bottom:89.117130px;}
.y73{bottom:90.617130px;}
.y42{bottom:92.117130px;}
.y7b{bottom:94.742130px;}
.y94{bottom:104.867130px;}
.y72{bottom:107.867130px;}
.y7a{bottom:108.992130px;}
.y41{bottom:109.367130px;}
.y7c{bottom:116.492130px;}
.y93{bottom:120.617130px;}
.y79{bottom:123.242130px;}
.y6f{bottom:125.117130px;}
.y40{bottom:126.617130px;}
.y92{bottom:136.367130px;}
.y78{bottom:137.492130px;}
.y6e{bottom:142.367130px;}
.y3f{bottom:143.867130px;}
.y77{bottom:151.742130px;}
.y91{bottom:152.117130px;}
.y6d{bottom:159.617130px;}
.y21{bottom:160.367130px;}
.y3e{bottom:161.117130px;}
.y76{bottom:165.992130px;}
.y90{bottom:167.867130px;}
.y6c{bottom:176.867130px;}
.y3d{bottom:178.367130px;}
.y75{bottom:180.242130px;}
.y20{bottom:181.367130px;}
.y8f{bottom:183.617130px;}
.y6b{bottom:194.117130px;}
.y74{bottom:194.492130px;}
.y3c{bottom:195.617130px;}
.y1f{bottom:196.367130px;}
.y8e{bottom:199.367130px;}
.y1e{bottom:211.367130px;}
.y3b{bottom:212.867130px;}
.y8d{bottom:215.117130px;}
.y1d{bottom:226.367130px;}
.y6a{bottom:228.617130px;}
.y3a{bottom:230.117130px;}
.y8c{bottom:230.867130px;}
.y1c{bottom:241.367130px;}
.y69{bottom:245.867130px;}
.y8b{bottom:246.617130px;}
.y39{bottom:247.367130px;}
.y1b{bottom:256.367130px;}
.y8a{bottom:262.367130px;}
.y68{bottom:263.117130px;}
.y38{bottom:264.617130px;}
.y1a{bottom:271.367130px;}
.y89{bottom:278.117130px;}
.y67{bottom:280.367130px;}
.y37{bottom:281.867130px;}
.y19{bottom:286.367130px;}
.y88{bottom:293.867130px;}
.y66{bottom:297.617130px;}
.y36{bottom:299.117130px;}
.y18{bottom:301.367130px;}
.y87{bottom:309.617130px;}
.y65{bottom:314.867130px;}
.y35{bottom:316.367130px;}
.y86{bottom:325.367130px;}
.y17{bottom:331.367130px;}
.y64{bottom:332.117130px;}
.y34{bottom:333.617130px;}
.y85{bottom:341.117130px;}
.y63{bottom:349.367130px;}
.y33{bottom:350.867130px;}
.y84{bottom:356.867130px;}
.y62{bottom:366.617130px;}
.y16{bottom:367.367130px;}
.y32{bottom:368.117130px;}
.y83{bottom:372.617130px;}
.y15{bottom:382.367130px;}
.y61{bottom:383.867130px;}
.y31{bottom:385.367130px;}
.y82{bottom:388.367130px;}
.y60{bottom:401.117130px;}
.y30{bottom:402.617130px;}
.y14{bottom:403.367130px;}
.y81{bottom:404.117130px;}
.y13{bottom:418.367130px;}
.y2f{bottom:419.867130px;}
.y12{bottom:433.367130px;}
.y5f{bottom:435.617130px;}
.y2e{bottom:437.117130px;}
.y80{bottom:444.242130px;}
.y11{bottom:448.367130px;}
.yac{bottom:451.367130px;}
.y5e{bottom:452.867130px;}
.y2d{bottom:454.367130px;}
.y10{bottom:463.367130px;}
.yab{bottom:467.117130px;}
.y5d{bottom:470.117130px;}
.y2c{bottom:471.617130px;}
.yf{bottom:478.367130px;}
.yaa{bottom:482.867130px;}
.y5c{bottom:487.367130px;}
.y2b{bottom:488.867130px;}
.ye{bottom:493.367130px;}
.ya9{bottom:498.617130px;}
.y5b{bottom:504.617130px;}
.y2a{bottom:506.117130px;}
.yd{bottom:508.367130px;}
.ya8{bottom:514.367130px;}
.y5a{bottom:521.867130px;}
.yc{bottom:523.367130px;}
.ya7{bottom:530.117130px;}
.y59{bottom:539.117130px;}
.y29{bottom:540.617130px;}
.ya6{bottom:545.867130px;}
.yb{bottom:553.367130px;}
.y58{bottom:556.367130px;}
.y28{bottom:557.867130px;}
.ya5{bottom:561.617130px;}
.y57{bottom:573.617130px;}
.y27{bottom:575.117130px;}
.ya4{bottom:577.367130px;}
.y56{bottom:590.867130px;}
.y26{bottom:592.367130px;}
.ya3{bottom:593.117130px;}
.y55{bottom:608.117130px;}
.ya2{bottom:608.867130px;}
.y25{bottom:609.617130px;}
.ya1{bottom:624.617130px;}
.y54{bottom:625.367130px;}
.y24{bottom:626.867130px;}
.ya0{bottom:640.367130px;}
.y53{bottom:642.617130px;}
.y23{bottom:644.117130px;}
.y9f{bottom:656.117130px;}
.ya{bottom:659.867130px;}
.y52{bottom:668.492130px;}
.y22{bottom:669.992130px;}
.y9e{bottom:671.867130px;}
.y9{bottom:674.117130px;}
.y71{bottom:677.117130px;}
.y9d{bottom:687.617130px;}
.y8{bottom:688.367130px;}
.y70{bottom:694.367130px;}
.y9c{bottom:703.367130px;}
.y7{bottom:706.367130px;}
.y51{bottom:711.617130px;}
.y9b{bottom:719.117130px;}
.y6{bottom:724.367130px;}
.y50{bottom:728.867130px;}
.y9a{bottom:734.867130px;}
.y4a{bottom:744.617130px;}
.y4f{bottom:746.117130px;}
.y99{bottom:750.617130px;}
.y48{bottom:759.617130px;}
.y4e{bottom:763.367130px;}
.y49{bottom:765.617130px;}
.y98{bottom:766.367130px;}
.y5{bottom:769.367130px;}
.y47{bottom:780.617130px;}
.y97{bottom:782.117130px;}
.y4{bottom:793.367130px;}
.y4d{bottom:797.867130px;}
.y46{bottom:803.867130px;}
.y3{bottom:845.117130px;}
.h3{height:51.216000px;}
.h2{height:57.618000px;}
.hd{height:58.536000px;}
.h7{height:60.819000px;}
.h8{height:61.788000px;}
.hf{height:64.020000px;}
.he{height:65.040000px;}
.h10{height:65.812399px;}
.h9{height:70.422000px;}
.ha{height:71.544000px;}
.hc{height:71.763390px;}
.h6{height:76.824000px;}
.h4{height:102.432000px;}
.h5{height:103.189596px;}
.hb{height:144.819000px;}
.h1{height:875.250000px;}
.h0{height:875.492130px;}
.w1{width:565.500000px;}
.w0{width:565.736235px;}
.x0{left:0.000000px;}
.x1{left:45.423735px;}
.x9{left:60.221235px;}
.x2{left:67.764735px;}
.x6{left:137.462235px;}
.x5{left:189.527235px;}
.x4{left:264.554235px;}
.x8{left:301.439235px;}
.x7{left:323.745735px;}
.x3{left:406.548735px;}
@media print{
.v4{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.666667pt;}
.v3{vertical-align:20.000000pt;}
.v1{vertical-align:28.000000pt;}
.v2{vertical-align:74.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.005333pt;}
.lsf{letter-spacing:0.010667pt;}
.ls14{letter-spacing:0.804000pt;}
.ls9{letter-spacing:0.829333pt;}
.ls16{letter-spacing:1.273333pt;}
.ls7{letter-spacing:1.322667pt;}
.ls4{letter-spacing:1.328000pt;}
.lse{letter-spacing:1.333333pt;}
.ls5{letter-spacing:1.338667pt;}
.lsc{letter-spacing:1.349333pt;}
.ls13{letter-spacing:1.634667pt;}
.ls12{letter-spacing:2.666667pt;}
.lsb{letter-spacing:10.661333pt;}
.ls11{letter-spacing:11.456539pt;}
.lsd{letter-spacing:14.666667pt;}
.ls15{letter-spacing:14.968000pt;}
.ls8{letter-spacing:15.496000pt;}
.ls1{letter-spacing:16.000000pt;}
.ls10{letter-spacing:16.789872pt;}
.ls6{letter-spacing:18.162667pt;}
.ls3{letter-spacing:18.677333pt;}
.lsa{letter-spacing:19.496000pt;}
.ws5{word-spacing:-20.906667pt;}
.ws40{word-spacing:-15.792000pt;}
.ws6{word-spacing:-15.680000pt;}
.ws11{word-spacing:-15.493333pt;}
.ws18{word-spacing:-15.472000pt;}
.ws1e{word-spacing:-15.200000pt;}
.ws1a{word-spacing:-15.104000pt;}
.ws3b{word-spacing:-15.040000pt;}
.ws4c{word-spacing:-14.976000pt;}
.ws44{word-spacing:-14.960000pt;}
.ws42{word-spacing:-14.912000pt;}
.ws1b{word-spacing:-14.890667pt;}
.wsf{word-spacing:-14.784000pt;}
.ws15{word-spacing:-14.709333pt;}
.ws35{word-spacing:-14.688000pt;}
.ws4d{word-spacing:-14.682667pt;}
.ws17{word-spacing:-14.672000pt;}
.wsb{word-spacing:-14.666667pt;}
.ws43{word-spacing:-14.640000pt;}
.ws21{word-spacing:-14.629333pt;}
.ws16{word-spacing:-14.608000pt;}
.ws13{word-spacing:-14.597333pt;}
.ws12{word-spacing:-14.522667pt;}
.ws4b{word-spacing:-14.506667pt;}
.ws10{word-spacing:-14.485333pt;}
.ws3c{word-spacing:-14.480000pt;}
.ws14{word-spacing:-14.448000pt;}
.ws4a{word-spacing:-14.416000pt;}
.wse{word-spacing:-14.373333pt;}
.ws20{word-spacing:-14.330667pt;}
.ws46{word-spacing:-14.229333pt;}
.ws1f{word-spacing:-14.181333pt;}
.ws4e{word-spacing:-14.176000pt;}
.ws45{word-spacing:-14.080000pt;}
.ws47{word-spacing:-13.829333pt;}
.ws48{word-spacing:-13.824000pt;}
.ws49{word-spacing:-13.786667pt;}
.ws52{word-spacing:-13.733333pt;}
.ws6c{word-spacing:-13.621333pt;}
.ws70{word-spacing:-13.546667pt;}
.ws68{word-spacing:-13.482667pt;}
.ws6a{word-spacing:-13.445333pt;}
.ws59{word-spacing:-13.440000pt;}
.ws57{word-spacing:-13.434667pt;}
.ws4f{word-spacing:-13.333333pt;}
.ws5f{word-spacing:-13.285333pt;}
.ws56{word-spacing:-13.258667pt;}
.ws66{word-spacing:-13.253333pt;}
.ws64{word-spacing:-13.098667pt;}
.ws53{word-spacing:-13.066667pt;}
.ws1{word-spacing:-12.920000pt;}
.ws9{word-spacing:-12.682667pt;}
.ws0{word-spacing:-12.666667pt;}
.ws8{word-spacing:-12.661333pt;}
.ws7{word-spacing:-12.416000pt;}
.ws3d{word-spacing:-12.202667pt;}
.wsa{word-spacing:-12.160000pt;}
.ws3e{word-spacing:-12.096000pt;}
.ws69{word-spacing:-12.021333pt;}
.ws1c{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.760000pt;}
.ws5b{word-spacing:-11.733333pt;}
.ws1d{word-spacing:-11.093333pt;}
.ws4{word-spacing:-10.997333pt;}
.ws67{word-spacing:-10.816000pt;}
.ws6f{word-spacing:-10.748000pt;}
.wsd{word-spacing:-10.661333pt;}
.ws51{word-spacing:-10.400000pt;}
.ws6b{word-spacing:-10.288000pt;}
.ws25{word-spacing:-10.260000pt;}
.ws62{word-spacing:-10.152000pt;}
.ws54{word-spacing:-10.136000pt;}
.ws58{word-spacing:-10.108000pt;}
.ws6e{word-spacing:-10.032000pt;}
.ws5e{word-spacing:-10.028000pt;}
.ws50{word-spacing:-10.000000pt;}
.ws61{word-spacing:-9.980000pt;}
.ws6d{word-spacing:-9.960000pt;}
.ws5d{word-spacing:-9.952000pt;}
.ws65{word-spacing:-9.920000pt;}
.ws5c{word-spacing:-9.868000pt;}
.ws63{word-spacing:-9.764000pt;}
.ws55{word-spacing:-9.732000pt;}
.ws5a{word-spacing:-8.300000pt;}
.ws33{word-spacing:-3.194667pt;}
.ws39{word-spacing:-2.773333pt;}
.ws27{word-spacing:-2.320000pt;}
.ws32{word-spacing:-2.304000pt;}
.ws3f{word-spacing:-2.149333pt;}
.ws24{word-spacing:-1.834667pt;}
.ws29{word-spacing:-1.541333pt;}
.ws31{word-spacing:-1.184000pt;}
.ws37{word-spacing:-1.162667pt;}
.ws2d{word-spacing:-1.109333pt;}
.ws34{word-spacing:-0.544000pt;}
.ws41{word-spacing:-0.538667pt;}
.ws3{word-spacing:0.000000pt;}
.ws23{word-spacing:0.565333pt;}
.ws19{word-spacing:0.752000pt;}
.ws3a{word-spacing:1.173333pt;}
.ws2c{word-spacing:1.973333pt;}
.ws36{word-spacing:2.117333pt;}
.ws2b{word-spacing:3.024000pt;}
.ws22{word-spacing:3.386667pt;}
.ws38{word-spacing:3.536000pt;}
.ws2f{word-spacing:4.325333pt;}
.ws2a{word-spacing:4.357333pt;}
.ws28{word-spacing:4.458667pt;}
.ws2e{word-spacing:4.592000pt;}
.ws30{word-spacing:4.810667pt;}
.ws60{word-spacing:5.980105pt;}
.ws26{word-spacing:6.688000pt;}
.wsc{word-spacing:8.664000pt;}
._20{margin-left:-10.353333pt;}
._1f{margin-left:-9.397333pt;}
._17{margin-left:-7.984000pt;}
._b{margin-left:-6.661333pt;}
._8{margin-left:-4.864000pt;}
._d{margin-left:-3.946667pt;}
._5{margin-left:-2.688000pt;}
._2{margin-left:-1.344000pt;}
._1{width:1.344000pt;}
._4{width:2.688000pt;}
._3{width:3.984000pt;}
._6{width:5.237333pt;}
._11{width:6.693333pt;}
._12{width:7.978667pt;}
._15{width:9.386667pt;}
._14{width:10.666667pt;}
._13{width:12.037333pt;}
._9{width:13.024000pt;}
._7{width:14.312000pt;}
._1e{width:15.776000pt;}
._18{width:16.978667pt;}
._c{width:18.869333pt;}
._16{width:21.381333pt;}
._19{width:22.586667pt;}
._1b{width:26.586667pt;}
._1a{width:27.888000pt;}
._10{width:42.160000pt;}
._0{width:44.000000pt;}
._e{width:95.429333pt;}
._1d{width:160.938667pt;}
._f{width:183.594667pt;}
._1c{width:507.797333pt;}
._a{width:529.146667pt;}
.fsa{font-size:37.332000pt;}
.fs9{font-size:40.000000pt;}
.fs7{font-size:41.040000pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:59.722667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.548560pt;}
.y7f{bottom:34.548560pt;}
.y45{bottom:35.881893pt;}
.y96{bottom:37.215227pt;}
.y1{bottom:46.215227pt;}
.y7e{bottom:49.881893pt;}
.y44{bottom:51.215227pt;}
.y4c{bottom:58.881893pt;}
.y7d{bottom:65.215227pt;}
.y43{bottom:66.548560pt;}
.y4b{bottom:71.548560pt;}
.y95{bottom:79.215227pt;}
.y73{bottom:80.548560pt;}
.y42{bottom:81.881893pt;}
.y7b{bottom:84.215227pt;}
.y94{bottom:93.215227pt;}
.y72{bottom:95.881893pt;}
.y7a{bottom:96.881893pt;}
.y41{bottom:97.215227pt;}
.y7c{bottom:103.548560pt;}
.y93{bottom:107.215227pt;}
.y79{bottom:109.548560pt;}
.y6f{bottom:111.215227pt;}
.y40{bottom:112.548560pt;}
.y92{bottom:121.215227pt;}
.y78{bottom:122.215227pt;}
.y6e{bottom:126.548560pt;}
.y3f{bottom:127.881893pt;}
.y77{bottom:134.881893pt;}
.y91{bottom:135.215227pt;}
.y6d{bottom:141.881893pt;}
.y21{bottom:142.548560pt;}
.y3e{bottom:143.215227pt;}
.y76{bottom:147.548560pt;}
.y90{bottom:149.215227pt;}
.y6c{bottom:157.215227pt;}
.y3d{bottom:158.548560pt;}
.y75{bottom:160.215227pt;}
.y20{bottom:161.215227pt;}
.y8f{bottom:163.215227pt;}
.y6b{bottom:172.548560pt;}
.y74{bottom:172.881893pt;}
.y3c{bottom:173.881893pt;}
.y1f{bottom:174.548560pt;}
.y8e{bottom:177.215227pt;}
.y1e{bottom:187.881893pt;}
.y3b{bottom:189.215227pt;}
.y8d{bottom:191.215227pt;}
.y1d{bottom:201.215227pt;}
.y6a{bottom:203.215227pt;}
.y3a{bottom:204.548560pt;}
.y8c{bottom:205.215227pt;}
.y1c{bottom:214.548560pt;}
.y69{bottom:218.548560pt;}
.y8b{bottom:219.215227pt;}
.y39{bottom:219.881893pt;}
.y1b{bottom:227.881893pt;}
.y8a{bottom:233.215227pt;}
.y68{bottom:233.881893pt;}
.y38{bottom:235.215227pt;}
.y1a{bottom:241.215227pt;}
.y89{bottom:247.215227pt;}
.y67{bottom:249.215227pt;}
.y37{bottom:250.548560pt;}
.y19{bottom:254.548560pt;}
.y88{bottom:261.215227pt;}
.y66{bottom:264.548560pt;}
.y36{bottom:265.881893pt;}
.y18{bottom:267.881893pt;}
.y87{bottom:275.215227pt;}
.y65{bottom:279.881893pt;}
.y35{bottom:281.215227pt;}
.y86{bottom:289.215227pt;}
.y17{bottom:294.548560pt;}
.y64{bottom:295.215227pt;}
.y34{bottom:296.548560pt;}
.y85{bottom:303.215227pt;}
.y63{bottom:310.548560pt;}
.y33{bottom:311.881893pt;}
.y84{bottom:317.215227pt;}
.y62{bottom:325.881893pt;}
.y16{bottom:326.548560pt;}
.y32{bottom:327.215227pt;}
.y83{bottom:331.215227pt;}
.y15{bottom:339.881893pt;}
.y61{bottom:341.215227pt;}
.y31{bottom:342.548560pt;}
.y82{bottom:345.215227pt;}
.y60{bottom:356.548560pt;}
.y30{bottom:357.881893pt;}
.y14{bottom:358.548560pt;}
.y81{bottom:359.215227pt;}
.y13{bottom:371.881893pt;}
.y2f{bottom:373.215227pt;}
.y12{bottom:385.215227pt;}
.y5f{bottom:387.215227pt;}
.y2e{bottom:388.548560pt;}
.y80{bottom:394.881893pt;}
.y11{bottom:398.548560pt;}
.yac{bottom:401.215227pt;}
.y5e{bottom:402.548560pt;}
.y2d{bottom:403.881893pt;}
.y10{bottom:411.881893pt;}
.yab{bottom:415.215227pt;}
.y5d{bottom:417.881893pt;}
.y2c{bottom:419.215227pt;}
.yf{bottom:425.215227pt;}
.yaa{bottom:429.215227pt;}
.y5c{bottom:433.215227pt;}
.y2b{bottom:434.548560pt;}
.ye{bottom:438.548560pt;}
.ya9{bottom:443.215227pt;}
.y5b{bottom:448.548560pt;}
.y2a{bottom:449.881893pt;}
.yd{bottom:451.881893pt;}
.ya8{bottom:457.215227pt;}
.y5a{bottom:463.881893pt;}
.yc{bottom:465.215227pt;}
.ya7{bottom:471.215227pt;}
.y59{bottom:479.215227pt;}
.y29{bottom:480.548560pt;}
.ya6{bottom:485.215227pt;}
.yb{bottom:491.881893pt;}
.y58{bottom:494.548560pt;}
.y28{bottom:495.881893pt;}
.ya5{bottom:499.215227pt;}
.y57{bottom:509.881893pt;}
.y27{bottom:511.215227pt;}
.ya4{bottom:513.215227pt;}
.y56{bottom:525.215227pt;}
.y26{bottom:526.548560pt;}
.ya3{bottom:527.215227pt;}
.y55{bottom:540.548560pt;}
.ya2{bottom:541.215227pt;}
.y25{bottom:541.881893pt;}
.ya1{bottom:555.215227pt;}
.y54{bottom:555.881893pt;}
.y24{bottom:557.215227pt;}
.ya0{bottom:569.215227pt;}
.y53{bottom:571.215227pt;}
.y23{bottom:572.548560pt;}
.y9f{bottom:583.215227pt;}
.ya{bottom:586.548560pt;}
.y52{bottom:594.215227pt;}
.y22{bottom:595.548560pt;}
.y9e{bottom:597.215227pt;}
.y9{bottom:599.215227pt;}
.y71{bottom:601.881893pt;}
.y9d{bottom:611.215227pt;}
.y8{bottom:611.881893pt;}
.y70{bottom:617.215227pt;}
.y9c{bottom:625.215227pt;}
.y7{bottom:627.881893pt;}
.y51{bottom:632.548560pt;}
.y9b{bottom:639.215227pt;}
.y6{bottom:643.881893pt;}
.y50{bottom:647.881893pt;}
.y9a{bottom:653.215227pt;}
.y4a{bottom:661.881893pt;}
.y4f{bottom:663.215227pt;}
.y99{bottom:667.215227pt;}
.y48{bottom:675.215227pt;}
.y4e{bottom:678.548560pt;}
.y49{bottom:680.548560pt;}
.y98{bottom:681.215227pt;}
.y5{bottom:683.881893pt;}
.y47{bottom:693.881893pt;}
.y97{bottom:695.215227pt;}
.y4{bottom:705.215227pt;}
.y4d{bottom:709.215227pt;}
.y46{bottom:714.548560pt;}
.y3{bottom:751.215227pt;}
.h3{height:45.525333pt;}
.h2{height:51.216000pt;}
.hd{height:52.032000pt;}
.h7{height:54.061333pt;}
.h8{height:54.922667pt;}
.hf{height:56.906667pt;}
.he{height:57.813333pt;}
.h10{height:58.499911pt;}
.h9{height:62.597333pt;}
.ha{height:63.594667pt;}
.hc{height:63.789680pt;}
.h6{height:68.288000pt;}
.h4{height:91.050667pt;}
.h5{height:91.724085pt;}
.hb{height:128.728000pt;}
.h1{height:778.000000pt;}
.h0{height:778.215227pt;}
.w1{width:502.666667pt;}
.w0{width:502.876653pt;}
.x0{left:0.000000pt;}
.x1{left:40.376653pt;}
.x9{left:53.529987pt;}
.x2{left:60.235320pt;}
.x6{left:122.188653pt;}
.x5{left:168.468653pt;}
.x4{left:235.159320pt;}
.x8{left:267.945987pt;}
.x7{left:287.773987pt;}
.x3{left:361.376653pt;}
}




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