
    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_a9a632676e7953ab89453728.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853516;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_911a3222c97ccae335cdb1ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_b904b7602001be3cc58a8c7d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_6dc65bb2fde967b213e6ef65.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.738770;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_6ba6a6abb19328000f9eb113.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_4801ebf9a60d34d2d82d097e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01b67f7e3ce8a1205bcf400c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls1e{letter-spacing:-0.774000px;}
.ls16{letter-spacing:-0.666000px;}
.lse{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.250800px;}
.ls9{letter-spacing:-0.206400px;}
.ls1d{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.066000px;}
.ls17{letter-spacing:0.106560px;}
.ls14{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.198000px;}
.lsc{letter-spacing:0.206400px;}
.ls0{letter-spacing:0.233280px;}
.ls19{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.306600px;}
.ls13{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.900000px;}
.ls5{letter-spacing:17.946720px;}
.ls1a{letter-spacing:27.306720px;}
.ls1c{letter-spacing:46.746720px;}
.ls18{letter-spacing:56.250720px;}
.ls11{letter-spacing:66.330720px;}
.ls12{letter-spacing:67.770720px;}
.ls15{letter-spacing:79.290720px;}
.ls1b{letter-spacing:85.050720px;}
.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;}
}
.ws0{word-spacing:-17.818560px;}
.ws1{word-spacing:-17.567760px;}
.ws2{word-spacing:-16.691760px;}
.ws3{word-spacing:-16.493760px;}
.wsb{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.wse{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.274000px;}
.ws10{word-spacing:-14.166000px;}
.wsa{word-spacing:0.000000px;}
._5{margin-left:-1437.704640px;}
._e{margin-left:-1126.187280px;}
._10{margin-left:-1084.468320px;}
._4{margin-left:-1019.145600px;}
._11{margin-left:-937.735920px;}
._d{margin-left:-927.539280px;}
._21{margin-left:-894.353760px;}
._f{margin-left:-779.036400px;}
._6{margin-left:-610.974720px;}
._7{margin-left:-551.539680px;}
._3{margin-left:-467.576640px;}
._1{margin-left:-419.958720px;}
._12{margin-left:-410.523120px;}
._b{margin-left:-258.480000px;}
._1f{margin-left:-220.898880px;}
._c{margin-left:-204.338880px;}
._8{margin-left:-180.120000px;}
._9{margin-left:-126.817200px;}
._a{margin-left:-120.173760px;}
._20{margin-left:-82.799040px;}
._1c{margin-left:-14.220000px;}
._22{margin-left:-4.619520px;}
._1a{margin-left:-3.471840px;}
._17{margin-left:-2.450160px;}
._0{margin-left:-1.192320px;}
._2{width:1.592640px;}
._18{width:2.685120px;}
._16{width:3.703440px;}
._13{width:4.771200px;}
._14{width:5.779440px;}
._23{width:6.847920px;}
._15{width:8.506800px;}
._1d{width:9.702480px;}
._1e{width:11.016480px;}
._24{width:12.427200px;}
._25{width:13.625280px;}
._1b{width:16.811280px;}
._29{width:18.346320px;}
._28{width:19.645920px;}
._19{width:21.152160px;}
._27{width:23.485680px;}
._26{width:24.860160px;}
.fc4{color:transparent;}
.fc2{color:rgb(91,155,213);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.yb{bottom:6.120000px;}
.ya{bottom:7.920000px;}
.y6{bottom:25.920000px;}
.y9{bottom:32.220000px;}
.y5{bottom:45.720000px;}
.yd{bottom:57.780000px;}
.y8{bottom:59.070000px;}
.y4{bottom:65.550000px;}
.y3b{bottom:81.180000px;}
.y71{bottom:84.600000px;}
.y3{bottom:85.350000px;}
.yd3{bottom:91.800000px;}
.y7{bottom:93.270000px;}
.y3a{bottom:100.980000px;}
.y70{bottom:104.580000px;}
.y2{bottom:105.150000px;}
.ybb{bottom:109.800000px;}
.yd2{bottom:111.600000px;}
.y39{bottom:120.780000px;}
.y6f{bottom:124.380000px;}
.yba{bottom:129.600000px;}
.yd1{bottom:131.580000px;}
.y38{bottom:140.580000px;}
.y6e{bottom:144.180000px;}
.yb9{bottom:149.580000px;}
.yd0{bottom:151.380000px;}
.y37{bottom:160.590000px;}
.y6d{bottom:164.010000px;}
.yb8{bottom:169.410000px;}
.ycf{bottom:180.210000px;}
.y6c{bottom:183.810000px;}
.yb7{bottom:189.210000px;}
.y36{bottom:189.390000px;}
.yce{bottom:200.010000px;}
.y6b{bottom:203.790000px;}
.yb6{bottom:209.010000px;}
.y35{bottom:209.190000px;}
.ycd{bottom:219.810000px;}
.y6a{bottom:223.590000px;}
.yb5{bottom:228.810000px;}
.y34{bottom:228.990000px;}
.ycc{bottom:239.790000px;}
.y69{bottom:243.390000px;}
.y33{bottom:248.790000px;}
.ycb{bottom:259.590000px;}
.y68{bottom:263.190000px;}
.yb4{bottom:268.590000px;}
.y32{bottom:268.770000px;}
.yca{bottom:279.390000px;}
.y67{bottom:282.990000px;}
.yb3{bottom:288.390000px;}
.y31{bottom:288.570000px;}
.yc9{bottom:299.190000px;}
.y66{bottom:302.970000px;}
.yb2{bottom:308.190000px;}
.y30{bottom:317.370000px;}
.y65{bottom:322.770000px;}
.yb1{bottom:327.990000px;}
.y2f{bottom:337.170000px;}
.y64{bottom:342.570000px;}
.yb0{bottom:347.970000px;}
.y2e{bottom:356.970000px;}
.y63{bottom:362.370000px;}
.yaf{bottom:367.770000px;}
.y2d{bottom:376.950000px;}
.y62{bottom:382.170000px;}
.yae{bottom:387.570000px;}
.y61{bottom:402.195000px;}
.y2c{bottom:404.175000px;}
.yad{bottom:407.415000px;}
.y60{bottom:421.995000px;}
.y2b{bottom:424.155000px;}
.yac{bottom:427.215000px;}
.y5f{bottom:441.795000px;}
.y2a{bottom:443.955000px;}
.yab{bottom:447.195000px;}
.y8f{bottom:450.795000px;}
.y5e{bottom:461.595000px;}
.y29{bottom:463.755000px;}
.yaa{bottom:466.995000px;}
.y8e{bottom:470.595000px;}
.y5d{bottom:481.395000px;}
.y28{bottom:483.555000px;}
.ya9{bottom:486.795000px;}
.y8d{bottom:490.395000px;}
.y5c{bottom:501.375000px;}
.y27{bottom:503.355000px;}
.ya8{bottom:506.595000px;}
.y8c{bottom:510.375000px;}
.y5b{bottom:521.175000px;}
.y26{bottom:523.335000px;}
.ya7{bottom:526.395000px;}
.y8b{bottom:530.175000px;}
.y5a{bottom:540.975000px;}
.ya6{bottom:546.375000px;}
.y8a{bottom:549.975000px;}
.y25{bottom:552.135000px;}
.y59{bottom:560.775000px;}
.yc8{bottom:566.175000px;}
.y24{bottom:571.935000px;}
.ya5{bottom:575.175000px;}
.y89{bottom:578.775000px;}
.yc7{bottom:585.975000px;}
.y58{bottom:589.575000px;}
.y23{bottom:591.735000px;}
.ya4{bottom:594.975000px;}
.y88{bottom:598.575000px;}
.yc6{bottom:605.775000px;}
.y57{bottom:609.555000px;}
.y22{bottom:611.535000px;}
.ya3{bottom:614.775000px;}
.y87{bottom:618.555000px;}
.yc5{bottom:625.575000px;}
.y56{bottom:629.355000px;}
.y21{bottom:631.515000px;}
.ya2{bottom:634.575000px;}
.y86{bottom:638.355000px;}
.yc4{bottom:645.555000px;}
.y55{bottom:649.185000px;}
.y20{bottom:651.345000px;}
.ya1{bottom:654.585000px;}
.y85{bottom:658.185000px;}
.yc3{bottom:665.385000px;}
.y54{bottom:668.985000px;}
.y1f{bottom:671.145000px;}
.ya0{bottom:674.385000px;}
.y84{bottom:677.985000px;}
.yc2{bottom:685.185000px;}
.y53{bottom:688.785000px;}
.y1e{bottom:690.945000px;}
.y9f{bottom:694.185000px;}
.y83{bottom:697.785000px;}
.yc1{bottom:704.985000px;}
.y52{bottom:708.765000px;}
.y1d{bottom:710.745000px;}
.y9e{bottom:713.985000px;}
.y82{bottom:717.765000px;}
.yc0{bottom:724.785000px;}
.y51{bottom:728.565000px;}
.y1c{bottom:730.725000px;}
.y9d{bottom:733.785000px;}
.y81{bottom:737.565000px;}
.ybf{bottom:744.765000px;}
.y50{bottom:748.365000px;}
.y1b{bottom:750.525000px;}
.y9c{bottom:753.765000px;}
.y80{bottom:757.365000px;}
.ybe{bottom:764.565000px;}
.y4f{bottom:768.165000px;}
.y1a{bottom:772.665000px;}
.y9b{bottom:773.565000px;}
.y7f{bottom:777.165000px;}
.ybd{bottom:784.365000px;}
.y19{bottom:792.465000px;}
.y9a{bottom:793.365000px;}
.y4e{bottom:796.965000px;}
.ybc{bottom:804.165000px;}
.y7e{bottom:805.965000px;}
.y18{bottom:812.265000px;}
.y99{bottom:813.165000px;}
.y4d{bottom:816.945000px;}
.yd9{bottom:823.965000px;}
.y7d{bottom:825.945000px;}
.y17{bottom:832.065000px;}
.y98{bottom:832.965000px;}
.y4c{bottom:836.745000px;}
.yd8{bottom:843.945000px;}
.y7c{bottom:845.745000px;}
.y16{bottom:851.865000px;}
.y97{bottom:852.945000px;}
.y4b{bottom:856.545000px;}
.yd7{bottom:863.745000px;}
.y7b{bottom:865.545000px;}
.y15{bottom:871.845000px;}
.y96{bottom:872.745000px;}
.y4a{bottom:876.345000px;}
.yd6{bottom:883.545000px;}
.y7a{bottom:885.345000px;}
.y14{bottom:891.465000px;}
.y95{bottom:892.545000px;}
.yd5{bottom:903.390000px;}
.y49{bottom:905.190000px;}
.y94{bottom:912.390000px;}
.yd4{bottom:923.190000px;}
.y48{bottom:925.170000px;}
.y13{bottom:931.650000px;}
.y93{bottom:932.190000px;}
.y47{bottom:944.970000px;}
.y92{bottom:952.170000px;}
.y79{bottom:953.970000px;}
.y12{bottom:960.630000px;}
.y46{bottom:964.770000px;}
.y91{bottom:971.970000px;}
.y11{bottom:980.430000px;}
.y78{bottom:982.770000px;}
.y45{bottom:984.570000px;}
.y90{bottom:991.770000px;}
.y10{bottom:1000.770000px;}
.y77{bottom:1011.570000px;}
.y44{bottom:1013.370000px;}
.yf{bottom:1022.010000px;}
.y76{bottom:1031.370000px;}
.y43{bottom:1033.350000px;}
.ye{bottom:1045.590000px;}
.y75{bottom:1051.350000px;}
.y42{bottom:1053.150000px;}
.yc{bottom:1071.150000px;}
.y41{bottom:1081.950000px;}
.y1{bottom:1087.350000px;}
.y74{bottom:1090.950000px;}
.y40{bottom:1101.750000px;}
.y73{bottom:1110.750000px;}
.y3f{bottom:1121.550000px;}
.y72{bottom:1130.550000px;}
.y3e{bottom:1150.560000px;}
.y3d{bottom:1170.360000px;}
.y3c{bottom:1196.280000px;}
.he{height:38.100586px;}
.hb{height:40.472227px;}
.h6{height:41.726953px;}
.ha{height:42.164648px;}
.hc{height:43.506914px;}
.hd{height:45.461953px;}
.h9{height:46.736719px;}
.h7{height:51.706406px;}
.h3{height:52.590937px;}
.h5{height:55.987031px;}
.h8{height:67.565039px;}
.h4{height:90.319219px;}
.h2{height:121.536000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:116.676000px;}
.w4{width:167.610000px;}
.w3{width:500.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:13.500000px;}
.xb{left:19.260000px;}
.xd{left:31.860000px;}
.x6{left:36.720000px;}
.x3{left:47.016000px;}
.x14{left:51.479987px;}
.x13{left:52.739987px;}
.x1{left:54.000000px;}
.x11{left:55.259987px;}
.xf{left:56.879987px;}
.x12{left:58.679987px;}
.x9{left:75.600000px;}
.x15{left:80.999987px;}
.x2{left:97.230000px;}
.x16{left:108.035987px;}
.x8{left:128.745000px;}
.xc{left:148.170000px;}
.x5{left:170.670000px;}
.x7{left:201.645000px;}
.xa{left:670.830000px;}
.xe{left:811.799987px;}
.x10{left:820.079987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.688000pt;}
.ls16{letter-spacing:-0.592000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.222933pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls1d{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.058667pt;}
.ls17{letter-spacing:0.094720pt;}
.ls14{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.176000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls0{letter-spacing:0.207360pt;}
.ls19{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.272533pt;}
.ls13{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls5{letter-spacing:15.952640pt;}
.ls1a{letter-spacing:24.272640pt;}
.ls1c{letter-spacing:41.552640pt;}
.ls18{letter-spacing:50.000640pt;}
.ls11{letter-spacing:58.960640pt;}
.ls12{letter-spacing:60.240640pt;}
.ls15{letter-spacing:70.480640pt;}
.ls1b{letter-spacing:75.600640pt;}
.ws0{word-spacing:-15.838720pt;}
.ws1{word-spacing:-15.615787pt;}
.ws2{word-spacing:-14.837120pt;}
.ws3{word-spacing:-14.661120pt;}
.wsb{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.wse{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.096533pt;}
.ws9{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.688000pt;}
.ws10{word-spacing:-12.592000pt;}
.wsa{word-spacing:0.000000pt;}
._5{margin-left:-1277.959680pt;}
._e{margin-left:-1001.055360pt;}
._10{margin-left:-963.971840pt;}
._4{margin-left:-905.907200pt;}
._11{margin-left:-833.543040pt;}
._d{margin-left:-824.479360pt;}
._21{margin-left:-794.981120pt;}
._f{margin-left:-692.476800pt;}
._6{margin-left:-543.088640pt;}
._7{margin-left:-490.257493pt;}
._3{margin-left:-415.623680pt;}
._1{margin-left:-373.296640pt;}
._12{margin-left:-364.909440pt;}
._b{margin-left:-229.760000pt;}
._1f{margin-left:-196.354560pt;}
._c{margin-left:-181.634560pt;}
._8{margin-left:-160.106667pt;}
._9{margin-left:-112.726400pt;}
._a{margin-left:-106.821120pt;}
._20{margin-left:-73.599147pt;}
._1c{margin-left:-12.640000pt;}
._22{margin-left:-4.106240pt;}
._1a{margin-left:-3.086080pt;}
._17{margin-left:-2.177920pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.415680pt;}
._18{width:2.386773pt;}
._16{width:3.291947pt;}
._13{width:4.241067pt;}
._14{width:5.137280pt;}
._23{width:6.087040pt;}
._15{width:7.561600pt;}
._1d{width:8.624427pt;}
._1e{width:9.792427pt;}
._24{width:11.046400pt;}
._25{width:12.111360pt;}
._1b{width:14.943360pt;}
._29{width:16.307840pt;}
._28{width:17.463040pt;}
._19{width:18.801920pt;}
._27{width:20.876160pt;}
._26{width:22.097920pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:5.440000pt;}
.ya{bottom:7.040000pt;}
.y6{bottom:23.040000pt;}
.y9{bottom:28.640000pt;}
.y5{bottom:40.640000pt;}
.yd{bottom:51.360000pt;}
.y8{bottom:52.506667pt;}
.y4{bottom:58.266667pt;}
.y3b{bottom:72.160000pt;}
.y71{bottom:75.200000pt;}
.y3{bottom:75.866667pt;}
.yd3{bottom:81.600000pt;}
.y7{bottom:82.906667pt;}
.y3a{bottom:89.760000pt;}
.y70{bottom:92.960000pt;}
.y2{bottom:93.466667pt;}
.ybb{bottom:97.600000pt;}
.yd2{bottom:99.200000pt;}
.y39{bottom:107.360000pt;}
.y6f{bottom:110.560000pt;}
.yba{bottom:115.200000pt;}
.yd1{bottom:116.960000pt;}
.y38{bottom:124.960000pt;}
.y6e{bottom:128.160000pt;}
.yb9{bottom:132.960000pt;}
.yd0{bottom:134.560000pt;}
.y37{bottom:142.746667pt;}
.y6d{bottom:145.786667pt;}
.yb8{bottom:150.586667pt;}
.ycf{bottom:160.186667pt;}
.y6c{bottom:163.386667pt;}
.yb7{bottom:168.186667pt;}
.y36{bottom:168.346667pt;}
.yce{bottom:177.786667pt;}
.y6b{bottom:181.146667pt;}
.yb6{bottom:185.786667pt;}
.y35{bottom:185.946667pt;}
.ycd{bottom:195.386667pt;}
.y6a{bottom:198.746667pt;}
.yb5{bottom:203.386667pt;}
.y34{bottom:203.546667pt;}
.ycc{bottom:213.146667pt;}
.y69{bottom:216.346667pt;}
.y33{bottom:221.146667pt;}
.ycb{bottom:230.746667pt;}
.y68{bottom:233.946667pt;}
.yb4{bottom:238.746667pt;}
.y32{bottom:238.906667pt;}
.yca{bottom:248.346667pt;}
.y67{bottom:251.546667pt;}
.yb3{bottom:256.346667pt;}
.y31{bottom:256.506667pt;}
.yc9{bottom:265.946667pt;}
.y66{bottom:269.306667pt;}
.yb2{bottom:273.946667pt;}
.y30{bottom:282.106667pt;}
.y65{bottom:286.906667pt;}
.yb1{bottom:291.546667pt;}
.y2f{bottom:299.706667pt;}
.y64{bottom:304.506667pt;}
.yb0{bottom:309.306667pt;}
.y2e{bottom:317.306667pt;}
.y63{bottom:322.106667pt;}
.yaf{bottom:326.906667pt;}
.y2d{bottom:335.066667pt;}
.y62{bottom:339.706667pt;}
.yae{bottom:344.506667pt;}
.y61{bottom:357.506667pt;}
.y2c{bottom:359.266667pt;}
.yad{bottom:362.146667pt;}
.y60{bottom:375.106667pt;}
.y2b{bottom:377.026667pt;}
.yac{bottom:379.746667pt;}
.y5f{bottom:392.706667pt;}
.y2a{bottom:394.626667pt;}
.yab{bottom:397.506667pt;}
.y8f{bottom:400.706667pt;}
.y5e{bottom:410.306667pt;}
.y29{bottom:412.226667pt;}
.yaa{bottom:415.106667pt;}
.y8e{bottom:418.306667pt;}
.y5d{bottom:427.906667pt;}
.y28{bottom:429.826667pt;}
.ya9{bottom:432.706667pt;}
.y8d{bottom:435.906667pt;}
.y5c{bottom:445.666667pt;}
.y27{bottom:447.426667pt;}
.ya8{bottom:450.306667pt;}
.y8c{bottom:453.666667pt;}
.y5b{bottom:463.266667pt;}
.y26{bottom:465.186667pt;}
.ya7{bottom:467.906667pt;}
.y8b{bottom:471.266667pt;}
.y5a{bottom:480.866667pt;}
.ya6{bottom:485.666667pt;}
.y8a{bottom:488.866667pt;}
.y25{bottom:490.786667pt;}
.y59{bottom:498.466667pt;}
.yc8{bottom:503.266667pt;}
.y24{bottom:508.386667pt;}
.ya5{bottom:511.266667pt;}
.y89{bottom:514.466667pt;}
.yc7{bottom:520.866667pt;}
.y58{bottom:524.066667pt;}
.y23{bottom:525.986667pt;}
.ya4{bottom:528.866667pt;}
.y88{bottom:532.066667pt;}
.yc6{bottom:538.466667pt;}
.y57{bottom:541.826667pt;}
.y22{bottom:543.586667pt;}
.ya3{bottom:546.466667pt;}
.y87{bottom:549.826667pt;}
.yc5{bottom:556.066667pt;}
.y56{bottom:559.426667pt;}
.y21{bottom:561.346667pt;}
.ya2{bottom:564.066667pt;}
.y86{bottom:567.426667pt;}
.yc4{bottom:573.826667pt;}
.y55{bottom:577.053333pt;}
.y20{bottom:578.973333pt;}
.ya1{bottom:581.853333pt;}
.y85{bottom:585.053333pt;}
.yc3{bottom:591.453333pt;}
.y54{bottom:594.653333pt;}
.y1f{bottom:596.573333pt;}
.ya0{bottom:599.453333pt;}
.y84{bottom:602.653333pt;}
.yc2{bottom:609.053333pt;}
.y53{bottom:612.253333pt;}
.y1e{bottom:614.173333pt;}
.y9f{bottom:617.053333pt;}
.y83{bottom:620.253333pt;}
.yc1{bottom:626.653333pt;}
.y52{bottom:630.013333pt;}
.y1d{bottom:631.773333pt;}
.y9e{bottom:634.653333pt;}
.y82{bottom:638.013333pt;}
.yc0{bottom:644.253333pt;}
.y51{bottom:647.613333pt;}
.y1c{bottom:649.533333pt;}
.y9d{bottom:652.253333pt;}
.y81{bottom:655.613333pt;}
.ybf{bottom:662.013333pt;}
.y50{bottom:665.213333pt;}
.y1b{bottom:667.133333pt;}
.y9c{bottom:670.013333pt;}
.y80{bottom:673.213333pt;}
.ybe{bottom:679.613333pt;}
.y4f{bottom:682.813333pt;}
.y1a{bottom:686.813333pt;}
.y9b{bottom:687.613333pt;}
.y7f{bottom:690.813333pt;}
.ybd{bottom:697.213333pt;}
.y19{bottom:704.413333pt;}
.y9a{bottom:705.213333pt;}
.y4e{bottom:708.413333pt;}
.ybc{bottom:714.813333pt;}
.y7e{bottom:716.413333pt;}
.y18{bottom:722.013333pt;}
.y99{bottom:722.813333pt;}
.y4d{bottom:726.173333pt;}
.yd9{bottom:732.413333pt;}
.y7d{bottom:734.173333pt;}
.y17{bottom:739.613333pt;}
.y98{bottom:740.413333pt;}
.y4c{bottom:743.773333pt;}
.yd8{bottom:750.173333pt;}
.y7c{bottom:751.773333pt;}
.y16{bottom:757.213333pt;}
.y97{bottom:758.173333pt;}
.y4b{bottom:761.373333pt;}
.yd7{bottom:767.773333pt;}
.y7b{bottom:769.373333pt;}
.y15{bottom:774.973333pt;}
.y96{bottom:775.773333pt;}
.y4a{bottom:778.973333pt;}
.yd6{bottom:785.373333pt;}
.y7a{bottom:786.973333pt;}
.y14{bottom:792.413333pt;}
.y95{bottom:793.373333pt;}
.yd5{bottom:803.013333pt;}
.y49{bottom:804.613333pt;}
.y94{bottom:811.013333pt;}
.yd4{bottom:820.613333pt;}
.y48{bottom:822.373333pt;}
.y13{bottom:828.133333pt;}
.y93{bottom:828.613333pt;}
.y47{bottom:839.973333pt;}
.y92{bottom:846.373333pt;}
.y79{bottom:847.973333pt;}
.y12{bottom:853.893333pt;}
.y46{bottom:857.573333pt;}
.y91{bottom:863.973333pt;}
.y11{bottom:871.493333pt;}
.y78{bottom:873.573333pt;}
.y45{bottom:875.173333pt;}
.y90{bottom:881.573333pt;}
.y10{bottom:889.573333pt;}
.y77{bottom:899.173333pt;}
.y44{bottom:900.773333pt;}
.yf{bottom:908.453333pt;}
.y76{bottom:916.773333pt;}
.y43{bottom:918.533333pt;}
.ye{bottom:929.413333pt;}
.y75{bottom:934.533333pt;}
.y42{bottom:936.133333pt;}
.yc{bottom:952.133333pt;}
.y41{bottom:961.733333pt;}
.y1{bottom:966.533333pt;}
.y74{bottom:969.733333pt;}
.y40{bottom:979.333333pt;}
.y73{bottom:987.333333pt;}
.y3f{bottom:996.933333pt;}
.y72{bottom:1004.933333pt;}
.y3e{bottom:1022.720000pt;}
.y3d{bottom:1040.320000pt;}
.y3c{bottom:1063.360000pt;}
.he{height:33.867188pt;}
.hb{height:35.975313pt;}
.h6{height:37.090625pt;}
.ha{height:37.479688pt;}
.hc{height:38.672812pt;}
.hd{height:40.410625pt;}
.h9{height:41.543750pt;}
.h7{height:45.961250pt;}
.h3{height:46.747500pt;}
.h5{height:49.766250pt;}
.h8{height:60.057813pt;}
.h4{height:80.283750pt;}
.h2{height:108.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:103.712000pt;}
.w4{width:148.986667pt;}
.w3{width:444.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:12.000000pt;}
.xb{left:17.120000pt;}
.xd{left:28.320000pt;}
.x6{left:32.640000pt;}
.x3{left:41.792000pt;}
.x14{left:45.759988pt;}
.x13{left:46.879988pt;}
.x1{left:48.000000pt;}
.x11{left:49.119988pt;}
.xf{left:50.559988pt;}
.x12{left:52.159988pt;}
.x9{left:67.200000pt;}
.x15{left:71.999988pt;}
.x2{left:86.426667pt;}
.x16{left:96.031988pt;}
.x8{left:114.440000pt;}
.xc{left:131.706667pt;}
.x5{left:151.706667pt;}
.x7{left:179.240000pt;}
.xa{left:596.293333pt;}
.xe{left:721.599988pt;}
.x10{left:728.959988pt;}
}




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