
    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_147595fb28fb1f88371ba571.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_155204a48954a89b7222c38a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_4296d7ff32866303a11ad919.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_8ef766be9f50eed085fd5812.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.086508px;}
.lse{letter-spacing:-0.048060px;}
.ls15{letter-spacing:-0.039528px;}
.lsc{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.019764px;}
.ls11{letter-spacing:0.026352px;}
.ls2{letter-spacing:0.039528px;}
.lsb{letter-spacing:0.046116px;}
.ls7{letter-spacing:0.052704px;}
.ls3{letter-spacing:0.059292px;}
.ls8{letter-spacing:0.065880px;}
.ls4{letter-spacing:0.072468px;}
.ls6{letter-spacing:0.079056px;}
.ls0{letter-spacing:0.085644px;}
.ls5{letter-spacing:0.092232px;}
.ls1{letter-spacing:0.098820px;}
.ls10{letter-spacing:0.105408px;}
.ls12{letter-spacing:0.111996px;}
.ls14{letter-spacing:0.118584px;}
.lsf{letter-spacing:0.125172px;}
.ls13{letter-spacing:0.375516px;}
.lsa{letter-spacing:1.126548px;}
.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;}
}
.ws53{word-spacing:-18.393696px;}
.ws52{word-spacing:-18.340992px;}
.ws0{word-spacing:-18.314640px;}
.ws9f{word-spacing:-0.421632px;}
.wsa{word-spacing:-0.401868px;}
.ws45{word-spacing:-0.395280px;}
.ws40{word-spacing:-0.388692px;}
.ws2d{word-spacing:-0.382104px;}
.ws26{word-spacing:-0.375516px;}
.ws3{word-spacing:-0.374868px;}
.ws82{word-spacing:-0.052704px;}
.ws71{word-spacing:-0.026352px;}
.ws18{word-spacing:-0.019764px;}
.ws46{word-spacing:-0.013176px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.019224px;}
.wsb{word-spacing:0.019764px;}
.ws93{word-spacing:0.322812px;}
.ws24{word-spacing:0.329400px;}
.ws80{word-spacing:0.335988px;}
.ws92{word-spacing:0.349164px;}
.ws43{word-spacing:0.678564px;}
.ws7f{word-spacing:0.704916px;}
.ws69{word-spacing:0.764208px;}
.ws5b{word-spacing:1.040904px;}
.ws41{word-spacing:1.054080px;}
.ws22{word-spacing:1.060668px;}
.ws95{word-spacing:1.067256px;}
.ws21{word-spacing:1.093608px;}
.ws79{word-spacing:1.403244px;}
.ws54{word-spacing:1.409832px;}
.ws38{word-spacing:1.416420px;}
.ws20{word-spacing:1.423008px;}
.ws1f{word-spacing:1.475712px;}
.ws4f{word-spacing:1.765584px;}
.ws56{word-spacing:1.772172px;}
.ws85{word-spacing:1.785348px;}
.ws91{word-spacing:1.791936px;}
.ws6b{word-spacing:2.114748px;}
.ws23{word-spacing:2.121336px;}
.ws6{word-spacing:2.127924px;}
.ws48{word-spacing:2.134512px;}
.ws61{word-spacing:2.483676px;}
.ws84{word-spacing:2.496852px;}
.ws8f{word-spacing:2.865780px;}
.ws3c{word-spacing:3.201768px;}
.ws14{word-spacing:3.208356px;}
.ws39{word-spacing:3.214944px;}
.ws7a{word-spacing:3.228120px;}
.ws49{word-spacing:3.564108px;}
.ws3b{word-spacing:3.570696px;}
.ws4b{word-spacing:3.577284px;}
.ws31{word-spacing:3.913272px;}
.ws98{word-spacing:3.919860px;}
.ws2b{word-spacing:3.939624px;}
.ws4d{word-spacing:3.952800px;}
.ws6e{word-spacing:4.282200px;}
.ws4e{word-spacing:4.637952px;}
.ws8a{word-spacing:4.664304px;}
.ws8b{word-spacing:4.677480px;}
.ws66{word-spacing:5.000292px;}
.ws15{word-spacing:5.013468px;}
.ws65{word-spacing:5.020056px;}
.ws64{word-spacing:5.026644px;}
.ws67{word-spacing:5.033232px;}
.ws60{word-spacing:5.356044px;}
.ws5f{word-spacing:5.362632px;}
.ws25{word-spacing:5.369220px;}
.ws28{word-spacing:5.382396px;}
.ws3e{word-spacing:5.395572px;}
.ws33{word-spacing:5.718384px;}
.ws4a{word-spacing:5.731560px;}
.ws47{word-spacing:5.738148px;}
.ws10{word-spacing:5.744736px;}
.ws9a{word-spacing:6.087312px;}
.ws99{word-spacing:6.093900px;}
.ws55{word-spacing:6.100488px;}
.ws16{word-spacing:6.443064px;}
.wsc{word-spacing:6.462828px;}
.ws8{word-spacing:6.818580px;}
.ws2e{word-spacing:6.825168px;}
.ws4c{word-spacing:7.516908px;}
.ws11{word-spacing:7.523496px;}
.ws87{word-spacing:7.536672px;}
.ws7e{word-spacing:7.543260px;}
.ws81{word-spacing:7.569612px;}
.wse{word-spacing:7.879248px;}
.ws6d{word-spacing:7.885836px;}
.wsf{word-spacing:7.892424px;}
.ws6f{word-spacing:7.905600px;}
.ws35{word-spacing:8.235000px;}
.ws5c{word-spacing:8.248176px;}
.ws12{word-spacing:8.254764px;}
.ws36{word-spacing:8.267940px;}
.ws13{word-spacing:8.281116px;}
.ws1a{word-spacing:8.630280px;}
.ws19{word-spacing:8.643456px;}
.ws9{word-spacing:8.966268px;}
.ws5{word-spacing:8.979444px;}
.ws94{word-spacing:8.999208px;}
.ws32{word-spacing:9.328608px;}
.ws3d{word-spacing:9.335196px;}
.ws75{word-spacing:10.046700px;}
.ws2f{word-spacing:10.764792px;}
.ws90{word-spacing:10.784556px;}
.ws73{word-spacing:11.489472px;}
.ws37{word-spacing:11.496060px;}
.ws34{word-spacing:11.851812px;}
.ws29{word-spacing:11.858400px;}
.ws4{word-spacing:12.207564px;}
.ws70{word-spacing:12.214152px;}
.ws51{word-spacing:12.563316px;}
.ws3f{word-spacing:12.589668px;}
.ws8c{word-spacing:12.596256px;}
.ws97{word-spacing:12.958596px;}
.ws72{word-spacing:13.643748px;}
.ws59{word-spacing:13.650336px;}
.ws5a{word-spacing:13.676688px;}
.ws44{word-spacing:14.019264px;}
.ws96{word-spacing:14.039028px;}
.ws7d{word-spacing:14.355252px;}
.ws7c{word-spacing:14.381604px;}
.ws5e{word-spacing:15.442272px;}
.ws5d{word-spacing:15.462036px;}
.ws42{word-spacing:15.817788px;}
.ws74{word-spacing:15.824376px;}
.ws9d{word-spacing:16.160364px;}
.wsd{word-spacing:16.885044px;}
.ws9c{word-spacing:17.240796px;}
.ws2c{word-spacing:17.958888px;}
.ws78{word-spacing:17.972064px;}
.ws1b{word-spacing:17.985240px;}
.ws88{word-spacing:18.018180px;}
.ws27{word-spacing:18.327816px;}
.ws63{word-spacing:19.026144px;}
.ws62{word-spacing:19.045908px;}
.ws86{word-spacing:19.414836px;}
.ws8d{word-spacing:20.146104px;}
.ws89{word-spacing:20.159280px;}
.ws30{word-spacing:20.844432px;}
.ws77{word-spacing:20.857608px;}
.ws3a{word-spacing:21.213360px;}
.ws6c{word-spacing:21.562524px;}
.ws8e{word-spacing:21.938040px;}
.ws17{word-spacing:22.300380px;}
.ws7{word-spacing:23.729976px;}
.ws76{word-spacing:24.085728px;}
.ws2a{word-spacing:25.179336px;}
.ws9e{word-spacing:25.535088px;}
.ws58{word-spacing:25.541676px;}
.ws68{word-spacing:26.246592px;}
.ws57{word-spacing:27.702540px;}
.ws7b{word-spacing:28.058292px;}
.ws50{word-spacing:28.071468px;}
.ws1d{word-spacing:28.400868px;}
.ws1e{word-spacing:28.420632px;}
.ws1c{word-spacing:28.460160px;}
.ws9b{word-spacing:34.521120px;}
.ws6a{word-spacing:34.890048px;}
.ws83{word-spacing:43.540092px;}
._4{margin-left:-28.124172px;}
._3{margin-left:-16.015428px;}
._5{margin-left:-5.395572px;}
._0{margin-left:-1.100196px;}
._1{width:1.218780px;}
._2{width:8.235000px;}
._6{width:170.280036px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:65.880000px;}
.fs0{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:136.832979px;}
.y20{bottom:147.905310px;}
.y77{bottom:150.695778px;}
.y9f{bottom:155.732304px;}
.y50{bottom:162.399360px;}
.y1f{bottom:166.895220px;}
.y76{bottom:169.776273px;}
.y9e{bottom:174.722214px;}
.y4f{bottom:181.389270px;}
.y75{bottom:188.766183px;}
.y9d{bottom:193.712124px;}
.y4e{bottom:200.288595px;}
.y1e{bottom:202.264545px;}
.y74{bottom:207.756093px;}
.y9c{bottom:212.702034px;}
.y4d{bottom:219.278505px;}
.y1d{bottom:221.345040px;}
.y73{bottom:226.746003px;}
.y9b{bottom:231.691944px;}
.y4c{bottom:238.268415px;}
.y1c{bottom:240.334950px;}
.y9a{bottom:250.681854px;}
.y4b{bottom:257.258325px;}
.y1b{bottom:259.234275px;}
.y72{bottom:262.115328px;}
.y99{bottom:269.581179px;}
.y4a{bottom:276.248235px;}
.y1a{bottom:278.224185px;}
.y71{bottom:281.195823px;}
.y98{bottom:288.571089px;}
.y49{bottom:295.238145px;}
.y19{bottom:297.214095px;}
.y70{bottom:300.185733px;}
.y97{bottom:307.560999px;}
.y48{bottom:314.137470px;}
.y18{bottom:316.204005px;}
.y6f{bottom:319.085058px;}
.y96{bottom:326.550909px;}
.y47{bottom:333.127380px;}
.y17{bottom:335.193915px;}
.y6e{bottom:338.074968px;}
.y95{bottom:345.540819px;}
.y46{bottom:352.117290px;}
.y16{bottom:354.093240px;}
.y94{bottom:364.440144px;}
.y15{bottom:373.083150px;}
.y6d{bottom:373.444293px;}
.y93{bottom:383.430054px;}
.y45{bottom:387.486615px;}
.y6c{bottom:392.524788px;}
.y92{bottom:402.419964px;}
.y44{bottom:406.567110px;}
.y14{bottom:408.452475px;}
.y6b{bottom:411.514698px;}
.y91{bottom:421.409874px;}
.y43{bottom:425.557020px;}
.y13{bottom:427.532970px;}
.y6a{bottom:430.504608px;}
.y90{bottom:440.399784px;}
.y42{bottom:444.546930px;}
.y12{bottom:446.522880px;}
.y69{bottom:449.494518px;}
.y8f{bottom:459.299109px;}
.y41{bottom:463.446255px;}
.y11{bottom:465.512790px;}
.y68{bottom:468.393843px;}
.y8e{bottom:478.289019px;}
.y40{bottom:482.436165px;}
.y10{bottom:484.502700px;}
.y8d{bottom:497.278929px;}
.yf{bottom:503.402025px;}
.y67{bottom:503.853753px;}
.y8c{bottom:516.268839px;}
.y3f{bottom:517.805490px;}
.y66{bottom:522.843663px;}
.y8b{bottom:535.258749px;}
.y3e{bottom:536.885985px;}
.ye{bottom:538.861935px;}
.y65{bottom:541.833573px;}
.y3d{bottom:555.875895px;}
.y64{bottom:560.823483px;}
.y8a{bottom:570.628074px;}
.yd{bottom:574.321845px;}
.y3c{bottom:574.865805px;}
.y89{bottom:589.708569px;}
.y3b{bottom:593.855715px;}
.y63{bottom:596.192808px;}
.yae{bottom:608.612835px;}
.y88{bottom:608.698479px;}
.yc{bottom:609.781755px;}
.y3a{bottom:612.755040px;}
.y62{bottom:615.273303px;}
.yb{bottom:628.862250px;}
.y39{bottom:631.744950px;}
.y61{bottom:634.263213px;}
.y87{bottom:643.978866px;}
.yad{bottom:644.072745px;}
.ya{bottom:647.852160px;}
.y38{bottom:650.734860px;}
.y9{bottom:666.751485px;}
.y60{bottom:669.632538px;}
.y37{bottom:669.724770px;}
.y86{bottom:679.438776px;}
.yac{bottom:679.532655px;}
.y8{bottom:685.741395px;}
.y5f{bottom:688.713033px;}
.y36{bottom:688.714680px;}
.y85{bottom:698.519271px;}
.yab{bottom:698.613150px;}
.y7{bottom:704.731305px;}
.y5e{bottom:707.702943px;}
.y35{bottom:707.704590px;}
.y6{bottom:723.721215px;}
.y5d{bottom:726.602268px;}
.y34{bottom:726.603915px;}
.y84{bottom:733.979181px;}
.yaa{bottom:733.982475px;}
.y5c{bottom:745.592178px;}
.y33{bottom:745.593825px;}
.y83{bottom:753.059676px;}
.ya9{bottom:753.062970px;}
.y5{bottom:759.090540px;}
.y5b{bottom:764.582088px;}
.y32{bottom:764.583735px;}
.y82{bottom:771.959001px;}
.ya8{bottom:771.962295px;}
.y5a{bottom:783.571998px;}
.y31{bottom:783.573645px;}
.y81{bottom:790.948911px;}
.y4{bottom:794.550450px;}
.y30{bottom:802.563555px;}
.ya7{bottom:807.422205px;}
.y80{bottom:809.938821px;}
.y59{bottom:818.941323px;}
.y2f{bottom:821.462880px;}
.ya6{bottom:826.412115px;}
.y3{bottom:831.630738px;}
.y58{bottom:838.021818px;}
.y2e{bottom:840.452790px;}
.y7f{bottom:845.219208px;}
.y57{bottom:857.011728px;}
.y2d{bottom:859.442700px;}
.ya5{bottom:861.872025px;}
.y2{bottom:875.730594px;}
.y56{bottom:875.822115px;}
.y2c{bottom:878.432610px;}
.y7e{bottom:880.769703px;}
.ya4{bottom:880.861935px;}
.y55{bottom:894.902610px;}
.y7d{bottom:899.850198px;}
.y2b{bottom:913.801935px;}
.y54{bottom:913.892520px;}
.ya3{bottom:916.231260px;}
.y7c{bottom:918.840108px;}
.y1{bottom:919.830450px;}
.y2a{bottom:932.882430px;}
.ya2{bottom:951.781755px;}
.y29{bottom:951.872340px;}
.y7b{bottom:954.120495px;}
.y28{bottom:970.771665px;}
.y7a{bottom:989.670990px;}
.y27{bottom:989.761575px;}
.y26{bottom:1008.751485px;}
.y25{bottom:1027.741395px;}
.y79{bottom:1044.120810px;}
.y53{bottom:1046.731305px;}
.y24{bottom:1063.110720px;}
.y78{bottom:1063.201305px;}
.y52{bottom:1065.721215px;}
.ya1{bottom:1082.100630px;}
.y23{bottom:1082.191215px;}
.y51{bottom:1101.090540px;}
.y22{bottom:1101.181125px;}
.y21{bottom:1120.080450px;}
.h2{height:68.710781px;}
.h1{height:100.250156px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x5{left:127.620135px;}
.x4{left:180.810000px;}
.x2{left:192.510063px;}
.x3{left:285.119280px;}
.x1{left:473.130000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.076896pt;}
.lse{letter-spacing:-0.042720pt;}
.ls15{letter-spacing:-0.035136pt;}
.lsc{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.017568pt;}
.ls11{letter-spacing:0.023424pt;}
.ls2{letter-spacing:0.035136pt;}
.lsb{letter-spacing:0.040992pt;}
.ls7{letter-spacing:0.046848pt;}
.ls3{letter-spacing:0.052704pt;}
.ls8{letter-spacing:0.058560pt;}
.ls4{letter-spacing:0.064416pt;}
.ls6{letter-spacing:0.070272pt;}
.ls0{letter-spacing:0.076128pt;}
.ls5{letter-spacing:0.081984pt;}
.ls1{letter-spacing:0.087840pt;}
.ls10{letter-spacing:0.093696pt;}
.ls12{letter-spacing:0.099552pt;}
.ls14{letter-spacing:0.105408pt;}
.lsf{letter-spacing:0.111264pt;}
.ls13{letter-spacing:0.333792pt;}
.lsa{letter-spacing:1.001376pt;}
.ws53{word-spacing:-16.349952pt;}
.ws52{word-spacing:-16.303104pt;}
.ws0{word-spacing:-16.279680pt;}
.ws9f{word-spacing:-0.374784pt;}
.wsa{word-spacing:-0.357216pt;}
.ws45{word-spacing:-0.351360pt;}
.ws40{word-spacing:-0.345504pt;}
.ws2d{word-spacing:-0.339648pt;}
.ws26{word-spacing:-0.333792pt;}
.ws3{word-spacing:-0.333216pt;}
.ws82{word-spacing:-0.046848pt;}
.ws71{word-spacing:-0.023424pt;}
.ws18{word-spacing:-0.017568pt;}
.ws46{word-spacing:-0.011712pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.017088pt;}
.wsb{word-spacing:0.017568pt;}
.ws93{word-spacing:0.286944pt;}
.ws24{word-spacing:0.292800pt;}
.ws80{word-spacing:0.298656pt;}
.ws92{word-spacing:0.310368pt;}
.ws43{word-spacing:0.603168pt;}
.ws7f{word-spacing:0.626592pt;}
.ws69{word-spacing:0.679296pt;}
.ws5b{word-spacing:0.925248pt;}
.ws41{word-spacing:0.936960pt;}
.ws22{word-spacing:0.942816pt;}
.ws95{word-spacing:0.948672pt;}
.ws21{word-spacing:0.972096pt;}
.ws79{word-spacing:1.247328pt;}
.ws54{word-spacing:1.253184pt;}
.ws38{word-spacing:1.259040pt;}
.ws20{word-spacing:1.264896pt;}
.ws1f{word-spacing:1.311744pt;}
.ws4f{word-spacing:1.569408pt;}
.ws56{word-spacing:1.575264pt;}
.ws85{word-spacing:1.586976pt;}
.ws91{word-spacing:1.592832pt;}
.ws6b{word-spacing:1.879776pt;}
.ws23{word-spacing:1.885632pt;}
.ws6{word-spacing:1.891488pt;}
.ws48{word-spacing:1.897344pt;}
.ws61{word-spacing:2.207712pt;}
.ws84{word-spacing:2.219424pt;}
.ws8f{word-spacing:2.547360pt;}
.ws3c{word-spacing:2.846016pt;}
.ws14{word-spacing:2.851872pt;}
.ws39{word-spacing:2.857728pt;}
.ws7a{word-spacing:2.869440pt;}
.ws49{word-spacing:3.168096pt;}
.ws3b{word-spacing:3.173952pt;}
.ws4b{word-spacing:3.179808pt;}
.ws31{word-spacing:3.478464pt;}
.ws98{word-spacing:3.484320pt;}
.ws2b{word-spacing:3.501888pt;}
.ws4d{word-spacing:3.513600pt;}
.ws6e{word-spacing:3.806400pt;}
.ws4e{word-spacing:4.122624pt;}
.ws8a{word-spacing:4.146048pt;}
.ws8b{word-spacing:4.157760pt;}
.ws66{word-spacing:4.444704pt;}
.ws15{word-spacing:4.456416pt;}
.ws65{word-spacing:4.462272pt;}
.ws64{word-spacing:4.468128pt;}
.ws67{word-spacing:4.473984pt;}
.ws60{word-spacing:4.760928pt;}
.ws5f{word-spacing:4.766784pt;}
.ws25{word-spacing:4.772640pt;}
.ws28{word-spacing:4.784352pt;}
.ws3e{word-spacing:4.796064pt;}
.ws33{word-spacing:5.083008pt;}
.ws4a{word-spacing:5.094720pt;}
.ws47{word-spacing:5.100576pt;}
.ws10{word-spacing:5.106432pt;}
.ws9a{word-spacing:5.410944pt;}
.ws99{word-spacing:5.416800pt;}
.ws55{word-spacing:5.422656pt;}
.ws16{word-spacing:5.727168pt;}
.wsc{word-spacing:5.744736pt;}
.ws8{word-spacing:6.060960pt;}
.ws2e{word-spacing:6.066816pt;}
.ws4c{word-spacing:6.681696pt;}
.ws11{word-spacing:6.687552pt;}
.ws87{word-spacing:6.699264pt;}
.ws7e{word-spacing:6.705120pt;}
.ws81{word-spacing:6.728544pt;}
.wse{word-spacing:7.003776pt;}
.ws6d{word-spacing:7.009632pt;}
.wsf{word-spacing:7.015488pt;}
.ws6f{word-spacing:7.027200pt;}
.ws35{word-spacing:7.320000pt;}
.ws5c{word-spacing:7.331712pt;}
.ws12{word-spacing:7.337568pt;}
.ws36{word-spacing:7.349280pt;}
.ws13{word-spacing:7.360992pt;}
.ws1a{word-spacing:7.671360pt;}
.ws19{word-spacing:7.683072pt;}
.ws9{word-spacing:7.970016pt;}
.ws5{word-spacing:7.981728pt;}
.ws94{word-spacing:7.999296pt;}
.ws32{word-spacing:8.292096pt;}
.ws3d{word-spacing:8.297952pt;}
.ws75{word-spacing:8.930400pt;}
.ws2f{word-spacing:9.568704pt;}
.ws90{word-spacing:9.586272pt;}
.ws73{word-spacing:10.212864pt;}
.ws37{word-spacing:10.218720pt;}
.ws34{word-spacing:10.534944pt;}
.ws29{word-spacing:10.540800pt;}
.ws4{word-spacing:10.851168pt;}
.ws70{word-spacing:10.857024pt;}
.ws51{word-spacing:11.167392pt;}
.ws3f{word-spacing:11.190816pt;}
.ws8c{word-spacing:11.196672pt;}
.ws97{word-spacing:11.518752pt;}
.ws72{word-spacing:12.127776pt;}
.ws59{word-spacing:12.133632pt;}
.ws5a{word-spacing:12.157056pt;}
.ws44{word-spacing:12.461568pt;}
.ws96{word-spacing:12.479136pt;}
.ws7d{word-spacing:12.760224pt;}
.ws7c{word-spacing:12.783648pt;}
.ws5e{word-spacing:13.726464pt;}
.ws5d{word-spacing:13.744032pt;}
.ws42{word-spacing:14.060256pt;}
.ws74{word-spacing:14.066112pt;}
.ws9d{word-spacing:14.364768pt;}
.wsd{word-spacing:15.008928pt;}
.ws9c{word-spacing:15.325152pt;}
.ws2c{word-spacing:15.963456pt;}
.ws78{word-spacing:15.975168pt;}
.ws1b{word-spacing:15.986880pt;}
.ws88{word-spacing:16.016160pt;}
.ws27{word-spacing:16.291392pt;}
.ws63{word-spacing:16.912128pt;}
.ws62{word-spacing:16.929696pt;}
.ws86{word-spacing:17.257632pt;}
.ws8d{word-spacing:17.907648pt;}
.ws89{word-spacing:17.919360pt;}
.ws30{word-spacing:18.528384pt;}
.ws77{word-spacing:18.540096pt;}
.ws3a{word-spacing:18.856320pt;}
.ws6c{word-spacing:19.166688pt;}
.ws8e{word-spacing:19.500480pt;}
.ws17{word-spacing:19.822560pt;}
.ws7{word-spacing:21.093312pt;}
.ws76{word-spacing:21.409536pt;}
.ws2a{word-spacing:22.381632pt;}
.ws9e{word-spacing:22.697856pt;}
.ws58{word-spacing:22.703712pt;}
.ws68{word-spacing:23.330304pt;}
.ws57{word-spacing:24.624480pt;}
.ws7b{word-spacing:24.940704pt;}
.ws50{word-spacing:24.952416pt;}
.ws1d{word-spacing:25.245216pt;}
.ws1e{word-spacing:25.262784pt;}
.ws1c{word-spacing:25.297920pt;}
.ws9b{word-spacing:30.685440pt;}
.ws6a{word-spacing:31.013376pt;}
.ws83{word-spacing:38.702304pt;}
._4{margin-left:-24.999264pt;}
._3{margin-left:-14.235936pt;}
._5{margin-left:-4.796064pt;}
._0{margin-left:-0.977952pt;}
._1{width:1.083360pt;}
._2{width:7.320000pt;}
._6{width:151.360032pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:121.629315pt;}
.y20{bottom:131.471387pt;}
.y77{bottom:133.951803pt;}
.y9f{bottom:138.428715pt;}
.y50{bottom:144.354987pt;}
.y1f{bottom:148.351307pt;}
.y76{bottom:150.912243pt;}
.y9e{bottom:155.308635pt;}
.y4f{bottom:161.234907pt;}
.y75{bottom:167.792163pt;}
.y9d{bottom:172.188555pt;}
.y4e{bottom:178.034307pt;}
.y1e{bottom:179.790707pt;}
.y74{bottom:184.672083pt;}
.y9c{bottom:189.068475pt;}
.y4d{bottom:194.914227pt;}
.y1d{bottom:196.751147pt;}
.y73{bottom:201.552003pt;}
.y9b{bottom:205.948395pt;}
.y4c{bottom:211.794147pt;}
.y1c{bottom:213.631067pt;}
.y9a{bottom:222.828315pt;}
.y4b{bottom:228.674067pt;}
.y1b{bottom:230.430467pt;}
.y72{bottom:232.991403pt;}
.y99{bottom:239.627715pt;}
.y4a{bottom:245.553987pt;}
.y1a{bottom:247.310387pt;}
.y71{bottom:249.951843pt;}
.y98{bottom:256.507635pt;}
.y49{bottom:262.433907pt;}
.y19{bottom:264.190307pt;}
.y70{bottom:266.831763pt;}
.y97{bottom:273.387555pt;}
.y48{bottom:279.233307pt;}
.y18{bottom:281.070227pt;}
.y6f{bottom:283.631163pt;}
.y96{bottom:290.267475pt;}
.y47{bottom:296.113227pt;}
.y17{bottom:297.950147pt;}
.y6e{bottom:300.511083pt;}
.y95{bottom:307.147395pt;}
.y46{bottom:312.993147pt;}
.y16{bottom:314.749547pt;}
.y94{bottom:323.946795pt;}
.y15{bottom:331.629467pt;}
.y6d{bottom:331.950483pt;}
.y93{bottom:340.826715pt;}
.y45{bottom:344.432547pt;}
.y6c{bottom:348.910923pt;}
.y92{bottom:357.706635pt;}
.y44{bottom:361.392987pt;}
.y14{bottom:363.068867pt;}
.y6b{bottom:365.790843pt;}
.y91{bottom:374.586555pt;}
.y43{bottom:378.272907pt;}
.y13{bottom:380.029307pt;}
.y6a{bottom:382.670763pt;}
.y90{bottom:391.466475pt;}
.y42{bottom:395.152827pt;}
.y12{bottom:396.909227pt;}
.y69{bottom:399.550683pt;}
.y8f{bottom:408.265875pt;}
.y41{bottom:411.952227pt;}
.y11{bottom:413.789147pt;}
.y68{bottom:416.350083pt;}
.y8e{bottom:425.145795pt;}
.y40{bottom:428.832147pt;}
.y10{bottom:430.669067pt;}
.y8d{bottom:442.025715pt;}
.yf{bottom:447.468467pt;}
.y67{bottom:447.870003pt;}
.y8c{bottom:458.905635pt;}
.y3f{bottom:460.271547pt;}
.y66{bottom:464.749923pt;}
.y8b{bottom:475.785555pt;}
.y3e{bottom:477.231987pt;}
.ye{bottom:478.988387pt;}
.y65{bottom:481.629843pt;}
.y3d{bottom:494.111907pt;}
.y64{bottom:498.509763pt;}
.y8a{bottom:507.224955pt;}
.yd{bottom:510.508307pt;}
.y3c{bottom:510.991827pt;}
.y89{bottom:524.185395pt;}
.y3b{bottom:527.871747pt;}
.y63{bottom:529.949163pt;}
.yae{bottom:540.989187pt;}
.y88{bottom:541.065315pt;}
.yc{bottom:542.028227pt;}
.y3a{bottom:544.671147pt;}
.y62{bottom:546.909603pt;}
.yb{bottom:558.988667pt;}
.y39{bottom:561.551067pt;}
.y61{bottom:563.789523pt;}
.y87{bottom:572.425659pt;}
.yad{bottom:572.509107pt;}
.ya{bottom:575.868587pt;}
.y38{bottom:578.430987pt;}
.y9{bottom:592.667987pt;}
.y60{bottom:595.228923pt;}
.y37{bottom:595.310907pt;}
.y86{bottom:603.945579pt;}
.yac{bottom:604.029027pt;}
.y8{bottom:609.547907pt;}
.y5f{bottom:612.189363pt;}
.y36{bottom:612.190827pt;}
.y85{bottom:620.906019pt;}
.yab{bottom:620.989467pt;}
.y7{bottom:626.427827pt;}
.y5e{bottom:629.069283pt;}
.y35{bottom:629.070747pt;}
.y6{bottom:643.307747pt;}
.y5d{bottom:645.868683pt;}
.y34{bottom:645.870147pt;}
.y84{bottom:652.425939pt;}
.yaa{bottom:652.428867pt;}
.y5c{bottom:662.748603pt;}
.y33{bottom:662.750067pt;}
.y83{bottom:669.386379pt;}
.ya9{bottom:669.389307pt;}
.y5{bottom:674.747147pt;}
.y5b{bottom:679.628523pt;}
.y32{bottom:679.629987pt;}
.y82{bottom:686.185779pt;}
.ya8{bottom:686.188707pt;}
.y5a{bottom:696.508443pt;}
.y31{bottom:696.509907pt;}
.y81{bottom:703.065699pt;}
.y4{bottom:706.267067pt;}
.y30{bottom:713.389827pt;}
.ya7{bottom:717.708627pt;}
.y80{bottom:719.945619pt;}
.y59{bottom:727.947843pt;}
.y2f{bottom:730.189227pt;}
.ya6{bottom:734.588547pt;}
.y3{bottom:739.227323pt;}
.y58{bottom:744.908283pt;}
.y2e{bottom:747.069147pt;}
.y7f{bottom:751.305963pt;}
.y57{bottom:761.788203pt;}
.y2d{bottom:763.949067pt;}
.ya5{bottom:766.108467pt;}
.y2{bottom:778.427195pt;}
.y56{bottom:778.508547pt;}
.y2c{bottom:780.828987pt;}
.y7e{bottom:782.906403pt;}
.ya4{bottom:782.988387pt;}
.y55{bottom:795.468987pt;}
.y7d{bottom:799.866843pt;}
.y2b{bottom:812.268387pt;}
.y54{bottom:812.348907pt;}
.ya3{bottom:814.427787pt;}
.y7c{bottom:816.746763pt;}
.y1{bottom:817.627067pt;}
.y2a{bottom:829.228827pt;}
.ya2{bottom:846.028227pt;}
.y29{bottom:846.108747pt;}
.y7b{bottom:848.107107pt;}
.y28{bottom:862.908147pt;}
.y7a{bottom:879.707547pt;}
.y27{bottom:879.788067pt;}
.y26{bottom:896.667987pt;}
.y25{bottom:913.547907pt;}
.y79{bottom:928.107387pt;}
.y53{bottom:930.427827pt;}
.y24{bottom:944.987307pt;}
.y78{bottom:945.067827pt;}
.y52{bottom:947.307747pt;}
.ya1{bottom:961.867227pt;}
.y23{bottom:961.947747pt;}
.y51{bottom:978.747147pt;}
.y22{bottom:978.827667pt;}
.y21{bottom:995.627067pt;}
.h2{height:61.076250pt;}
.h1{height:89.111250pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x5{left:113.440120pt;}
.x4{left:160.720000pt;}
.x2{left:171.120056pt;}
.x3{left:253.439360pt;}
.x1{left:420.560000pt;}
}




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