
    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_e3ce6c7d48f0f660cf9341d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_7b7c0d59e0eb7f3d1a9168ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.998000;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_fe2ed57308ab8429bf31472d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_3a2a32b358fbc609b8a6106d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_4b6da7bd4ed85d100560efcb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.721000;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_f80ad143d2b379fe95bd3088.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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;}
.m2{transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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;}
.ls8{letter-spacing:-1.093251px;}
.ls2{letter-spacing:-0.840000px;}
.lsa{letter-spacing:-0.420000px;}
.lsb{letter-spacing:-0.390000px;}
.ls7{letter-spacing:-0.341641px;}
.ls6{letter-spacing:-0.330000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.660000px;}
.lsc{letter-spacing:1.200000px;}
.ls5{letter-spacing:1.260000px;}
.ls0{letter-spacing:1.500000px;}
.ls9{letter-spacing:7.356000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-22.680000px;}
.ws4{word-spacing:-18.282000px;}
.ws56{word-spacing:-18.228000px;}
.ws2{word-spacing:-17.880000px;}
.ws11{word-spacing:-17.292000px;}
.ws2c{word-spacing:-17.226000px;}
.ws1e{word-spacing:-17.150369px;}
.ws1{word-spacing:-7.440000px;}
.ws3e{word-spacing:-5.040000px;}
.ws1d{word-spacing:-3.300000px;}
.ws2e{word-spacing:-3.234000px;}
.ws4b{word-spacing:-3.198000px;}
.ws14{word-spacing:-3.102000px;}
.ws49{word-spacing:-2.856000px;}
.ws4a{word-spacing:-2.808000px;}
.ws55{word-spacing:-2.652000px;}
.ws23{word-spacing:-2.640000px;}
.ws17{word-spacing:-2.112000px;}
.wsf{word-spacing:-1.980000px;}
.ws38{word-spacing:-1.782000px;}
.ws3{word-spacing:-1.500000px;}
.ws26{word-spacing:-1.320000px;}
.ws7{word-spacing:-1.260000px;}
.ws25{word-spacing:-1.188000px;}
.ws50{word-spacing:-1.092000px;}
.ws6{word-spacing:-0.726000px;}
.ws5{word-spacing:-0.660000px;}
.ws54{word-spacing:-0.546000px;}
.ws53{word-spacing:-0.504000px;}
.ws37{word-spacing:-0.462000px;}
.ws1c{word-spacing:-0.198000px;}
.ws19{word-spacing:-0.132000px;}
.ws0{word-spacing:0.000000px;}
.ws18{word-spacing:0.132000px;}
.ws8{word-spacing:0.330000px;}
.ws4d{word-spacing:0.336000px;}
.ws22{word-spacing:0.341641px;}
.ws4c{word-spacing:0.390000px;}
.ws31{word-spacing:0.858000px;}
.ws16{word-spacing:0.924000px;}
.ws3b{word-spacing:0.990000px;}
.wsb{word-spacing:1.056000px;}
.ws28{word-spacing:1.122000px;}
.ws12{word-spacing:1.254000px;}
.ws2f{word-spacing:1.320000px;}
.ws1f{word-spacing:1.452000px;}
.ws3f{word-spacing:1.518000px;}
.ws35{word-spacing:1.584000px;}
.ws1b{word-spacing:1.716000px;}
.ws27{word-spacing:1.782000px;}
.wsc{word-spacing:1.848000px;}
.ws3d{word-spacing:1.914000px;}
.ws2b{word-spacing:2.112000px;}
.ws47{word-spacing:2.376000px;}
.ws4e{word-spacing:2.496000px;}
.ws30{word-spacing:2.640000px;}
.ws40{word-spacing:3.102000px;}
.ws9{word-spacing:3.234000px;}
.ws52{word-spacing:3.276000px;}
.ws15{word-spacing:3.300000px;}
.ws51{word-spacing:3.360000px;}
.ws48{word-spacing:3.432000px;}
.ws20{word-spacing:3.696000px;}
.ws21{word-spacing:3.826377px;}
.ws1a{word-spacing:3.894000px;}
.ws42{word-spacing:4.158000px;}
.ws45{word-spacing:4.488000px;}
.wsd{word-spacing:4.554000px;}
.ws24{word-spacing:4.752000px;}
.ws36{word-spacing:4.788000px;}
.ws2a{word-spacing:4.950000px;}
.ws2d{word-spacing:5.412000px;}
.wse{word-spacing:6.204000px;}
.ws44{word-spacing:6.270000px;}
.ws4f{word-spacing:7.098000px;}
.ws58{word-spacing:7.254000px;}
.ws57{word-spacing:7.392000px;}
.ws3c{word-spacing:7.458000px;}
.ws13{word-spacing:7.524000px;}
.wsa{word-spacing:9.042000px;}
.ws32{word-spacing:9.108000px;}
.ws46{word-spacing:9.438000px;}
.ws29{word-spacing:10.296000px;}
.ws39{word-spacing:10.692000px;}
.ws3a{word-spacing:11.022000px;}
.ws41{word-spacing:13.332000px;}
.ws43{word-spacing:14.058000px;}
.ws34{word-spacing:14.256000px;}
.ws33{word-spacing:14.520000px;}
._1b{margin-left:-31.450800px;}
._1a{margin-left:-30.210600px;}
._19{margin-left:-28.932000px;}
._16{margin-left:-27.624000px;}
._14{margin-left:-18.127800px;}
._15{margin-left:-17.116200px;}
._a{margin-left:-10.180800px;}
._8{margin-left:-8.448000px;}
._b{margin-left:-7.434600px;}
._9{margin-left:-6.425400px;}
._5{margin-left:-5.400000px;}
._0{margin-left:-3.534000px;}
._7{margin-left:-2.346000px;}
._3{margin-left:-1.320000px;}
._6{width:1.749000px;}
._c{width:2.856600px;}
._10{width:4.054800px;}
._17{width:5.332800px;}
._1{width:6.510000px;}
._13{width:8.263200px;}
._18{width:9.725400px;}
._4{width:17.106000px;}
._2{width:18.654000px;}
._d{width:22.440000px;}
._12{width:37.006200px;}
._11{width:38.685600px;}
._e{width:41.325600px;}
._f{width:42.776400px;}
._1c{width:62.982600px;}
._1d{width:65.293200px;}
._1e{width:66.614400px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:transparent;}
.fc0{color:rgb(38,82,38);}
.fs3{font-size:36.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs9{font-size:68.328164px;}
.fs8{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs4{font-size:84.000000px;}
.fs1{font-size:120.000000px;}
.fs7{font-size:126.000000px;}
.fs2{font-size:150.000000px;}
.fs0{font-size:186.000000px;}
.y6{bottom:-22.498650px;}
.y0{bottom:0.000000px;}
.y7{bottom:54.946350px;}
.yb{bottom:55.159050px;}
.y8c{bottom:101.722050px;}
.y8b{bottom:124.228050px;}
.y8a{bottom:146.734050px;}
.y9e{bottom:155.745900px;}
.ya{bottom:164.836050px;}
.y89{bottom:169.240050px;}
.y9d{bottom:178.251900px;}
.y9{bottom:182.836050px;}
.y88{bottom:191.746050px;}
.y9c{bottom:200.757900px;}
.y8{bottom:200.836050px;}
.y87{bottom:214.252050px;}
.y9b{bottom:223.263900px;}
.y86{bottom:236.758050px;}
.y4b{bottom:241.266900px;}
.y9a{bottom:245.769900px;}
.y4a{bottom:263.772900px;}
.y85{bottom:268.256550px;}
.y99{bottom:268.275900px;}
.y49{bottom:286.278900px;}
.y84{bottom:290.762550px;}
.y98{bottom:290.781900px;}
.y48{bottom:308.784900px;}
.y83{bottom:313.268550px;}
.y97{bottom:326.784900px;}
.y82{bottom:335.774550px;}
.y96{bottom:349.290900px;}
.y47{bottom:349.292400px;}
.yc3{bottom:357.031800px;}
.y81{bottom:358.280550px;}
.y95{bottom:371.796900px;}
.y46{bottom:371.798400px;}
.y80{bottom:380.786550px;}
.y94{bottom:394.302900px;}
.y45{bottom:394.304400px;}
.y7f{bottom:403.292550px;}
.y93{bottom:416.808900px;}
.y44{bottom:416.810400px;}
.y7e{bottom:425.798550px;}
.y7d{bottom:448.304550px;}
.y92{bottom:452.811900px;}
.y43{bottom:457.317900px;}
.y7c{bottom:470.810550px;}
.y91{bottom:475.317900px;}
.y42{bottom:479.823900px;}
.y90{bottom:497.823900px;}
.y41{bottom:502.329900px;}
.y22{bottom:506.788050px;}
.y7b{bottom:511.318050px;}
.yc1{bottom:516.327600px;}
.y8f{bottom:520.329900px;}
.y21{bottom:524.789550px;}
.y40{bottom:524.835900px;}
.y7a{bottom:533.824050px;}
.yc0{bottom:540.329100px;}
.y8e{bottom:542.835900px;}
.y79{bottom:556.330050px;}
.y3e{bottom:560.743050px;}
.y20{bottom:560.792550px;}
.y3f{bottom:560.835900px;}
.ybf{bottom:564.332100px;}
.y3d{bottom:578.744550px;}
.y8d{bottom:578.835900px;}
.y78{bottom:578.836050px;}
.yb0{bottom:587.737050px;}
.y3c{bottom:596.746050px;}
.y1f{bottom:596.795550px;}
.y61{bottom:610.229550px;}
.yaf{bottom:610.243050px;}
.ybe{bottom:612.323100px;}
.y3b{bottom:614.747550px;}
.y77{bottom:623.818050px;}
.y60{bottom:632.735550px;}
.y3a{bottom:632.749050px;}
.ybd{bottom:636.327600px;}
.y39{bottom:650.750550px;}
.y1e{bottom:650.800050px;}
.y5f{bottom:655.241550px;}
.yae{bottom:655.255050px;}
.ybc{bottom:660.332100px;}
.y76{bottom:664.327050px;}
.y38{bottom:668.752050px;}
.y1d{bottom:668.801550px;}
.y5e{bottom:677.747550px;}
.yad{bottom:677.761050px;}
.y37{bottom:686.753550px;}
.y1c{bottom:686.803050px;}
.y5d{bottom:700.253550px;}
.yac{bottom:700.267050px;}
.y36{bottom:704.755050px;}
.y75{bottom:704.836050px;}
.ybb{bottom:708.327600px;}
.y35{bottom:722.756550px;}
.y5c{bottom:722.759550px;}
.yab{bottom:722.773050px;}
.yba{bottom:732.332100px;}
.y34{bottom:740.758050px;}
.y1b{bottom:740.807550px;}
.yaa{bottom:754.271550px;}
.y33{bottom:758.759550px;}
.y1a{bottom:758.809050px;}
.y5b{bottom:763.267050px;}
.y74{bottom:776.753550px;}
.ya9{bottom:776.777550px;}
.yb9{bottom:780.314100px;}
.y5a{bottom:785.773050px;}
.y4{bottom:793.336050px;}
.y32{bottom:794.762550px;}
.y19{bottom:794.812050px;}
.y73{bottom:799.259550px;}
.ya8{bottom:799.283550px;}
.yb8{bottom:804.318600px;}
.y59{bottom:808.279050px;}
.y31{bottom:812.764050px;}
.y18{bottom:812.813550px;}
.y72{bottom:821.765550px;}
.ya7{bottom:821.789550px;}
.yb7{bottom:828.323100px;}
.y58{bottom:830.785050px;}
.y3{bottom:830.836050px;}
.y71{bottom:844.271550px;}
.ya6{bottom:844.295550px;}
.y30{bottom:848.767050px;}
.y17{bottom:848.816550px;}
.yb6{bottom:852.327600px;}
.y57{bottom:853.291050px;}
.y2f{bottom:866.768550px;}
.y70{bottom:866.777550px;}
.ya5{bottom:866.801550px;}
.y16{bottom:866.818050px;}
.y56{bottom:875.797050px;}
.yb5{bottom:876.332100px;}
.y2{bottom:883.315050px;}
.y2e{bottom:884.770050px;}
.y15{bottom:884.819550px;}
.y55{bottom:898.303050px;}
.y2d{bottom:902.771550px;}
.ya4{bottom:902.804550px;}
.y6f{bottom:907.285050px;}
.y2c{bottom:920.773050px;}
.y54{bottom:920.809050px;}
.y14{bottom:920.822550px;}
.yb4{bottom:924.318600px;}
.ya3{bottom:925.310550px;}
.y6e{bottom:929.791050px;}
.y2b{bottom:938.774550px;}
.y13{bottom:938.824050px;}
.y1{bottom:938.836050px;}
.ya2{bottom:947.816550px;}
.yb3{bottom:948.323100px;}
.y6d{bottom:952.297050px;}
.y2a{bottom:956.776050px;}
.y53{bottom:956.812050px;}
.ya1{bottom:970.322550px;}
.yb2{bottom:972.327600px;}
.y29{bottom:974.777550px;}
.y6c{bottom:974.803050px;}
.y52{bottom:979.318050px;}
.y28{bottom:992.779050px;}
.y12{bottom:992.828550px;}
.yb1{bottom:996.332100px;}
.y6b{bottom:997.309050px;}
.y51{bottom:1001.824050px;}
.y27{bottom:1010.780550px;}
.y11{bottom:1010.830050px;}
.y6a{bottom:1019.815050px;}
.y50{bottom:1024.330050px;}
.y26{bottom:1028.782050px;}
.y10{bottom:1028.831550px;}
.ya0{bottom:1037.824050px;}
.y69{bottom:1042.321050px;}
.y25{bottom:1046.783550px;}
.yf{bottom:1046.833050px;}
.y4f{bottom:1046.836050px;}
.y9f{bottom:1060.330050px;}
.y24{bottom:1064.785050px;}
.y68{bottom:1064.827050px;}
.ye{bottom:1064.834550px;}
.y23{bottom:1082.786550px;}
.y4e{bottom:1082.809050px;}
.yd{bottom:1082.836050px;}
.y67{bottom:1100.830050px;}
.yc{bottom:1118.836050px;}
.y66{bottom:1123.336050px;}
.y4d{bottom:1127.822550px;}
.yc2{bottom:1131.953100px;}
.y64{bottom:1145.824050px;}
.y65{bottom:1145.836050px;}
.y63{bottom:1168.330050px;}
.y4c{bottom:1172.836050px;}
.y62{bottom:1190.836050px;}
.y5{bottom:1197.999600px;}
.h5{height:25.632000px;}
.h7{height:46.680000px;}
.ha{height:47.058000px;}
.h9{height:51.348000px;}
.hd{height:53.159312px;}
.hf{height:55.614000px;}
.hc{height:56.292000px;}
.h6{height:59.976000px;}
.he{height:60.684000px;}
.h10{height:65.352000px;}
.h8{height:85.200000px;}
.h11{height:85.680000px;}
.hb{height:89.964000px;}
.h3{height:93.360000px;}
.h4{height:107.100000px;}
.h2{height:132.804000px;}
.h0{height:1262.838000px;}
.h1{height:1263.000000px;}
.w0{width:892.915500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:15.001350px;}
.x4{left:54.001350px;}
.x14{left:56.340000px;}
.x2{left:61.654950px;}
.x11{left:81.273000px;}
.x5{left:85.040850px;}
.x7{left:87.166800px;}
.x9{left:89.292750px;}
.x1{left:93.544650px;}
.x12{left:108.742950px;}
.x13{left:110.261850px;}
.x10{left:131.763750px;}
.xa{left:403.148400px;}
.x8{left:471.550800px;}
.xb{left:504.749700px;}
.xc{left:655.035900px;}
.xd{left:782.569350px;}
.xe{left:787.107000px;}
.xf{left:799.003500px;}
.x6{left:815.316300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.971778pt;}
.ls2{letter-spacing:-0.746667pt;}
.lsa{letter-spacing:-0.373333pt;}
.lsb{letter-spacing:-0.346667pt;}
.ls7{letter-spacing:-0.303681pt;}
.ls6{letter-spacing:-0.293333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.586667pt;}
.lsc{letter-spacing:1.066667pt;}
.ls5{letter-spacing:1.120000pt;}
.ls0{letter-spacing:1.333333pt;}
.ls9{letter-spacing:6.538667pt;}
.ws10{word-spacing:-20.160000pt;}
.ws4{word-spacing:-16.250667pt;}
.ws56{word-spacing:-16.202667pt;}
.ws2{word-spacing:-15.893333pt;}
.ws11{word-spacing:-15.370667pt;}
.ws2c{word-spacing:-15.312000pt;}
.ws1e{word-spacing:-15.244773pt;}
.ws1{word-spacing:-6.613333pt;}
.ws3e{word-spacing:-4.480000pt;}
.ws1d{word-spacing:-2.933333pt;}
.ws2e{word-spacing:-2.874667pt;}
.ws4b{word-spacing:-2.842667pt;}
.ws14{word-spacing:-2.757333pt;}
.ws49{word-spacing:-2.538667pt;}
.ws4a{word-spacing:-2.496000pt;}
.ws55{word-spacing:-2.357333pt;}
.ws23{word-spacing:-2.346667pt;}
.ws17{word-spacing:-1.877333pt;}
.wsf{word-spacing:-1.760000pt;}
.ws38{word-spacing:-1.584000pt;}
.ws3{word-spacing:-1.333333pt;}
.ws26{word-spacing:-1.173333pt;}
.ws7{word-spacing:-1.120000pt;}
.ws25{word-spacing:-1.056000pt;}
.ws50{word-spacing:-0.970667pt;}
.ws6{word-spacing:-0.645333pt;}
.ws5{word-spacing:-0.586667pt;}
.ws54{word-spacing:-0.485333pt;}
.ws53{word-spacing:-0.448000pt;}
.ws37{word-spacing:-0.410667pt;}
.ws1c{word-spacing:-0.176000pt;}
.ws19{word-spacing:-0.117333pt;}
.ws0{word-spacing:0.000000pt;}
.ws18{word-spacing:0.117333pt;}
.ws8{word-spacing:0.293333pt;}
.ws4d{word-spacing:0.298667pt;}
.ws22{word-spacing:0.303681pt;}
.ws4c{word-spacing:0.346667pt;}
.ws31{word-spacing:0.762667pt;}
.ws16{word-spacing:0.821333pt;}
.ws3b{word-spacing:0.880000pt;}
.wsb{word-spacing:0.938667pt;}
.ws28{word-spacing:0.997333pt;}
.ws12{word-spacing:1.114667pt;}
.ws2f{word-spacing:1.173333pt;}
.ws1f{word-spacing:1.290667pt;}
.ws3f{word-spacing:1.349333pt;}
.ws35{word-spacing:1.408000pt;}
.ws1b{word-spacing:1.525333pt;}
.ws27{word-spacing:1.584000pt;}
.wsc{word-spacing:1.642667pt;}
.ws3d{word-spacing:1.701333pt;}
.ws2b{word-spacing:1.877333pt;}
.ws47{word-spacing:2.112000pt;}
.ws4e{word-spacing:2.218667pt;}
.ws30{word-spacing:2.346667pt;}
.ws40{word-spacing:2.757333pt;}
.ws9{word-spacing:2.874667pt;}
.ws52{word-spacing:2.912000pt;}
.ws15{word-spacing:2.933333pt;}
.ws51{word-spacing:2.986667pt;}
.ws48{word-spacing:3.050667pt;}
.ws20{word-spacing:3.285333pt;}
.ws21{word-spacing:3.401224pt;}
.ws1a{word-spacing:3.461333pt;}
.ws42{word-spacing:3.696000pt;}
.ws45{word-spacing:3.989333pt;}
.wsd{word-spacing:4.048000pt;}
.ws24{word-spacing:4.224000pt;}
.ws36{word-spacing:4.256000pt;}
.ws2a{word-spacing:4.400000pt;}
.ws2d{word-spacing:4.810667pt;}
.wse{word-spacing:5.514667pt;}
.ws44{word-spacing:5.573333pt;}
.ws4f{word-spacing:6.309333pt;}
.ws58{word-spacing:6.448000pt;}
.ws57{word-spacing:6.570667pt;}
.ws3c{word-spacing:6.629333pt;}
.ws13{word-spacing:6.688000pt;}
.wsa{word-spacing:8.037333pt;}
.ws32{word-spacing:8.096000pt;}
.ws46{word-spacing:8.389333pt;}
.ws29{word-spacing:9.152000pt;}
.ws39{word-spacing:9.504000pt;}
.ws3a{word-spacing:9.797333pt;}
.ws41{word-spacing:11.850667pt;}
.ws43{word-spacing:12.496000pt;}
.ws34{word-spacing:12.672000pt;}
.ws33{word-spacing:12.906667pt;}
._1b{margin-left:-27.956267pt;}
._1a{margin-left:-26.853867pt;}
._19{margin-left:-25.717333pt;}
._16{margin-left:-24.554667pt;}
._14{margin-left:-16.113600pt;}
._15{margin-left:-15.214400pt;}
._a{margin-left:-9.049600pt;}
._8{margin-left:-7.509333pt;}
._b{margin-left:-6.608533pt;}
._9{margin-left:-5.711467pt;}
._5{margin-left:-4.800000pt;}
._0{margin-left:-3.141333pt;}
._7{margin-left:-2.085333pt;}
._3{margin-left:-1.173333pt;}
._6{width:1.554667pt;}
._c{width:2.539200pt;}
._10{width:3.604267pt;}
._17{width:4.740267pt;}
._1{width:5.786667pt;}
._13{width:7.345067pt;}
._18{width:8.644800pt;}
._4{width:15.205333pt;}
._2{width:16.581333pt;}
._d{width:19.946667pt;}
._12{width:32.894400pt;}
._11{width:34.387200pt;}
._e{width:36.733867pt;}
._f{width:38.023467pt;}
._1c{width:55.984533pt;}
._1d{width:58.038400pt;}
._1e{width:59.212800pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs9{font-size:60.736146pt;}
.fs8{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs4{font-size:74.666667pt;}
.fs1{font-size:106.666667pt;}
.fs7{font-size:112.000000pt;}
.fs2{font-size:133.333333pt;}
.fs0{font-size:165.333333pt;}
.y6{bottom:-19.998800pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:48.841200pt;}
.yb{bottom:49.030267pt;}
.y8c{bottom:90.419600pt;}
.y8b{bottom:110.424933pt;}
.y8a{bottom:130.430267pt;}
.y9e{bottom:138.440800pt;}
.ya{bottom:146.520933pt;}
.y89{bottom:150.435600pt;}
.y9d{bottom:158.446133pt;}
.y9{bottom:162.520933pt;}
.y88{bottom:170.440933pt;}
.y9c{bottom:178.451467pt;}
.y8{bottom:178.520933pt;}
.y87{bottom:190.446267pt;}
.y9b{bottom:198.456800pt;}
.y86{bottom:210.451600pt;}
.y4b{bottom:214.459467pt;}
.y9a{bottom:218.462133pt;}
.y4a{bottom:234.464800pt;}
.y85{bottom:238.450267pt;}
.y99{bottom:238.467467pt;}
.y49{bottom:254.470133pt;}
.y84{bottom:258.455600pt;}
.y98{bottom:258.472800pt;}
.y48{bottom:274.475467pt;}
.y83{bottom:278.460933pt;}
.y97{bottom:290.475467pt;}
.y82{bottom:298.466267pt;}
.y96{bottom:310.480800pt;}
.y47{bottom:310.482133pt;}
.yc3{bottom:317.361600pt;}
.y81{bottom:318.471600pt;}
.y95{bottom:330.486133pt;}
.y46{bottom:330.487467pt;}
.y80{bottom:338.476933pt;}
.y94{bottom:350.491467pt;}
.y45{bottom:350.492800pt;}
.y7f{bottom:358.482267pt;}
.y93{bottom:370.496800pt;}
.y44{bottom:370.498133pt;}
.y7e{bottom:378.487600pt;}
.y7d{bottom:398.492933pt;}
.y92{bottom:402.499467pt;}
.y43{bottom:406.504800pt;}
.y7c{bottom:418.498267pt;}
.y91{bottom:422.504800pt;}
.y42{bottom:426.510133pt;}
.y90{bottom:442.510133pt;}
.y41{bottom:446.515467pt;}
.y22{bottom:450.478267pt;}
.y7b{bottom:454.504933pt;}
.yc1{bottom:458.957867pt;}
.y8f{bottom:462.515467pt;}
.y21{bottom:466.479600pt;}
.y40{bottom:466.520800pt;}
.y7a{bottom:474.510267pt;}
.yc0{bottom:480.292533pt;}
.y8e{bottom:482.520800pt;}
.y79{bottom:494.515600pt;}
.y3e{bottom:498.438267pt;}
.y20{bottom:498.482267pt;}
.y3f{bottom:498.520800pt;}
.ybf{bottom:501.628533pt;}
.y3d{bottom:514.439600pt;}
.y8d{bottom:514.520800pt;}
.y78{bottom:514.520933pt;}
.yb0{bottom:522.432933pt;}
.y3c{bottom:530.440933pt;}
.y1f{bottom:530.484933pt;}
.y61{bottom:542.426267pt;}
.yaf{bottom:542.438267pt;}
.ybe{bottom:544.287200pt;}
.y3b{bottom:546.442267pt;}
.y77{bottom:554.504933pt;}
.y60{bottom:562.431600pt;}
.y3a{bottom:562.443600pt;}
.ybd{bottom:565.624533pt;}
.y39{bottom:578.444933pt;}
.y1e{bottom:578.488933pt;}
.y5f{bottom:582.436933pt;}
.yae{bottom:582.448933pt;}
.ybc{bottom:586.961867pt;}
.y76{bottom:590.512933pt;}
.y38{bottom:594.446267pt;}
.y1d{bottom:594.490267pt;}
.y5e{bottom:602.442267pt;}
.yad{bottom:602.454267pt;}
.y37{bottom:610.447600pt;}
.y1c{bottom:610.491600pt;}
.y5d{bottom:622.447600pt;}
.yac{bottom:622.459600pt;}
.y36{bottom:626.448933pt;}
.y75{bottom:626.520933pt;}
.ybb{bottom:629.624533pt;}
.y35{bottom:642.450267pt;}
.y5c{bottom:642.452933pt;}
.yab{bottom:642.464933pt;}
.yba{bottom:650.961867pt;}
.y34{bottom:658.451600pt;}
.y1b{bottom:658.495600pt;}
.yaa{bottom:670.463600pt;}
.y33{bottom:674.452933pt;}
.y1a{bottom:674.496933pt;}
.y5b{bottom:678.459600pt;}
.y74{bottom:690.447600pt;}
.ya9{bottom:690.468933pt;}
.yb9{bottom:693.612533pt;}
.y5a{bottom:698.464933pt;}
.y4{bottom:705.187600pt;}
.y32{bottom:706.455600pt;}
.y19{bottom:706.499600pt;}
.y73{bottom:710.452933pt;}
.ya8{bottom:710.474267pt;}
.yb8{bottom:714.949867pt;}
.y59{bottom:718.470267pt;}
.y31{bottom:722.456933pt;}
.y18{bottom:722.500933pt;}
.y72{bottom:730.458267pt;}
.ya7{bottom:730.479600pt;}
.yb7{bottom:736.287200pt;}
.y58{bottom:738.475600pt;}
.y3{bottom:738.520933pt;}
.y71{bottom:750.463600pt;}
.ya6{bottom:750.484933pt;}
.y30{bottom:754.459600pt;}
.y17{bottom:754.503600pt;}
.yb6{bottom:757.624533pt;}
.y57{bottom:758.480933pt;}
.y2f{bottom:770.460933pt;}
.y70{bottom:770.468933pt;}
.ya5{bottom:770.490267pt;}
.y16{bottom:770.504933pt;}
.y56{bottom:778.486267pt;}
.yb5{bottom:778.961867pt;}
.y2{bottom:785.168933pt;}
.y2e{bottom:786.462267pt;}
.y15{bottom:786.506267pt;}
.y55{bottom:798.491600pt;}
.y2d{bottom:802.463600pt;}
.ya4{bottom:802.492933pt;}
.y6f{bottom:806.475600pt;}
.y2c{bottom:818.464933pt;}
.y54{bottom:818.496933pt;}
.y14{bottom:818.508933pt;}
.yb4{bottom:821.616533pt;}
.ya3{bottom:822.498267pt;}
.y6e{bottom:826.480933pt;}
.y2b{bottom:834.466267pt;}
.y13{bottom:834.510267pt;}
.y1{bottom:834.520933pt;}
.ya2{bottom:842.503600pt;}
.yb3{bottom:842.953867pt;}
.y6d{bottom:846.486267pt;}
.y2a{bottom:850.467600pt;}
.y53{bottom:850.499600pt;}
.ya1{bottom:862.508933pt;}
.yb2{bottom:864.291200pt;}
.y29{bottom:866.468933pt;}
.y6c{bottom:866.491600pt;}
.y52{bottom:870.504933pt;}
.y28{bottom:882.470267pt;}
.y12{bottom:882.514267pt;}
.yb1{bottom:885.628533pt;}
.y6b{bottom:886.496933pt;}
.y51{bottom:890.510267pt;}
.y27{bottom:898.471600pt;}
.y11{bottom:898.515600pt;}
.y6a{bottom:906.502267pt;}
.y50{bottom:910.515600pt;}
.y26{bottom:914.472933pt;}
.y10{bottom:914.516933pt;}
.ya0{bottom:922.510267pt;}
.y69{bottom:926.507600pt;}
.y25{bottom:930.474267pt;}
.yf{bottom:930.518267pt;}
.y4f{bottom:930.520933pt;}
.y9f{bottom:942.515600pt;}
.y24{bottom:946.475600pt;}
.y68{bottom:946.512933pt;}
.ye{bottom:946.519600pt;}
.y23{bottom:962.476933pt;}
.y4e{bottom:962.496933pt;}
.yd{bottom:962.520933pt;}
.y67{bottom:978.515600pt;}
.yc{bottom:994.520933pt;}
.y66{bottom:998.520933pt;}
.y4d{bottom:1002.508933pt;}
.yc2{bottom:1006.180533pt;}
.y64{bottom:1018.510267pt;}
.y65{bottom:1018.520933pt;}
.y63{bottom:1038.515600pt;}
.y4c{bottom:1042.520933pt;}
.y62{bottom:1058.520933pt;}
.y5{bottom:1064.888533pt;}
.h5{height:22.784000pt;}
.h7{height:41.493333pt;}
.ha{height:41.829333pt;}
.h9{height:45.642667pt;}
.hd{height:47.252721pt;}
.hf{height:49.434667pt;}
.hc{height:50.037333pt;}
.h6{height:53.312000pt;}
.he{height:53.941333pt;}
.h10{height:58.090667pt;}
.h8{height:75.733333pt;}
.h11{height:76.160000pt;}
.hb{height:79.968000pt;}
.h3{height:82.986667pt;}
.h4{height:95.200000pt;}
.h2{height:118.048000pt;}
.h0{height:1122.522667pt;}
.h1{height:1122.666667pt;}
.w0{width:793.702667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:13.334533pt;}
.x4{left:48.001200pt;}
.x14{left:50.080000pt;}
.x2{left:54.804400pt;}
.x11{left:72.242667pt;}
.x5{left:75.591867pt;}
.x7{left:77.481600pt;}
.x9{left:79.371333pt;}
.x1{left:83.150800pt;}
.x12{left:96.660400pt;}
.x13{left:98.010533pt;}
.x10{left:117.123333pt;}
.xa{left:358.354133pt;}
.x8{left:419.156267pt;}
.xb{left:448.666400pt;}
.xc{left:582.254133pt;}
.xd{left:695.617200pt;}
.xe{left:699.650667pt;}
.xf{left:710.225333pt;}
.x6{left:724.725600pt;}
}




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