
    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_8d520d3177b18182bc674177.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.201172;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_9d7280349ef3a4c5344627b7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5e6bfe8a542882a3102f26b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_97a84fbac813788c7b6962c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_6e856b8f300145ddd4e1eeb2.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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_5810b6ea76b42b9de16059c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_bd5be194a95bc3de6eafc9aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.077148;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:ffa;src:url('chunks/assets/font_b2ca25fb07b5e4e12cf34b31.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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:ffb;src:url('chunks/assets/font_c952dcf13e049327fab06de6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.206000px;}
.lsb{letter-spacing:-1.068000px;}
.lse{letter-spacing:-0.966000px;}
.lsc{letter-spacing:-0.768000px;}
.lsf{letter-spacing:-0.732000px;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.463800px;}
.ls4{letter-spacing:-0.454800px;}
.ls8{letter-spacing:-0.432000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.429000px;}
.ls1{letter-spacing:0.535680px;}
.ls0{letter-spacing:0.593280px;}
.ls10{letter-spacing:0.708000px;}
.ls12{letter-spacing:0.720000px;}
.ls11{letter-spacing:63.838560px;}
.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;}
}
.ws11{word-spacing:-60.480000px;}
.wsf{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.488000px;}
.ws6{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.399240px;}
.ws1{word-spacing:-14.515440px;}
.ws2{word-spacing:-14.506440px;}
.ws3{word-spacing:-13.680000px;}
.wse{word-spacing:-13.074720px;}
.wsd{word-spacing:-12.366720px;}
.ws4{word-spacing:-12.240000px;}
.wsc{word-spacing:-11.634720px;}
.ws9{word-spacing:-11.598720px;}
.wsb{word-spacing:-11.400720px;}
.ws8{word-spacing:-11.298720px;}
.wsa{word-spacing:-11.160720px;}
.ws10{word-spacing:0.000000px;}
._16{margin-left:-3.972720px;}
._3{margin-left:-2.931840px;}
._0{margin-left:-1.483200px;}
._1{width:1.112880px;}
._4{width:2.394960px;}
._d{width:3.448080px;}
._a{width:4.504320px;}
._b{width:5.583120px;}
._14{width:7.087680px;}
._8{width:8.637120px;}
._9{width:9.776400px;}
._13{width:10.969440px;}
._2{width:12.068640px;}
._c{width:13.184880px;}
._f{width:14.334960px;}
._12{width:15.490320px;}
._15{width:18.201600px;}
._11{width:19.235520px;}
._17{width:20.678640px;}
._e{width:21.898320px;}
._7{width:22.927680px;}
._6{width:24.261120px;}
._5{width:25.395840px;}
._10{width:29.476800px;}
._19{width:44.976960px;}
._18{width:46.760160px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(46,116,181);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs4{font-size:30.240000px;}
.fs1{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.320000px;}
.y2{bottom:5.040000px;}
.y3{bottom:82.116000px;}
.y6{bottom:97.596000px;}
.y2d{bottom:115.956000px;}
.y83{bottom:121.716000px;}
.yc4{bottom:127.476000px;}
.y55{bottom:127.836000px;}
.ya5{bottom:132.876000px;}
.y2c{bottom:135.036000px;}
.y68{bottom:137.196000px;}
.y82{bottom:140.796000px;}
.y54{bottom:146.916000px;}
.ya4{bottom:151.950000px;}
.y2b{bottom:154.110000px;}
.y67{bottom:156.630000px;}
.y81{bottom:159.870000px;}
.y53{bottom:165.990000px;}
.yc3{bottom:167.430000px;}
.ya3{bottom:170.670000px;}
.y2a{bottom:172.830000px;}
.yc2{bottom:186.510000px;}
.y80{bottom:199.875000px;}
.y52{bottom:205.635000px;}
.ya2{bottom:210.675000px;}
.y29{bottom:212.835000px;}
.y7f{bottom:218.955000px;}
.y51{bottom:224.715000px;}
.yc1{bottom:226.515000px;}
.ya1{bottom:229.755000px;}
.y28{bottom:231.915000px;}
.y50{bottom:243.795000px;}
.ya0{bottom:248.835000px;}
.y27{bottom:250.995000px;}
.y7e{bottom:258.555000px;}
.y4f{bottom:262.875000px;}
.yc0{bottom:267.195000px;}
.y9f{bottom:267.915000px;}
.y26{bottom:269.715000px;}
.y9e{bottom:286.635000px;}
.y7d{bottom:298.515000px;}
.y4e{bottom:302.835000px;}
.ybf{bottom:307.515000px;}
.y25{bottom:309.675000px;}
.y7c{bottom:317.595000px;}
.y4d{bottom:321.915000px;}
.y9d{bottom:326.625000px;}
.y24{bottom:328.785000px;}
.y4c{bottom:340.665000px;}
.y9c{bottom:345.705000px;}
.y23{bottom:347.865000px;}
.y7b{bottom:357.585000px;}
.y4b{bottom:359.745000px;}
.y9b{bottom:364.785000px;}
.y7a{bottom:376.665000px;}
.y9a{bottom:383.505000px;}
.ybe{bottom:385.665000px;}
.y22{bottom:387.825000px;}
.y79{bottom:395.745000px;}
.y4a{bottom:399.705000px;}
.y99{bottom:402.585000px;}
.ybd{bottom:404.745000px;}
.y21{bottom:406.905000px;}
.y78{bottom:414.465000px;}
.y49{bottom:418.785000px;}
.ybc{bottom:423.465000px;}
.y20{bottom:425.625000px;}
.y48{bottom:437.505000px;}
.y98{bottom:442.545000px;}
.y1f{bottom:444.705000px;}
.y77{bottom:454.470000px;}
.y47{bottom:456.630000px;}
.y97{bottom:461.670000px;}
.y46{bottom:475.710000px;}
.y96{bottom:480.750000px;}
.y1e{bottom:484.710000px;}
.y76{bottom:494.430000px;}
.y95{bottom:499.470000px;}
.y1d{bottom:503.790000px;}
.y45{bottom:515.670000px;}
.y94{bottom:518.550000px;}
.ybb{bottom:520.350000px;}
.y1c{bottom:522.870000px;}
.y75{bottom:534.390000px;}
.y93{bottom:537.630000px;}
.yba{bottom:539.430000px;}
.y1b{bottom:541.590000px;}
.y44{bottom:555.630000px;}
.yb9{bottom:558.510000px;}
.y66{bottom:572.550000px;}
.y74{bottom:574.350000px;}
.y92{bottom:577.260000px;}
.yb8{bottom:577.620000px;}
.y1a{bottom:581.580000px;}
.y73{bottom:593.460000px;}
.y43{bottom:595.620000px;}
.y91{bottom:596.340000px;}
.y65{bottom:612.540000px;}
.y90{bottom:615.420000px;}
.yb7{bottom:617.220000px;}
.y19{bottom:624.060000px;}
.y64{bottom:631.620000px;}
.y8f{bottom:634.500000px;}
.y42{bottom:635.580000px;}
.yb6{bottom:636.300000px;}
.y63{bottom:650.340000px;}
.y8e{bottom:653.220000px;}
.y41{bottom:654.660000px;}
.yb5{bottom:655.380000px;}
.y18{bottom:664.020000px;}
.y62{bottom:669.420000px;}
.y72{bottom:671.220000px;}
.y8d{bottom:672.300000px;}
.y40{bottom:673.380000px;}
.yb4{bottom:674.460000px;}
.ycf{bottom:686.340000px;}
.y8c{bottom:691.380000px;}
.y3f{bottom:692.460000px;}
.yb3{bottom:693.540000px;}
.y17{bottom:704.010000px;}
.y61{bottom:709.410000px;}
.y71{bottom:711.570000px;}
.yce{bottom:726.330000px;}
.y70{bottom:730.650000px;}
.y8b{bottom:731.370000px;}
.y3e{bottom:732.450000px;}
.yb2{bottom:734.250000px;}
.y16{bottom:743.970000px;}
.ycd{bottom:745.410000px;}
.y60{bottom:749.370000px;}
.y8a{bottom:750.450000px;}
.y3d{bottom:751.530000px;}
.y5f{bottom:768.450000px;}
.y89{bottom:769.170000px;}
.y6f{bottom:770.250000px;}
.y3c{bottom:770.610000px;}
.yb1{bottom:774.570000px;}
.ycc{bottom:785.370000px;}
.y15{bottom:786.090000px;}
.y5e{bottom:787.530000px;}
.y88{bottom:788.250000px;}
.y3b{bottom:789.330000px;}
.yb0{bottom:793.650000px;}
.ycb{bottom:804.450000px;}
.y87{bottom:807.330000px;}
.y6e{bottom:808.410000px;}
.y14{bottom:812.010000px;}
.yaf{bottom:812.370000px;}
.y86{bottom:826.050000px;}
.y5d{bottom:827.175000px;}
.y6d{bottom:827.535000px;}
.y3a{bottom:829.335000px;}
.yae{bottom:831.495000px;}
.y13{bottom:837.615000px;}
.yca{bottom:844.095000px;}
.y85{bottom:845.175000px;}
.y6c{bottom:846.255000px;}
.y39{bottom:848.415000px;}
.yad{bottom:850.575000px;}
.yc9{bottom:863.175000px;}
.y5c{bottom:867.135000px;}
.y38{bottom:867.495000px;}
.y84{bottom:885.855000px;}
.y6b{bottom:886.215000px;}
.yac{bottom:890.175000px;}
.y12{bottom:894.135000px;}
.yc8{bottom:903.135000px;}
.y37{bottom:907.095000px;}
.yab{bottom:909.255000px;}
.y36{bottom:926.175000px;}
.yaa{bottom:928.335000px;}
.yc7{bottom:943.095000px;}
.y35{bottom:945.255000px;}
.ya9{bottom:947.415000px;}
.y11{bottom:954.645000px;}
.y34{bottom:964.365000px;}
.y10{bottom:965.805000px;}
.y5b{bottom:966.165000px;}
.yc6{bottom:983.085000px;}
.y5a{bottom:985.245000px;}
.yf{bottom:991.005000px;}
.yc5{bottom:1002.165000px;}
.y33{bottom:1004.325000px;}
.ya8{bottom:1006.125000px;}
.ye{bottom:1012.245000px;}
.y32{bottom:1023.405000px;}
.ya7{bottom:1025.205000px;}
.yd{bottom:1034.205000px;}
.y31{bottom:1042.125000px;}
.y59{bottom:1044.285000px;}
.yc{bottom:1056.165000px;}
.y30{bottom:1061.205000px;}
.y6a{bottom:1063.005000px;}
.ya6{bottom:1063.365000px;}
.yb{bottom:1073.445000px;}
.y69{bottom:1082.130000px;}
.y58{bottom:1084.290000px;}
.ya{bottom:1090.770000px;}
.y2f{bottom:1101.210000px;}
.y57{bottom:1103.370000px;}
.y9{bottom:1108.050000px;}
.y56{bottom:1122.090000px;}
.y8{bottom:1125.330000px;}
.y2e{bottom:1141.170000px;}
.y7{bottom:1142.610000px;}
.y1{bottom:1188.330000px;}
.y5{bottom:1206.000000px;}
.h4{height:18.000000px;}
.h2{height:19.836000px;}
.h9{height:22.960547px;}
.h8{height:41.547656px;}
.ha{height:45.921094px;}
.h5{height:48.013594px;}
.h6{height:53.067656px;}
.hd{height:58.121719px;}
.hc{height:58.833281px;}
.he{height:63.070312px;}
.h3{height:67.824844px;}
.h7{height:73.722656px;}
.hb{height:85.518281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:37.800000px;}
.w3{width:142.632000px;}
.w2{width:558.930000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x5{left:4.680000px;}
.x3{left:104.796000px;}
.x6{left:106.235987px;}
.xc{left:113.435987px;}
.xe{left:133.235987px;}
.xb{left:144.791987px;}
.x1{left:167.115000px;}
.x7{left:218.954987px;}
.xd{left:244.904987px;}
.xa{left:283.784987px;}
.x9{left:356.189987px;}
.x8{left:386.069987px;}
.xf{left:675.614987px;}
.x4{left:755.565000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.072000pt;}
.lsb{letter-spacing:-0.949333pt;}
.lse{letter-spacing:-0.858667pt;}
.lsc{letter-spacing:-0.682667pt;}
.lsf{letter-spacing:-0.650667pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls4{letter-spacing:-0.404267pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.381333pt;}
.ls1{letter-spacing:0.476160pt;}
.ls0{letter-spacing:0.527360pt;}
.ls10{letter-spacing:0.629333pt;}
.ls12{letter-spacing:0.640000pt;}
.ls11{letter-spacing:56.745387pt;}
.ws11{word-spacing:-53.760000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.656000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.688213pt;}
.ws1{word-spacing:-12.902613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws3{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.621973pt;}
.wsd{word-spacing:-10.992640pt;}
.ws4{word-spacing:-10.880000pt;}
.wsc{word-spacing:-10.341973pt;}
.ws9{word-spacing:-10.309973pt;}
.wsb{word-spacing:-10.133973pt;}
.ws8{word-spacing:-10.043307pt;}
.wsa{word-spacing:-9.920640pt;}
.ws10{word-spacing:0.000000pt;}
._16{margin-left:-3.531307pt;}
._3{margin-left:-2.606080pt;}
._0{margin-left:-1.318400pt;}
._1{width:0.989227pt;}
._4{width:2.128853pt;}
._d{width:3.064960pt;}
._a{width:4.003840pt;}
._b{width:4.962773pt;}
._14{width:6.300160pt;}
._8{width:7.677440pt;}
._9{width:8.690133pt;}
._13{width:9.750613pt;}
._2{width:10.727680pt;}
._c{width:11.719893pt;}
._f{width:12.742187pt;}
._12{width:13.769173pt;}
._15{width:16.179200pt;}
._11{width:17.098240pt;}
._17{width:18.381013pt;}
._e{width:19.465173pt;}
._7{width:20.380160pt;}
._6{width:21.565440pt;}
._5{width:22.574080pt;}
._10{width:26.201600pt;}
._19{width:39.979520pt;}
._18{width:41.564587pt;}
.fs4{font-size:26.880000pt;}
.fs1{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.840000pt;}
.y2{bottom:4.480000pt;}
.y3{bottom:72.992000pt;}
.y6{bottom:86.752000pt;}
.y2d{bottom:103.072000pt;}
.y83{bottom:108.192000pt;}
.yc4{bottom:113.312000pt;}
.y55{bottom:113.632000pt;}
.ya5{bottom:118.112000pt;}
.y2c{bottom:120.032000pt;}
.y68{bottom:121.952000pt;}
.y82{bottom:125.152000pt;}
.y54{bottom:130.592000pt;}
.ya4{bottom:135.066667pt;}
.y2b{bottom:136.986667pt;}
.y67{bottom:139.226667pt;}
.y81{bottom:142.106667pt;}
.y53{bottom:147.546667pt;}
.yc3{bottom:148.826667pt;}
.ya3{bottom:151.706667pt;}
.y2a{bottom:153.626667pt;}
.yc2{bottom:165.786667pt;}
.y80{bottom:177.666667pt;}
.y52{bottom:182.786667pt;}
.ya2{bottom:187.266667pt;}
.y29{bottom:189.186667pt;}
.y7f{bottom:194.626667pt;}
.y51{bottom:199.746667pt;}
.yc1{bottom:201.346667pt;}
.ya1{bottom:204.226667pt;}
.y28{bottom:206.146667pt;}
.y50{bottom:216.706667pt;}
.ya0{bottom:221.186667pt;}
.y27{bottom:223.106667pt;}
.y7e{bottom:229.826667pt;}
.y4f{bottom:233.666667pt;}
.yc0{bottom:237.506667pt;}
.y9f{bottom:238.146667pt;}
.y26{bottom:239.746667pt;}
.y9e{bottom:254.786667pt;}
.y7d{bottom:265.346667pt;}
.y4e{bottom:269.186667pt;}
.ybf{bottom:273.346667pt;}
.y25{bottom:275.266667pt;}
.y7c{bottom:282.306667pt;}
.y4d{bottom:286.146667pt;}
.y9d{bottom:290.333333pt;}
.y24{bottom:292.253333pt;}
.y4c{bottom:302.813333pt;}
.y9c{bottom:307.293333pt;}
.y23{bottom:309.213333pt;}
.y7b{bottom:317.853333pt;}
.y4b{bottom:319.773333pt;}
.y9b{bottom:324.253333pt;}
.y7a{bottom:334.813333pt;}
.y9a{bottom:340.893333pt;}
.ybe{bottom:342.813333pt;}
.y22{bottom:344.733333pt;}
.y79{bottom:351.773333pt;}
.y4a{bottom:355.293333pt;}
.y99{bottom:357.853333pt;}
.ybd{bottom:359.773333pt;}
.y21{bottom:361.693333pt;}
.y78{bottom:368.413333pt;}
.y49{bottom:372.253333pt;}
.ybc{bottom:376.413333pt;}
.y20{bottom:378.333333pt;}
.y48{bottom:388.893333pt;}
.y98{bottom:393.373333pt;}
.y1f{bottom:395.293333pt;}
.y77{bottom:403.973333pt;}
.y47{bottom:405.893333pt;}
.y97{bottom:410.373333pt;}
.y46{bottom:422.853333pt;}
.y96{bottom:427.333333pt;}
.y1e{bottom:430.853333pt;}
.y76{bottom:439.493333pt;}
.y95{bottom:443.973333pt;}
.y1d{bottom:447.813333pt;}
.y45{bottom:458.373333pt;}
.y94{bottom:460.933333pt;}
.ybb{bottom:462.533333pt;}
.y1c{bottom:464.773333pt;}
.y75{bottom:475.013333pt;}
.y93{bottom:477.893333pt;}
.yba{bottom:479.493333pt;}
.y1b{bottom:481.413333pt;}
.y44{bottom:493.893333pt;}
.yb9{bottom:496.453333pt;}
.y66{bottom:508.933333pt;}
.y74{bottom:510.533333pt;}
.y92{bottom:513.120000pt;}
.yb8{bottom:513.440000pt;}
.y1a{bottom:516.960000pt;}
.y73{bottom:527.520000pt;}
.y43{bottom:529.440000pt;}
.y91{bottom:530.080000pt;}
.y65{bottom:544.480000pt;}
.y90{bottom:547.040000pt;}
.yb7{bottom:548.640000pt;}
.y19{bottom:554.720000pt;}
.y64{bottom:561.440000pt;}
.y8f{bottom:564.000000pt;}
.y42{bottom:564.960000pt;}
.yb6{bottom:565.600000pt;}
.y63{bottom:578.080000pt;}
.y8e{bottom:580.640000pt;}
.y41{bottom:581.920000pt;}
.yb5{bottom:582.560000pt;}
.y18{bottom:590.240000pt;}
.y62{bottom:595.040000pt;}
.y72{bottom:596.640000pt;}
.y8d{bottom:597.600000pt;}
.y40{bottom:598.560000pt;}
.yb4{bottom:599.520000pt;}
.ycf{bottom:610.080000pt;}
.y8c{bottom:614.560000pt;}
.y3f{bottom:615.520000pt;}
.yb3{bottom:616.480000pt;}
.y17{bottom:625.786667pt;}
.y61{bottom:630.586667pt;}
.y71{bottom:632.506667pt;}
.yce{bottom:645.626667pt;}
.y70{bottom:649.466667pt;}
.y8b{bottom:650.106667pt;}
.y3e{bottom:651.066667pt;}
.yb2{bottom:652.666667pt;}
.y16{bottom:661.306667pt;}
.ycd{bottom:662.586667pt;}
.y60{bottom:666.106667pt;}
.y8a{bottom:667.066667pt;}
.y3d{bottom:668.026667pt;}
.y5f{bottom:683.066667pt;}
.y89{bottom:683.706667pt;}
.y6f{bottom:684.666667pt;}
.y3c{bottom:684.986667pt;}
.yb1{bottom:688.506667pt;}
.ycc{bottom:698.106667pt;}
.y15{bottom:698.746667pt;}
.y5e{bottom:700.026667pt;}
.y88{bottom:700.666667pt;}
.y3b{bottom:701.626667pt;}
.yb0{bottom:705.466667pt;}
.ycb{bottom:715.066667pt;}
.y87{bottom:717.626667pt;}
.y6e{bottom:718.586667pt;}
.y14{bottom:721.786667pt;}
.yaf{bottom:722.106667pt;}
.y86{bottom:734.266667pt;}
.y5d{bottom:735.266667pt;}
.y6d{bottom:735.586667pt;}
.y3a{bottom:737.186667pt;}
.yae{bottom:739.106667pt;}
.y13{bottom:744.546667pt;}
.yca{bottom:750.306667pt;}
.y85{bottom:751.266667pt;}
.y6c{bottom:752.226667pt;}
.y39{bottom:754.146667pt;}
.yad{bottom:756.066667pt;}
.yc9{bottom:767.266667pt;}
.y5c{bottom:770.786667pt;}
.y38{bottom:771.106667pt;}
.y84{bottom:787.426667pt;}
.y6b{bottom:787.746667pt;}
.yac{bottom:791.266667pt;}
.y12{bottom:794.786667pt;}
.yc8{bottom:802.786667pt;}
.y37{bottom:806.306667pt;}
.yab{bottom:808.226667pt;}
.y36{bottom:823.266667pt;}
.yaa{bottom:825.186667pt;}
.yc7{bottom:838.306667pt;}
.y35{bottom:840.226667pt;}
.ya9{bottom:842.146667pt;}
.y11{bottom:848.573333pt;}
.y34{bottom:857.213333pt;}
.y10{bottom:858.493333pt;}
.y5b{bottom:858.813333pt;}
.yc6{bottom:873.853333pt;}
.y5a{bottom:875.773333pt;}
.yf{bottom:880.893333pt;}
.yc5{bottom:890.813333pt;}
.y33{bottom:892.733333pt;}
.ya8{bottom:894.333333pt;}
.ye{bottom:899.773333pt;}
.y32{bottom:909.693333pt;}
.ya7{bottom:911.293333pt;}
.yd{bottom:919.293333pt;}
.y31{bottom:926.333333pt;}
.y59{bottom:928.253333pt;}
.yc{bottom:938.813333pt;}
.y30{bottom:943.293333pt;}
.y6a{bottom:944.893333pt;}
.ya6{bottom:945.213333pt;}
.yb{bottom:954.173333pt;}
.y69{bottom:961.893333pt;}
.y58{bottom:963.813333pt;}
.ya{bottom:969.573333pt;}
.y2f{bottom:978.853333pt;}
.y57{bottom:980.773333pt;}
.y9{bottom:984.933333pt;}
.y56{bottom:997.413333pt;}
.y8{bottom:1000.293333pt;}
.y2e{bottom:1014.373333pt;}
.y7{bottom:1015.653333pt;}
.y1{bottom:1056.293333pt;}
.y5{bottom:1072.000000pt;}
.h4{height:16.000000pt;}
.h2{height:17.632000pt;}
.h9{height:20.409375pt;}
.h8{height:36.931250pt;}
.ha{height:40.818750pt;}
.h5{height:42.678750pt;}
.h6{height:47.171250pt;}
.hd{height:51.663750pt;}
.hc{height:52.296250pt;}
.he{height:56.062500pt;}
.h3{height:60.288750pt;}
.h7{height:65.531250pt;}
.hb{height:76.016250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:33.600000pt;}
.w3{width:126.784000pt;}
.w2{width:496.826667pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x5{left:4.160000pt;}
.x3{left:93.152000pt;}
.x6{left:94.431988pt;}
.xc{left:100.831988pt;}
.xe{left:118.431988pt;}
.xb{left:128.703988pt;}
.x1{left:148.546667pt;}
.x7{left:194.626655pt;}
.xd{left:217.693322pt;}
.xa{left:252.253322pt;}
.x9{left:316.613322pt;}
.x8{left:343.173322pt;}
.xf{left:600.546655pt;}
.x4{left:671.613333pt;}
}




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