
    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_aa9fc81ad8208709bf911935.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.267000;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_421beb0551f22fe47bb850ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.256000;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_5307e2ee78203023deb4d1d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.995605;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_dfaf5e5a346125cca4f0bd12.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740723;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_488c440c9346fa8b31444929.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_96e4f69f57c45f0d60a14717.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.749000;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_57faea02729b157269bc6525.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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_a7d47fa4030872d80afea822.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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;}
.v1{vertical-align:44.999998px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.035179px;}
.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:-32.399999px;}
.ws3{word-spacing:-25.649999px;}
.ws4{word-spacing:-24.299999px;}
.ws0{word-spacing:-21.599999px;}
.ws6{word-spacing:-21.383999px;}
.ws7{word-spacing:-20.003905px;}
.wsc{word-spacing:-19.439999px;}
.ws1{word-spacing:-15.248275px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:104.399996px;}
.wsd{word-spacing:284.893000px;}
.wse{word-spacing:334.458070px;}
.wsb{word-spacing:348.893424px;}
.wsa{word-spacing:992.109880px;}
.ws9{word-spacing:1261.190171px;}
._1{margin-left:-2.950502px;}
._0{margin-left:-1.014917px;}
._c{width:430.054379px;}
._a{width:658.305558px;}
._3{width:845.468965px;}
._8{width:884.410298px;}
._2{width:894.635963px;}
._5{width:934.163961px;}
._6{width:1006.334958px;}
._4{width:1011.194958px;}
._b{width:1099.755539px;}
._9{width:1108.213289px;}
._7{width:1347.730279px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,122,192);}
.fc6{color:rgb(71,71,71);}
.fc5{color:rgb(137,137,137);}
.fc4{color:rgb(154,154,154);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(32,32,32);}
.fs3{font-size:47.969997px;}
.fs5{font-size:54.000000px;}
.fsa{font-size:62.999997px;}
.fs9{font-size:64.799996px;}
.fs2{font-size:71.999997px;}
.fs6{font-size:80.999997px;}
.fs1{font-size:85.499996px;}
.fs0{font-size:107.999996px;}
.fs4{font-size:108.000000px;}
.fs8{font-size:143.999994px;}
.fs7{font-size:233.999990px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.375000px;}
.y68{bottom:16.874999px;}
.y19{bottom:16.945307px;}
.y21{bottom:18.372000px;}
.yc9{bottom:18.673500px;}
.y5d{bottom:20.001000px;}
.y1c{bottom:22.005022px;}
.ycb{bottom:22.047000px;}
.y6c{bottom:22.141500px;}
.ya7{bottom:23.622000px;}
.y8c{bottom:24.619500px;}
.y47{bottom:24.955500px;}
.yb1{bottom:25.155000px;}
.y78{bottom:25.357500px;}
.y9a{bottom:25.758000px;}
.y5a{bottom:40.499998px;}
.yc4{bottom:41.624998px;}
.y3b{bottom:41.695310px;}
.y35{bottom:42.184709px;}
.y1{bottom:42.184713px;}
.y8b{bottom:42.749998px;}
.y99{bottom:42.820310px;}
.y66{bottom:50.695309px;}
.y18{bottom:55.195306px;}
.y6b{bottom:56.249998px;}
.y7c{bottom:56.880020px;}
.y74{bottom:64.195309px;}
.yc3{bottom:65.249997px;}
.y59{bottom:70.874997px;}
.y3a{bottom:72.070309px;}
.ya6{bottom:79.874997px;}
.y98{bottom:82.195308px;}
.y95{bottom:84.374996px;}
.yc2{bottom:88.874996px;}
.y6a{bottom:89.999996px;}
.ya3{bottom:90.630019px;}
.y65{bottom:91.195308px;}
.y17{bottom:97.945304px;}
.yb6{bottom:100.195307px;}
.y5c{bottom:101.249996px;}
.y85{bottom:109.124995px;}
.y58{bottom:110.249995px;}
.y39{bottom:111.445307px;}
.yc8{bottom:114.749995px;}
.y86{bottom:115.380018px;}
.y34{bottom:118.124995px;}
.y9f{bottom:119.249995px;}
.y97{bottom:121.570307px;}
.yaf{bottom:123.820306px;}
.y20{bottom:133.978500px;}
.yc1{bottom:134.999994px;}
.y16{bottom:136.195302px;}
.y77{bottom:139.499994px;}
.y57{bottom:140.624994px;}
.yb5{bottom:140.695306px;}
.y8a{bottom:147.374994px;}
.y84{bottom:148.499994px;}
.ya2{bottom:155.249994px;}
.yc7{bottom:156.374993px;}
.y71{bottom:157.499993px;}
.y33{bottom:158.624993px;}
.y9e{bottom:159.749993px;}
.y72{bottom:160.380016px;}
.yae{bottom:164.320305px;}
.y38{bottom:169.945305px;}
.y64{bottom:172.195304px;}
.y4f{bottom:176.695304px;}
.y93{bottom:177.820304px;}
.y5f{bottom:178.874993px;}
.y15{bottom:178.945301px;}
.y56{bottom:179.999992px;}
.yb4{bottom:181.195304px;}
.y6f{bottom:182.249992px;}
.yc6{bottom:186.749992px;}
.y83{bottom:187.874992px;}
.y89{bottom:188.999992px;}
.ya1{bottom:195.749992px;}
.y32{bottom:199.124992px;}
.y37{bottom:210.445303px;}
.y76{bottom:218.249991px;}
.y92{bottom:218.320303px;}
.y75{bottom:218.880013px;}
.y55{bottom:219.374991px;}
.y14{bottom:219.445299px;}
.ya9{bottom:220.499991px;}
.y82{bottom:227.249991px;}
.yc0{bottom:228.374990px;}
.y88{bottom:230.624990px;}
.ya4{bottom:236.249990px;}
.y9d{bottom:238.499990px;}
.y31{bottom:239.624990px;}
.y54{bottom:249.749990px;}
.y36{bottom:249.820301px;}
.y63{bottom:250.945301px;}
.ybf{bottom:251.999989px;}
.y4a{bottom:257.624989px;}
.y13{bottom:259.945297px;}
.y4e{bottom:259.945301px;}
.yad{bottom:260.505012px;}
.y81{bottom:266.624989px;}
.y87{bottom:272.249989px;}
.ybe{bottom:275.624989px;}
.yb2{bottom:279.630011px;}
.y53{bottom:289.124988px;}
.y12{bottom:298.195296px;}
.y4d{bottom:300.445299px;}
.y80{bottom:305.999987px;}
.yb3{bottom:316.124987px;}
.y90{bottom:316.755009px;}
.y52{bottom:319.499987px;}
.y30{bottom:320.624987px;}
.ybd{bottom:321.749987px;}
.yc5{bottom:339.255008px;}
.y11{bottom:340.945294px;}
.y4c{bottom:340.945297px;}
.y62{bottom:342.070294px;}
.y61{bottom:345.374986px;}
.y23{bottom:347.130008px;}
.y51{bottom:349.874985px;}
.y8f{bottom:356.624985px;}
.y2f{bottom:361.124985px;}
.y73{bottom:374.624984px;}
.y7f{bottom:375.749984px;}
.y96{bottom:376.380007px;}
.y10{bottom:381.445292px;}
.y4b{bottom:381.445296px;}
.yac{bottom:382.499984px;}
.ya0{bottom:383.130007px;}
.ybc{bottom:391.499984px;}
.y8e{bottom:397.124983px;}
.y7d{bottom:398.249983px;}
.y91{bottom:399.374983px;}
.y2e{bottom:401.624983px;}
.ybb{bottom:415.124983px;}
.yf{bottom:421.945290px;}
.yab{bottom:422.999982px;}
.y60{bottom:440.505004px;}
.yb8{bottom:449.999981px;}
.ye{bottom:460.195289px;}
.yba{bottom:461.249981px;}
.y3e{bottom:465.960000px;}
.yaa{bottom:472.005003px;}
.y49{bottom:477.630003px;}
.y2d{bottom:482.624980px;}
.yb9{bottom:484.874980px;}
.y7b{bottom:491.624980px;}
.y69{bottom:499.005002px;}
.yd{bottom:502.945287px;}
.y42{bottom:504.045000px;}
.y79{bottom:511.380001px;}
.y2c{bottom:523.124978px;}
.yb0{bottom:531.630000px;}
.y7a{bottom:532.124978px;}
.y5b{bottom:537.255000px;}
.y1d{bottom:540.900000px;}
.yc{bottom:543.445285px;}
.y1f{bottom:545.820000px;}
.y22{bottom:547.200000px;}
.y2b{bottom:563.624977px;}
.y7e{bottom:571.004999px;}
.y67{bottom:580.004998px;}
.y1e{bottom:581.370000px;}
.y70{bottom:589.004998px;}
.y2a{bottom:604.124975px;}
.yb{bottom:624.445282px;}
.y9c{bottom:635.129996px;}
.y29{bottom:644.624973px;}
.y44{bottom:660.075000px;}
.ya{bottom:664.945280px;}
.y28{bottom:685.124971px;}
.y9{bottom:705.445279px;}
.y40{bottom:706.635000px;}
.yb7{bottom:708.254993px;}
.y27{bottom:725.624970px;}
.y8{bottom:745.945277px;}
.y26{bottom:766.124968px;}
.y8d{bottom:772.379990px;}
.y7{bottom:784.195275px;}
.y6e{bottom:800.504989px;}
.y25{bottom:806.624966px;}
.y41{bottom:824.430000px;}
.y6{bottom:825.820274px;}
.y94{bottom:830.879988px;}
.y5e{bottom:842.129988px;}
.y24{bottom:847.124965px;}
.y50{bottom:848.879987px;}
.y5{bottom:866.320272px;}
.y43{bottom:871.665000px;}
.y4{bottom:905.695270px;}
.y3f{bottom:910.395000px;}
.y9b{bottom:922.570270px;}
.y3{bottom:946.195269px;}
.y46{bottom:947.145000px;}
.ya8{bottom:951.254983px;}
.yca{bottom:961.945268px;}
.y45{bottom:983.970000px;}
.y3d{bottom:1032.105000px;}
.y6d{bottom:1035.629979px;}
.y2{bottom:1037.320265px;}
.ya5{bottom:1079.504978px;}
.y48{bottom:1113.690000px;}
.y3c{bottom:1151.850000px;}
.y1a{bottom:1225.754972px;}
.h9{height:14.624999px;}
.ha{height:36.445955px;}
.hc{height:39.339844px;}
.h1f{height:52.171873px;}
.h1d{height:59.939998px;}
.h3b{height:62.243997px;}
.h38{height:64.022396px;}
.h8{height:71.135997px;}
.h7{height:71.351997px;}
.hb{height:78.679688px;}
.h10{height:80.027997px;}
.h5{height:84.730496px;}
.h1c{height:95.976559px;}
.h6{height:106.703996px;}
.h3{height:107.027996px;}
.h39{height:109.022394px;}
.h22{height:112.570307px;}
.hf{height:132.820306px;}
.h30{height:140.624994px;}
.h2c{height:142.945306px;}
.h14{height:161.999993px;}
.h19{height:168.749993px;}
.h1e{height:184.499992px;}
.h20{height:205.874991px;}
.h33{height:212.695303px;}
.h3a{height:219.374991px;}
.h15{height:229.499990px;}
.h36{height:231.820302px;}
.h1a{height:231.893990px;}
.h2e{height:246.374990px;}
.h1b{height:251.999989px;}
.h2b{height:263.249989px;}
.h31{height:268.874989px;}
.h2a{height:268.945300px;}
.h23{height:278.999988px;}
.h2f{height:286.874988px;}
.h34{height:287.999988px;}
.h2d{height:289.124988px;}
.he{height:299.320299px;}
.h18{height:301.570299px;}
.h27{height:304.874987px;}
.h11{height:307.124987px;}
.h35{height:364.499985px;}
.h13{height:371.249985px;}
.h16{height:395.999984px;}
.h26{height:397.124983px;}
.h21{height:422.999982px;}
.h12{height:429.820294px;}
.h28{height:447.749981px;}
.h25{height:448.874981px;}
.h29{height:449.999981px;}
.h32{height:473.624980px;}
.h37{height:511.874979px;}
.h24{height:582.749976px;}
.hd{height:872.999964px;}
.h4{height:996.820266px;}
.h2{height:1087.945263px;}
.h17{height:1177.945259px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w6{width:70.874997px;}
.w9{width:78.749997px;}
.w3{width:156.374993px;}
.w7{width:475.874980px;}
.w4{width:735.749969px;}
.w2{width:807.855446px;}
.w8{width:813.374966px;}
.w5{width:821.249966px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:8.613281px;}
.x2{left:22.499999px;}
.xd{left:33.749999px;}
.x20{left:34.874999px;}
.x3{left:35.999999px;}
.x1e{left:41.624998px;}
.x1{left:42.749998px;}
.x1d{left:79.857419px;}
.x11{left:85.837500px;}
.x1a{left:104.425500px;}
.x1c{left:111.374995px;}
.x26{left:114.556636px;}
.x15{left:128.149500px;}
.x16{left:141.553500px;}
.x17{left:146.386500px;}
.x18{left:147.597000px;}
.x4{left:156.374993px;}
.x2b{left:211.499991px;}
.x28{left:243.527334px;}
.x27{left:246.550771px;}
.x14{left:264.810000px;}
.xf{left:288.825000px;}
.x5{left:290.302728px;}
.xc{left:294.600000px;}
.x13{left:315.120000px;}
.x10{left:322.800000px;}
.x2e{left:354.450000px;}
.x12{left:356.880000px;}
.x19{left:359.145000px;}
.x1b{left:360.375000px;}
.x21{left:363.210000px;}
.xb{left:380.760000px;}
.x24{left:401.150380px;}
.x23{left:406.423817px;}
.x25{left:431.999982px;}
.x22{left:433.124982px;}
.x2c{left:445.394513px;}
.x1f{left:518.871072px;}
.x8{left:542.130000px;}
.xe{left:563.055000px;}
.xa{left:580.635000px;}
.x9{left:628.005000px;}
.x29{left:697.728492px;}
.x2a{left:706.060523px;}
.x2d{left:813.374966px;}
.x6{left:821.249966px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:39.999998pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.031270pt;}
.ws5{word-spacing:-28.799999pt;}
.ws3{word-spacing:-22.799999pt;}
.ws4{word-spacing:-21.599999pt;}
.ws0{word-spacing:-19.199999pt;}
.ws6{word-spacing:-19.007999pt;}
.ws7{word-spacing:-17.781249pt;}
.wsc{word-spacing:-17.279999pt;}
.ws1{word-spacing:-13.554022pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:92.799996pt;}
.wsd{word-spacing:253.238222pt;}
.wse{word-spacing:297.296062pt;}
.wsb{word-spacing:310.127488pt;}
.wsa{word-spacing:881.875449pt;}
.ws9{word-spacing:1121.057930pt;}
._1{margin-left:-2.622669pt;}
._0{margin-left:-0.902149pt;}
._c{width:382.270559pt;}
._a{width:585.160496pt;}
._3{width:751.527969pt;}
._8{width:786.142487pt;}
._2{width:795.231967pt;}
._5{width:830.367965pt;}
._6{width:894.519963pt;}
._4{width:898.839963pt;}
._b{width:977.560479pt;}
._9{width:985.078479pt;}
._7{width:1197.982470pt;}
.fs3{font-size:42.639997pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:55.999998pt;}
.fs9{font-size:57.599996pt;}
.fs2{font-size:63.999997pt;}
.fs6{font-size:71.999997pt;}
.fs1{font-size:75.999997pt;}
.fs0{font-size:95.999996pt;}
.fs4{font-size:96.000000pt;}
.fs8{font-size:127.999995pt;}
.fs7{font-size:207.999991pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.000000pt;}
.y68{bottom:14.999999pt;}
.y19{bottom:15.062495pt;}
.y21{bottom:16.330667pt;}
.yc9{bottom:16.598667pt;}
.y5d{bottom:17.778667pt;}
.y1c{bottom:19.560019pt;}
.ycb{bottom:19.597333pt;}
.y6c{bottom:19.681333pt;}
.ya7{bottom:20.997333pt;}
.y8c{bottom:21.884000pt;}
.y47{bottom:22.182667pt;}
.yb1{bottom:22.360000pt;}
.y78{bottom:22.540000pt;}
.y9a{bottom:22.896000pt;}
.y5a{bottom:35.999998pt;}
.yc4{bottom:36.999998pt;}
.y3b{bottom:37.062498pt;}
.y35{bottom:37.497519pt;}
.y1{bottom:37.497523pt;}
.y8b{bottom:37.999998pt;}
.y99{bottom:38.062498pt;}
.y66{bottom:45.062497pt;}
.y18{bottom:49.062494pt;}
.y6b{bottom:49.999998pt;}
.y7c{bottom:50.560018pt;}
.y74{bottom:57.062497pt;}
.yc3{bottom:57.999998pt;}
.y59{bottom:62.999997pt;}
.y3a{bottom:64.062497pt;}
.ya6{bottom:70.999997pt;}
.y98{bottom:73.062496pt;}
.y95{bottom:74.999997pt;}
.yc2{bottom:78.999997pt;}
.y6a{bottom:79.999997pt;}
.ya3{bottom:80.560017pt;}
.y65{bottom:81.062496pt;}
.y17{bottom:87.062492pt;}
.yb6{bottom:89.062495pt;}
.y5c{bottom:89.999996pt;}
.y85{bottom:96.999996pt;}
.y58{bottom:97.999996pt;}
.y39{bottom:99.062495pt;}
.yc8{bottom:101.999996pt;}
.y86{bottom:102.560016pt;}
.y34{bottom:104.999996pt;}
.y9f{bottom:105.999996pt;}
.y97{bottom:108.062495pt;}
.yaf{bottom:110.062495pt;}
.y20{bottom:119.092000pt;}
.yc1{bottom:119.999995pt;}
.y16{bottom:121.062491pt;}
.y77{bottom:123.999995pt;}
.y57{bottom:124.999995pt;}
.yb5{bottom:125.062494pt;}
.y8a{bottom:130.999995pt;}
.y84{bottom:131.999994pt;}
.ya2{bottom:137.999994pt;}
.yc7{bottom:138.999994pt;}
.y71{bottom:139.999994pt;}
.y33{bottom:140.999994pt;}
.y9e{bottom:141.999994pt;}
.y72{bottom:142.560014pt;}
.yae{bottom:146.062493pt;}
.y38{bottom:151.062493pt;}
.y64{bottom:153.062493pt;}
.y4f{bottom:157.062493pt;}
.y93{bottom:158.062493pt;}
.y5f{bottom:158.999993pt;}
.y15{bottom:159.062489pt;}
.y56{bottom:159.999993pt;}
.yb4{bottom:161.062492pt;}
.y6f{bottom:161.999993pt;}
.yc6{bottom:165.999993pt;}
.y83{bottom:166.999993pt;}
.y89{bottom:167.999993pt;}
.ya1{bottom:173.999993pt;}
.y32{bottom:176.999993pt;}
.y37{bottom:187.062491pt;}
.y76{bottom:193.999992pt;}
.y92{bottom:194.062491pt;}
.y75{bottom:194.560012pt;}
.y55{bottom:194.999992pt;}
.y14{bottom:195.062488pt;}
.ya9{bottom:195.999992pt;}
.y82{bottom:201.999992pt;}
.yc0{bottom:202.999992pt;}
.y88{bottom:204.999991pt;}
.ya4{bottom:209.999991pt;}
.y9d{bottom:211.999991pt;}
.y31{bottom:212.999991pt;}
.y54{bottom:221.999991pt;}
.y36{bottom:222.062490pt;}
.y63{bottom:223.062490pt;}
.ybf{bottom:223.999991pt;}
.y4a{bottom:228.999990pt;}
.y13{bottom:231.062486pt;}
.y4e{bottom:231.062490pt;}
.yad{bottom:231.560010pt;}
.y81{bottom:236.999990pt;}
.y87{bottom:241.999990pt;}
.ybe{bottom:244.999990pt;}
.yb2{bottom:248.560010pt;}
.y53{bottom:256.999989pt;}
.y12{bottom:265.062485pt;}
.y4d{bottom:267.062488pt;}
.y80{bottom:271.999989pt;}
.yb3{bottom:280.999988pt;}
.y90{bottom:281.560008pt;}
.y52{bottom:283.999988pt;}
.y30{bottom:284.999988pt;}
.ybd{bottom:285.999988pt;}
.yc5{bottom:301.560008pt;}
.y11{bottom:303.062483pt;}
.y4c{bottom:303.062487pt;}
.y62{bottom:304.062483pt;}
.y61{bottom:306.999987pt;}
.y23{bottom:308.560007pt;}
.y51{bottom:310.999987pt;}
.y8f{bottom:316.999987pt;}
.y2f{bottom:320.999987pt;}
.y73{bottom:332.999986pt;}
.y7f{bottom:333.999986pt;}
.y96{bottom:334.560006pt;}
.y10{bottom:339.062482pt;}
.y4b{bottom:339.062485pt;}
.yac{bottom:339.999986pt;}
.ya0{bottom:340.560006pt;}
.ybc{bottom:347.999985pt;}
.y8e{bottom:352.999985pt;}
.y7d{bottom:353.999985pt;}
.y91{bottom:354.999985pt;}
.y2e{bottom:356.999985pt;}
.ybb{bottom:368.999985pt;}
.yf{bottom:375.062480pt;}
.yab{bottom:375.999984pt;}
.y60{bottom:391.560004pt;}
.yb8{bottom:399.999983pt;}
.ye{bottom:409.062479pt;}
.yba{bottom:409.999983pt;}
.y3e{bottom:414.186667pt;}
.yaa{bottom:419.560003pt;}
.y49{bottom:424.560002pt;}
.y2d{bottom:428.999982pt;}
.yb9{bottom:430.999982pt;}
.y7b{bottom:436.999982pt;}
.y69{bottom:443.560002pt;}
.yd{bottom:447.062477pt;}
.y42{bottom:448.040000pt;}
.y79{bottom:454.560001pt;}
.y2c{bottom:464.999981pt;}
.yb0{bottom:472.560000pt;}
.y7a{bottom:472.999980pt;}
.y5b{bottom:477.560000pt;}
.y1d{bottom:480.800000pt;}
.yc{bottom:483.062476pt;}
.y1f{bottom:485.173333pt;}
.y22{bottom:486.400000pt;}
.y2b{bottom:500.999979pt;}
.y7e{bottom:507.559999pt;}
.y67{bottom:515.559999pt;}
.y1e{bottom:516.773333pt;}
.y70{bottom:523.559998pt;}
.y2a{bottom:536.999978pt;}
.yb{bottom:555.062473pt;}
.y9c{bottom:564.559997pt;}
.y29{bottom:572.999976pt;}
.y44{bottom:586.733333pt;}
.ya{bottom:591.062471pt;}
.y28{bottom:608.999975pt;}
.y9{bottom:627.062470pt;}
.y40{bottom:628.120000pt;}
.yb7{bottom:629.559994pt;}
.y27{bottom:644.999973pt;}
.y8{bottom:663.062468pt;}
.y26{bottom:680.999972pt;}
.y8d{bottom:686.559991pt;}
.y7{bottom:697.062467pt;}
.y6e{bottom:711.559990pt;}
.y25{bottom:716.999970pt;}
.y41{bottom:732.826667pt;}
.y6{bottom:734.062465pt;}
.y94{bottom:738.559989pt;}
.y5e{bottom:748.559989pt;}
.y24{bottom:752.999969pt;}
.y50{bottom:754.559989pt;}
.y5{bottom:770.062464pt;}
.y43{bottom:774.813333pt;}
.y4{bottom:805.062462pt;}
.y3f{bottom:809.240000pt;}
.y9b{bottom:820.062462pt;}
.y3{bottom:841.062461pt;}
.y46{bottom:841.906667pt;}
.ya8{bottom:845.559985pt;}
.yca{bottom:855.062460pt;}
.y45{bottom:874.640000pt;}
.y3d{bottom:917.426667pt;}
.y6d{bottom:920.559982pt;}
.y2{bottom:922.062458pt;}
.ya5{bottom:959.559980pt;}
.y48{bottom:989.946667pt;}
.y3c{bottom:1023.866667pt;}
.y1a{bottom:1089.559975pt;}
.h9{height:12.999999pt;}
.ha{height:32.396404pt;}
.hc{height:34.968750pt;}
.h1f{height:46.374998pt;}
.h1d{height:53.279998pt;}
.h3b{height:55.327998pt;}
.h38{height:56.908796pt;}
.h8{height:63.231997pt;}
.h7{height:63.423997pt;}
.hb{height:69.937500pt;}
.h10{height:71.135997pt;}
.h5{height:75.315997pt;}
.h1c{height:85.312496pt;}
.h6{height:94.847996pt;}
.h3{height:95.135996pt;}
.h39{height:96.908794pt;}
.h22{height:100.062495pt;}
.hf{height:118.062494pt;}
.h30{height:124.999995pt;}
.h2c{height:127.062494pt;}
.h14{height:143.999994pt;}
.h19{height:149.999994pt;}
.h1e{height:163.999993pt;}
.h20{height:182.999992pt;}
.h33{height:189.062491pt;}
.h3a{height:194.999992pt;}
.h15{height:203.999992pt;}
.h36{height:206.062491pt;}
.h1a{height:206.127991pt;}
.h2e{height:218.999991pt;}
.h1b{height:223.999991pt;}
.h2b{height:233.999990pt;}
.h31{height:238.999990pt;}
.h2a{height:239.062489pt;}
.h23{height:247.999990pt;}
.h2f{height:254.999989pt;}
.h34{height:255.999989pt;}
.h2d{height:256.999989pt;}
.he{height:266.062488pt;}
.h18{height:268.062488pt;}
.h27{height:270.999989pt;}
.h11{height:272.999989pt;}
.h35{height:323.999987pt;}
.h13{height:329.999986pt;}
.h16{height:351.999985pt;}
.h26{height:352.999985pt;}
.h21{height:375.999984pt;}
.h12{height:382.062483pt;}
.h28{height:397.999983pt;}
.h25{height:398.999983pt;}
.h29{height:399.999983pt;}
.h32{height:420.999982pt;}
.h37{height:454.999981pt;}
.h24{height:517.999978pt;}
.hd{height:775.999968pt;}
.h4{height:886.062459pt;}
.h2{height:967.062456pt;}
.h17{height:1047.062452pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w6{width:62.999997pt;}
.w9{width:69.999997pt;}
.w3{width:138.999994pt;}
.w7{width:422.999982pt;}
.w4{width:653.999973pt;}
.w2{width:718.093730pt;}
.w8{width:722.999970pt;}
.w5{width:729.999970pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:7.656250pt;}
.x2{left:19.999999pt;}
.xd{left:29.999999pt;}
.x20{left:30.999999pt;}
.x3{left:31.999999pt;}
.x1e{left:36.999998pt;}
.x1{left:37.999998pt;}
.x1d{left:70.984372pt;}
.x11{left:76.300000pt;}
.x1a{left:92.822667pt;}
.x1c{left:98.999996pt;}
.x26{left:101.828121pt;}
.x15{left:113.910667pt;}
.x16{left:125.825333pt;}
.x17{left:130.121333pt;}
.x18{left:131.197333pt;}
.x4{left:138.999994pt;}
.x2b{left:187.999992pt;}
.x28{left:216.468741pt;}
.x27{left:219.156241pt;}
.x14{left:235.386667pt;}
.xf{left:256.733333pt;}
.x5{left:258.046869pt;}
.xc{left:261.866667pt;}
.x13{left:280.106667pt;}
.x10{left:286.933333pt;}
.x2e{left:315.066667pt;}
.x12{left:317.226667pt;}
.x19{left:319.240000pt;}
.x1b{left:320.333333pt;}
.x21{left:322.853333pt;}
.xb{left:338.453333pt;}
.x24{left:356.578115pt;}
.x23{left:361.265615pt;}
.x25{left:383.999984pt;}
.x22{left:384.999984pt;}
.x2c{left:395.906234pt;}
.x1f{left:461.218731pt;}
.x8{left:481.893333pt;}
.xe{left:500.493333pt;}
.xa{left:516.120000pt;}
.x9{left:558.226667pt;}
.x29{left:620.203104pt;}
.x2a{left:627.609354pt;}
.x2d{left:722.999970pt;}
.x6{left:729.999970pt;}
}




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