
    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_bd642cb414d137530f36e1aa.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899414;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_350285eedf3fdbb8740311de.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_573169cd37a5f5c13e0c6d1a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_fe49b350ae859408495a39ba.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_eda64459ee0aff51a979025f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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_1c396d290c18506981d80030.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.640000px;}
.ls25{letter-spacing:-1.056000px;}
.ls26{letter-spacing:-0.990000px;}
.ls17{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.660000px;}
.ls14{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.285000px;}
.ls12{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.370200px;}
.ls22{letter-spacing:0.462000px;}
.ls16{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.528000px;}
.ls19{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.648000px;}
.lse{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.726000px;}
.lsd{letter-spacing:0.792000px;}
.ls1b{letter-spacing:0.858000px;}
.ls1c{letter-spacing:0.990000px;}
.lsb{letter-spacing:1.008000px;}
.lsa{letter-spacing:1.080000px;}
.ls1d{letter-spacing:3.819000px;}
.ls0{letter-spacing:4.200000px;}
.ls3{letter-spacing:4.380000px;}
.ls1a{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls24{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.200000px;}
.ls11{letter-spacing:11.088000px;}
.ls28{letter-spacing:19.800000px;}
.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;}
}
.ws17{word-spacing:-22.860000px;}
.ws13{word-spacing:-20.952000px;}
.ws11{word-spacing:-20.880000px;}
.ws4{word-spacing:-20.304000px;}
.wsb{word-spacing:-20.232000px;}
.ws2{word-spacing:-20.160000px;}
.ws10{word-spacing:-20.016000px;}
.wse{word-spacing:-19.872000px;}
.wsa{word-spacing:-18.546000px;}
.wsd{word-spacing:-18.504000px;}
.ws5{word-spacing:-18.144000px;}
.ws12{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws16{word-spacing:-17.640000px;}
.wsf{word-spacing:-17.424000px;}
.ws0{word-spacing:-16.860000px;}
.ws19{word-spacing:-16.764000px;}
.ws9{word-spacing:-16.302000px;}
.ws6{word-spacing:-16.017000px;}
.ws1a{word-spacing:-14.820000px;}
.ws7{word-spacing:-14.079000px;}
.ws18{word-spacing:-13.794000px;}
.ws15{word-spacing:-12.139200px;}
.ws1{word-spacing:-1.152000px;}
.ws14{word-spacing:-0.360000px;}
.ws8{word-spacing:0.000000px;}
._11{margin-left:-21.027600px;}
._10{margin-left:-19.788000px;}
._12{margin-left:-11.844000px;}
._6{margin-left:-10.506000px;}
._4{margin-left:-8.670000px;}
._7{margin-left:-7.242000px;}
._f{margin-left:-5.934600px;}
._0{margin-left:-3.906000px;}
._d{margin-left:-2.904000px;}
._2{margin-left:-1.896000px;}
._3{width:1.656000px;}
._8{width:3.109800px;}
._1{width:4.896000px;}
._9{width:5.910000px;}
._5{width:7.242000px;}
._b{width:8.952000px;}
._a{width:10.248000px;}
._c{width:11.298000px;}
._e{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs5{font-size:43.800000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.337550px;}
.y21{bottom:140.304150px;}
.yae{bottom:140.308650px;}
.y8c{bottom:143.380500px;}
.y69{bottom:144.928500px;}
.y45{bottom:145.571700px;}
.y20{bottom:156.805650px;}
.yad{bottom:156.810150px;}
.y8b{bottom:165.736500px;}
.y68{bottom:166.672500px;}
.y44{bottom:167.171700px;}
.y1f{bottom:173.307150px;}
.yac{bottom:173.311650px;}
.y8a{bottom:188.092500px;}
.y67{bottom:188.416500px;}
.y43{bottom:188.771700px;}
.y1e{bottom:189.808650px;}
.yab{bottom:195.363150px;}
.y1d{bottom:206.310150px;}
.y66{bottom:210.160500px;}
.y42{bottom:210.371700px;}
.y89{bottom:210.448500px;}
.y1c{bottom:222.811650px;}
.y65{bottom:231.904500px;}
.y41{bottom:231.971700px;}
.y88{bottom:232.804500px;}
.yaa{bottom:233.322600px;}
.y1b{bottom:244.863150px;}
.y40{bottom:253.571700px;}
.y64{bottom:253.648500px;}
.ya9{bottom:253.716600px;}
.y87{bottom:255.160500px;}
.ya8{bottom:274.110600px;}
.y3f{bottom:275.171700px;}
.y63{bottom:275.392500px;}
.y86{bottom:277.516500px;}
.y1a{bottom:286.198650px;}
.ya7{bottom:294.504600px;}
.y3e{bottom:296.771700px;}
.y62{bottom:297.136500px;}
.y85{bottom:299.872500px;}
.y19{bottom:308.248650px;}
.y3d{bottom:318.371700px;}
.y61{bottom:318.880500px;}
.y84{bottom:322.228500px;}
.ya6{bottom:323.408550px;}
.y18{bottom:330.298650px;}
.y3c{bottom:339.971700px;}
.y60{bottom:340.624500px;}
.y83{bottom:344.584500px;}
.y17{bottom:352.348650px;}
.y3b{bottom:361.571700px;}
.y5f{bottom:362.368500px;}
.y82{bottom:366.940500px;}
.yc4{bottom:369.706050px;}
.ya5{bottom:372.838500px;}
.y16{bottom:374.398650px;}
.y3a{bottom:383.171700px;}
.y5e{bottom:384.112500px;}
.yc3{bottom:387.706050px;}
.y81{bottom:389.296500px;}
.ya4{bottom:395.032500px;}
.y15{bottom:396.448650px;}
.y39{bottom:404.771700px;}
.yc2{bottom:405.706050px;}
.y5d{bottom:405.856500px;}
.y80{bottom:411.652500px;}
.ya3{bottom:417.226500px;}
.y14{bottom:418.498650px;}
.yc1{bottom:423.706050px;}
.y38{bottom:426.371700px;}
.y5c{bottom:427.600500px;}
.y7f{bottom:434.008500px;}
.ya2{bottom:439.420500px;}
.y13{bottom:440.548650px;}
.y37{bottom:447.971700px;}
.y5b{bottom:449.344500px;}
.y7e{bottom:456.364500px;}
.ya1{bottom:461.614500px;}
.y12{bottom:462.598650px;}
.yc0{bottom:463.306050px;}
.y36{bottom:469.571700px;}
.y5a{bottom:471.088500px;}
.y7d{bottom:478.720500px;}
.ya0{bottom:483.808500px;}
.y11{bottom:484.648650px;}
.y35{bottom:491.171700px;}
.y59{bottom:492.832500px;}
.y7c{bottom:501.076500px;}
.ybf{bottom:504.706050px;}
.y9f{bottom:506.002500px;}
.y10{bottom:506.698650px;}
.y34{bottom:512.771700px;}
.y58{bottom:514.576500px;}
.y7b{bottom:523.432500px;}
.ybe{bottom:524.506050px;}
.y9e{bottom:528.196500px;}
.yf{bottom:528.748650px;}
.y33{bottom:534.371700px;}
.y57{bottom:536.320500px;}
.ybd{bottom:544.306050px;}
.y7a{bottom:545.788500px;}
.y9d{bottom:550.390500px;}
.ye{bottom:550.798650px;}
.y32{bottom:555.971700px;}
.y56{bottom:558.064500px;}
.ybc{bottom:564.106050px;}
.y79{bottom:568.144500px;}
.y9c{bottom:572.584500px;}
.yd{bottom:572.848650px;}
.y31{bottom:577.571700px;}
.y55{bottom:579.808500px;}
.ybb{bottom:583.906050px;}
.y78{bottom:590.644500px;}
.y9b{bottom:594.778500px;}
.yc{bottom:594.898650px;}
.y30{bottom:599.171700px;}
.y54{bottom:601.552500px;}
.yba{bottom:603.706050px;}
.y77{bottom:613.144500px;}
.yb{bottom:616.948650px;}
.y9a{bottom:616.972500px;}
.y2f{bottom:620.771700px;}
.y53{bottom:623.296500px;}
.y76{bottom:635.644500px;}
.ya{bottom:638.998650px;}
.y99{bottom:639.166500px;}
.y2e{bottom:642.371700px;}
.y52{bottom:645.040500px;}
.yb9{bottom:645.106050px;}
.y75{bottom:658.144500px;}
.y9{bottom:661.048650px;}
.y98{bottom:661.360500px;}
.y2d{bottom:663.971700px;}
.y51{bottom:666.784500px;}
.yb8{bottom:673.410000px;}
.y74{bottom:680.644500px;}
.y8{bottom:683.098650px;}
.y97{bottom:683.554500px;}
.y2c{bottom:685.571700px;}
.y50{bottom:688.528500px;}
.y73{bottom:703.144500px;}
.y7{bottom:705.148650px;}
.y96{bottom:705.748500px;}
.y2b{bottom:707.171700px;}
.y4f{bottom:710.272500px;}
.y72{bottom:725.644500px;}
.y6{bottom:727.198650px;}
.y95{bottom:727.942500px;}
.y2a{bottom:728.771700px;}
.y4e{bottom:732.016500px;}
.yb7{bottom:738.210000px;}
.y71{bottom:748.144500px;}
.y94{bottom:750.136500px;}
.y29{bottom:750.371700px;}
.y4d{bottom:753.760500px;}
.yb6{bottom:770.310000px;}
.y70{bottom:770.644500px;}
.y28{bottom:771.971700px;}
.y93{bottom:772.330500px;}
.y4c{bottom:775.504500px;}
.yb5{bottom:790.110000px;}
.y6f{bottom:793.144500px;}
.y27{bottom:793.571700px;}
.y92{bottom:794.524500px;}
.y4b{bottom:797.248500px;}
.yb4{bottom:809.910000px;}
.y5{bottom:814.048650px;}
.y26{bottom:815.171700px;}
.y6e{bottom:815.644500px;}
.y91{bottom:816.718500px;}
.y4a{bottom:818.992500px;}
.yb3{bottom:829.710000px;}
.y6d{bottom:838.144500px;}
.y90{bottom:838.936500px;}
.y49{bottom:840.736500px;}
.yb2{bottom:849.510000px;}
.y25{bottom:849.908400px;}
.y4{bottom:855.448650px;}
.y6c{bottom:860.644500px;}
.y8f{bottom:861.130500px;}
.y48{bottom:862.480500px;}
.yb1{bottom:869.310000px;}
.y24{bottom:870.005400px;}
.y6b{bottom:883.000500px;}
.y8e{bottom:883.324500px;}
.y47{bottom:884.224500px;}
.yb0{bottom:889.110000px;}
.y6a{bottom:905.356500px;}
.y8d{bottom:905.518500px;}
.y46{bottom:905.968500px;}
.y23{bottom:906.112500px;}
.yaf{bottom:908.910000px;}
.y3{bottom:910.710000px;}
.y22{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.h8{height:26.199902px;}
.h3{height:35.663086px;}
.h6{height:37.191504px;}
.h2{height:39.990234px;}
.ha{height:40.757812px;}
.hb{height:43.989258px;}
.h9{height:48.399902px;}
.hc{height:50.947266px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.x1{left:97.795350px;}
.x4{left:119.053350px;}
.xa{left:140.307150px;}
.x2{left:150.670350px;}
.xc{left:155.677500px;}
.x3{left:216.933000px;}
.x8{left:232.443750px;}
.x5{left:353.321850px;}
.x9{left:367.496250px;}
.xb{left:518.943600px;}
.x6{left:572.164350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.680000pt;}
.ls25{letter-spacing:-0.938667pt;}
.ls26{letter-spacing:-0.880000pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.586667pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.253333pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.329067pt;}
.ls22{letter-spacing:0.410667pt;}
.ls16{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.469333pt;}
.ls19{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.645333pt;}
.lsd{letter-spacing:0.704000pt;}
.ls1b{letter-spacing:0.762667pt;}
.ls1c{letter-spacing:0.880000pt;}
.lsb{letter-spacing:0.896000pt;}
.lsa{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:3.394667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3{letter-spacing:3.893333pt;}
.ls1a{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls24{letter-spacing:6.400000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls11{letter-spacing:9.856000pt;}
.ls28{letter-spacing:17.600000pt;}
.ws17{word-spacing:-20.320000pt;}
.ws13{word-spacing:-18.624000pt;}
.ws11{word-spacing:-18.560000pt;}
.ws4{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.920000pt;}
.ws10{word-spacing:-17.792000pt;}
.wse{word-spacing:-17.664000pt;}
.wsa{word-spacing:-16.485333pt;}
.wsd{word-spacing:-16.448000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws12{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws16{word-spacing:-15.680000pt;}
.wsf{word-spacing:-15.488000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws19{word-spacing:-14.901333pt;}
.ws9{word-spacing:-14.490667pt;}
.ws6{word-spacing:-14.237333pt;}
.ws1a{word-spacing:-13.173333pt;}
.ws7{word-spacing:-12.514667pt;}
.ws18{word-spacing:-12.261333pt;}
.ws15{word-spacing:-10.790400pt;}
.ws1{word-spacing:-1.024000pt;}
.ws14{word-spacing:-0.320000pt;}
.ws8{word-spacing:0.000000pt;}
._11{margin-left:-18.691200pt;}
._10{margin-left:-17.589333pt;}
._12{margin-left:-10.528000pt;}
._6{margin-left:-9.338667pt;}
._4{margin-left:-7.706667pt;}
._7{margin-left:-6.437333pt;}
._f{margin-left:-5.275200pt;}
._0{margin-left:-3.472000pt;}
._d{margin-left:-2.581333pt;}
._2{margin-left:-1.685333pt;}
._3{width:1.472000pt;}
._8{width:2.764267pt;}
._1{width:4.352000pt;}
._9{width:5.253333pt;}
._5{width:6.437333pt;}
._b{width:7.957333pt;}
._a{width:9.109333pt;}
._c{width:10.042667pt;}
._e{width:50.598400pt;}
.fs8{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs5{font-size:38.933333pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.855600pt;}
.y21{bottom:124.714800pt;}
.yae{bottom:124.718800pt;}
.y8c{bottom:127.449333pt;}
.y69{bottom:128.825333pt;}
.y45{bottom:129.397067pt;}
.y20{bottom:139.382800pt;}
.yad{bottom:139.386800pt;}
.y8b{bottom:147.321333pt;}
.y68{bottom:148.153333pt;}
.y44{bottom:148.597067pt;}
.y1f{bottom:154.050800pt;}
.yac{bottom:154.054800pt;}
.y8a{bottom:167.193333pt;}
.y67{bottom:167.481333pt;}
.y43{bottom:167.797067pt;}
.y1e{bottom:168.718800pt;}
.yab{bottom:173.656133pt;}
.y1d{bottom:183.386800pt;}
.y66{bottom:186.809333pt;}
.y42{bottom:186.997067pt;}
.y89{bottom:187.065333pt;}
.y1c{bottom:198.054800pt;}
.y65{bottom:206.137333pt;}
.y41{bottom:206.197067pt;}
.y88{bottom:206.937333pt;}
.yaa{bottom:207.397867pt;}
.y1b{bottom:217.656133pt;}
.y40{bottom:225.397067pt;}
.y64{bottom:225.465333pt;}
.ya9{bottom:225.525867pt;}
.y87{bottom:226.809333pt;}
.ya8{bottom:243.653867pt;}
.y3f{bottom:244.597067pt;}
.y63{bottom:244.793333pt;}
.y86{bottom:246.681333pt;}
.y1a{bottom:254.398800pt;}
.ya7{bottom:261.781867pt;}
.y3e{bottom:263.797067pt;}
.y62{bottom:264.121333pt;}
.y85{bottom:266.553333pt;}
.y19{bottom:273.998800pt;}
.y3d{bottom:282.997067pt;}
.y61{bottom:283.449333pt;}
.y84{bottom:286.425333pt;}
.ya6{bottom:287.474267pt;}
.y18{bottom:293.598800pt;}
.y3c{bottom:302.197067pt;}
.y60{bottom:302.777333pt;}
.y83{bottom:306.297333pt;}
.y17{bottom:313.198800pt;}
.y3b{bottom:321.397067pt;}
.y5f{bottom:322.105333pt;}
.y82{bottom:326.169333pt;}
.yc4{bottom:328.627600pt;}
.ya5{bottom:331.412000pt;}
.y16{bottom:332.798800pt;}
.y3a{bottom:340.597067pt;}
.y5e{bottom:341.433333pt;}
.yc3{bottom:344.627600pt;}
.y81{bottom:346.041333pt;}
.ya4{bottom:351.140000pt;}
.y15{bottom:352.398800pt;}
.y39{bottom:359.797067pt;}
.yc2{bottom:360.627600pt;}
.y5d{bottom:360.761333pt;}
.y80{bottom:365.913333pt;}
.ya3{bottom:370.868000pt;}
.y14{bottom:371.998800pt;}
.yc1{bottom:376.627600pt;}
.y38{bottom:378.997067pt;}
.y5c{bottom:380.089333pt;}
.y7f{bottom:385.785333pt;}
.ya2{bottom:390.596000pt;}
.y13{bottom:391.598800pt;}
.y37{bottom:398.197067pt;}
.y5b{bottom:399.417333pt;}
.y7e{bottom:405.657333pt;}
.ya1{bottom:410.324000pt;}
.y12{bottom:411.198800pt;}
.yc0{bottom:411.827600pt;}
.y36{bottom:417.397067pt;}
.y5a{bottom:418.745333pt;}
.y7d{bottom:425.529333pt;}
.ya0{bottom:430.052000pt;}
.y11{bottom:430.798800pt;}
.y35{bottom:436.597067pt;}
.y59{bottom:438.073333pt;}
.y7c{bottom:445.401333pt;}
.ybf{bottom:448.627600pt;}
.y9f{bottom:449.780000pt;}
.y10{bottom:450.398800pt;}
.y34{bottom:455.797067pt;}
.y58{bottom:457.401333pt;}
.y7b{bottom:465.273333pt;}
.ybe{bottom:466.227600pt;}
.y9e{bottom:469.508000pt;}
.yf{bottom:469.998800pt;}
.y33{bottom:474.997067pt;}
.y57{bottom:476.729333pt;}
.ybd{bottom:483.827600pt;}
.y7a{bottom:485.145333pt;}
.y9d{bottom:489.236000pt;}
.ye{bottom:489.598800pt;}
.y32{bottom:494.197067pt;}
.y56{bottom:496.057333pt;}
.ybc{bottom:501.427600pt;}
.y79{bottom:505.017333pt;}
.y9c{bottom:508.964000pt;}
.yd{bottom:509.198800pt;}
.y31{bottom:513.397067pt;}
.y55{bottom:515.385333pt;}
.ybb{bottom:519.027600pt;}
.y78{bottom:525.017333pt;}
.y9b{bottom:528.692000pt;}
.yc{bottom:528.798800pt;}
.y30{bottom:532.597067pt;}
.y54{bottom:534.713333pt;}
.yba{bottom:536.627600pt;}
.y77{bottom:545.017333pt;}
.yb{bottom:548.398800pt;}
.y9a{bottom:548.420000pt;}
.y2f{bottom:551.797067pt;}
.y53{bottom:554.041333pt;}
.y76{bottom:565.017333pt;}
.ya{bottom:567.998800pt;}
.y99{bottom:568.148000pt;}
.y2e{bottom:570.997067pt;}
.y52{bottom:573.369333pt;}
.yb9{bottom:573.427600pt;}
.y75{bottom:585.017333pt;}
.y9{bottom:587.598800pt;}
.y98{bottom:587.876000pt;}
.y2d{bottom:590.197067pt;}
.y51{bottom:592.697333pt;}
.yb8{bottom:598.586667pt;}
.y74{bottom:605.017333pt;}
.y8{bottom:607.198800pt;}
.y97{bottom:607.604000pt;}
.y2c{bottom:609.397067pt;}
.y50{bottom:612.025333pt;}
.y73{bottom:625.017333pt;}
.y7{bottom:626.798800pt;}
.y96{bottom:627.332000pt;}
.y2b{bottom:628.597067pt;}
.y4f{bottom:631.353333pt;}
.y72{bottom:645.017333pt;}
.y6{bottom:646.398800pt;}
.y95{bottom:647.060000pt;}
.y2a{bottom:647.797067pt;}
.y4e{bottom:650.681333pt;}
.yb7{bottom:656.186667pt;}
.y71{bottom:665.017333pt;}
.y94{bottom:666.788000pt;}
.y29{bottom:666.997067pt;}
.y4d{bottom:670.009333pt;}
.yb6{bottom:684.720000pt;}
.y70{bottom:685.017333pt;}
.y28{bottom:686.197067pt;}
.y93{bottom:686.516000pt;}
.y4c{bottom:689.337333pt;}
.yb5{bottom:702.320000pt;}
.y6f{bottom:705.017333pt;}
.y27{bottom:705.397067pt;}
.y92{bottom:706.244000pt;}
.y4b{bottom:708.665333pt;}
.yb4{bottom:719.920000pt;}
.y5{bottom:723.598800pt;}
.y26{bottom:724.597067pt;}
.y6e{bottom:725.017333pt;}
.y91{bottom:725.972000pt;}
.y4a{bottom:727.993333pt;}
.yb3{bottom:737.520000pt;}
.y6d{bottom:745.017333pt;}
.y90{bottom:745.721333pt;}
.y49{bottom:747.321333pt;}
.yb2{bottom:755.120000pt;}
.y25{bottom:755.474133pt;}
.y4{bottom:760.398800pt;}
.y6c{bottom:765.017333pt;}
.y8f{bottom:765.449333pt;}
.y48{bottom:766.649333pt;}
.yb1{bottom:772.720000pt;}
.y24{bottom:773.338133pt;}
.y6b{bottom:784.889333pt;}
.y8e{bottom:785.177333pt;}
.y47{bottom:785.977333pt;}
.yb0{bottom:790.320000pt;}
.y6a{bottom:804.761333pt;}
.y8d{bottom:804.905333pt;}
.y46{bottom:805.305333pt;}
.y23{bottom:805.433333pt;}
.yaf{bottom:807.920000pt;}
.y3{bottom:809.520000pt;}
.y22{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.h8{height:23.288802pt;}
.h3{height:31.700521pt;}
.h6{height:33.059115pt;}
.h2{height:35.546875pt;}
.ha{height:36.229167pt;}
.hb{height:39.101562pt;}
.h9{height:43.022135pt;}
.hc{height:45.286458pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.x1{left:86.929200pt;}
.x4{left:105.825200pt;}
.xa{left:124.717467pt;}
.x2{left:133.929200pt;}
.xc{left:138.380000pt;}
.x3{left:192.829333pt;}
.x8{left:206.616667pt;}
.x5{left:314.063867pt;}
.x9{left:326.663333pt;}
.xb{left:461.283200pt;}
.x6{left:508.590533pt;}
}




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