
    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_da29f50fa8ab79506514a003.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.027832;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_dafb2ec96208e1b604626ae3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.988281;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_0c8f5e2053e3e0f2a7c26c8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.027832;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_cd89afb175ad238677f6e37d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_7931fa5a790f656a072e7194.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.737305;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_34161187de1ca7e0440cfceb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_36d440bac04469ded8bb4ef2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_af5364af14741483002d534d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4216b7525122dfcf41272320.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4bb1f4a038400ca83d3ac066.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.117400px;}
.v4{vertical-align:-18.105600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:20.117400px;}
.ls20{letter-spacing:-5.471999px;}
.ls1e{letter-spacing:-3.270000px;}
.ls24{letter-spacing:-2.724000px;}
.ls19{letter-spacing:-2.010000px;}
.ls27{letter-spacing:-1.704000px;}
.ls28{letter-spacing:-0.684000px;}
.ls2d{letter-spacing:-0.246000px;}
.ls18{letter-spacing:-0.192000px;}
.ls1{letter-spacing:-0.021600px;}
.lsa{letter-spacing:-0.019200px;}
.ls13{letter-spacing:-0.018000px;}
.ls5{letter-spacing:-0.014400px;}
.lsb{letter-spacing:-0.012000px;}
.lsf{letter-spacing:-0.009600px;}
.ls2{letter-spacing:-0.007200px;}
.ls10{letter-spacing:-0.006000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.006000px;}
.lse{letter-spacing:0.007140px;}
.ls2a{letter-spacing:0.008000px;}
.ls16{letter-spacing:0.008400px;}
.ls6{letter-spacing:0.009600px;}
.ls7{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.014400px;}
.ls21{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.019200px;}
.ls0{letter-spacing:0.028800px;}
.ls12{letter-spacing:0.102000px;}
.ls2e{letter-spacing:0.402000px;}
.lsd{letter-spacing:0.426000px;}
.ls1b{letter-spacing:1.212000px;}
.ls29{letter-spacing:1.367199px;}
.ls1a{letter-spacing:1.800000px;}
.ls1d{letter-spacing:2.004000px;}
.ls11{letter-spacing:2.094000px;}
.ls1c{letter-spacing:2.277600px;}
.ls2b{letter-spacing:2.626200px;}
.ls25{letter-spacing:3.714000px;}
.ls22{letter-spacing:3.964800px;}
.ls1f{letter-spacing:6.228000px;}
.ls26{letter-spacing:6.630000px;}
.ls23{letter-spacing:7.839999px;}
.ls2c{letter-spacing:10.056000px;}
.ls14{letter-spacing:11.712000px;}
.lsc{letter-spacing:13.839999px;}
.ls17{letter-spacing:14.820000px;}
.ls8{letter-spacing:17.640000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.944000px;}
.wsc{word-spacing:-16.812000px;}
.ws7{word-spacing:-16.806000px;}
.ws4{word-spacing:-16.800000px;}
.ws5{word-spacing:-16.794000px;}
.wsb{word-spacing:-16.788000px;}
.ws6{word-spacing:-16.782000px;}
.wsa{word-spacing:-16.626000px;}
.ws3{word-spacing:-16.620000px;}
.ws9{word-spacing:-16.608000px;}
.ws8{word-spacing:-14.958000px;}
.wsf{word-spacing:-11.088001px;}
.ws10{word-spacing:-11.080001px;}
.wsd{word-spacing:-9.972000px;}
.wse{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:11.506380px;}
._c{margin-left:-16.845600px;}
._1c{margin-left:-10.959420px;}
._1d{margin-left:-9.410220px;}
._f{margin-left:-7.891200px;}
._e{margin-left:-6.541200px;}
._6{margin-left:-4.800000px;}
._b{margin-left:-3.615600px;}
._4{margin-left:-2.227200px;}
._d{margin-left:-1.216800px;}
._11{width:1.000800px;}
._0{width:2.001600px;}
._3{width:3.918000px;}
._2{width:5.580000px;}
._5{width:7.236000px;}
._a{width:9.163200px;}
._7{width:10.332000px;}
._8{width:11.340000px;}
._9{width:12.745200px;}
._13{width:13.807200px;}
._10{width:15.036000px;}
._12{width:18.133200px;}
._17{width:19.286400px;}
._16{width:20.856000px;}
._1a{width:21.912000px;}
._14{width:23.060400px;}
._15{width:25.408800px;}
._19{width:26.988000px;}
._18{width:29.233200px;}
._1b{width:32.121600px;}
._1{width:38.395980px;}
.fc3{color:rgb(0,21,129);}
.fc2{color:rgb(0,0,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,31,103);}
.fs5{font-size:36.000000px;}
.fs4{font-size:40.000002px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.000000px;}
.y3{bottom:34.500000px;}
.y2f{bottom:55.350000px;}
.ya0{bottom:161.850000px;}
.y56{bottom:166.376400px;}
.y2e{bottom:170.850000px;}
.y77{bottom:175.350000px;}
.ycd{bottom:178.350000px;}
.y9f{bottom:182.876400px;}
.y78{bottom:185.850000px;}
.y9b{bottom:187.350000px;}
.y2d{bottom:188.850000px;}
.ycc{bottom:199.376400px;}
.y55{bottom:203.850000px;}
.y9a{bottom:205.350000px;}
.y2c{bottom:206.850000px;}
.ybc{bottom:214.350000px;}
.ycf{bottom:220.350000px;}
.y54{bottom:221.850000px;}
.y99{bottom:223.350000px;}
.y2b{bottom:224.850000px;}
.ybb{bottom:232.350000px;}
.y76{bottom:239.850000px;}
.y98{bottom:241.350000px;}
.y2a{bottom:242.850000px;}
.y53{bottom:248.850000px;}
.yba{bottom:250.350000px;}
.y6{bottom:253.350000px;}
.y75{bottom:257.850000px;}
.y97{bottom:259.350000px;}
.y29{bottom:260.850000px;}
.y52{bottom:266.850000px;}
.yb9{bottom:268.350000px;}
.y74{bottom:275.850000px;}
.y96{bottom:277.350000px;}
.y28{bottom:278.850000px;}
.y51{bottom:284.850000px;}
.yb8{bottom:286.350000px;}
.y73{bottom:293.850000px;}
.ycb{bottom:295.350000px;}
.y27{bottom:296.850000px;}
.y50{bottom:302.850000px;}
.yb7{bottom:304.350000px;}
.y95{bottom:307.350000px;}
.y72{bottom:311.850000px;}
.yca{bottom:313.350000px;}
.y5{bottom:314.850000px;}
.y4f{bottom:320.850000px;}
.yb6{bottom:322.350000px;}
.y26{bottom:323.850000px;}
.y71{bottom:329.850000px;}
.yc9{bottom:331.350000px;}
.y4e{bottom:338.850000px;}
.yb5{bottom:340.350000px;}
.y25{bottom:341.850000px;}
.y9e{bottom:344.850000px;}
.y70{bottom:347.850000px;}
.yc8{bottom:349.350000px;}
.y2{bottom:353.850000px;}
.y4d{bottom:356.850000px;}
.yb4{bottom:358.350000px;}
.y24{bottom:359.850000px;}
.y6f{bottom:365.850000px;}
.y4c{bottom:374.850000px;}
.yb3{bottom:376.350000px;}
.y23{bottom:377.850000px;}
.y94{bottom:380.850000px;}
.y6e{bottom:383.850000px;}
.yb2{bottom:394.350000px;}
.y22{bottom:395.850000px;}
.y6d{bottom:400.350000px;}
.y4b{bottom:401.850000px;}
.y9d{bottom:407.850000px;}
.yc7{bottom:412.350000px;}
.yb1{bottom:413.850000px;}
.y4a{bottom:419.850000px;}
.y21{bottom:425.850000px;}
.y6c{bottom:428.850000px;}
.yb0{bottom:431.850000px;}
.y49{bottom:437.850000px;}
.y6b{bottom:446.850000px;}
.yaf{bottom:449.850000px;}
.y48{bottom:455.850000px;}
.y6a{bottom:464.850000px;}
.y93{bottom:467.850000px;}
.y57{bottom:469.350000px;}
.y47{bottom:473.850000px;}
.y69{bottom:482.850000px;}
.y92{bottom:485.850000px;}
.y20{bottom:487.350000px;}
.y46{bottom:491.850000px;}
.yae{bottom:494.850000px;}
.y91{bottom:503.850000px;}
.y45{bottom:509.850000px;}
.yad{bottom:512.850000px;}
.y1f{bottom:514.350000px;}
.y90{bottom:521.850000px;}
.y44{bottom:527.850000px;}
.yac{bottom:530.850000px;}
.y8f{bottom:539.850000px;}
.y1e{bottom:541.350000px;}
.y43{bottom:545.850000px;}
.y8e{bottom:557.850000px;}
.y42{bottom:563.850000px;}
.y1d{bottom:568.350000px;}
.yab{bottom:575.850000px;}
.y41{bottom:581.850000px;}
.y8d{bottom:584.850000px;}
.yaa{bottom:593.850000px;}
.y1c{bottom:595.350000px;}
.y40{bottom:599.850000px;}
.y8c{bottom:602.850000px;}
.y3f{bottom:617.850000px;}
.y8b{bottom:620.850000px;}
.y1b{bottom:623.850000px;}
.y3e{bottom:635.850000px;}
.y8a{bottom:638.850000px;}
.yce{bottom:641.850000px;}
.y1a{bottom:653.850000px;}
.y89{bottom:656.850000px;}
.ya9{bottom:665.850000px;}
.y3d{bottom:671.850000px;}
.yc6{bottom:674.850000px;}
.y68{bottom:680.850000px;}
.y88{bottom:683.850000px;}
.y3c{bottom:689.850000px;}
.yc5{bottom:692.850000px;}
.y67{bottom:698.850000px;}
.y87{bottom:701.850000px;}
.y3b{bottom:707.850000px;}
.yc4{bottom:710.850000px;}
.y19{bottom:716.850000px;}
.y86{bottom:719.850000px;}
.y1{bottom:724.350000px;}
.y3a{bottom:725.850000px;}
.yc3{bottom:728.850000px;}
.y18{bottom:734.850000px;}
.y85{bottom:737.850000px;}
.yc2{bottom:746.850000px;}
.y17{bottom:752.850000px;}
.y84{bottom:755.850000px;}
.yc1{bottom:764.850000px;}
.y16{bottom:770.850000px;}
.y83{bottom:773.850000px;}
.y66{bottom:782.850000px;}
.y15{bottom:788.850000px;}
.ya8{bottom:791.850000px;}
.y82{bottom:800.850000px;}
.y14{bottom:806.850000px;}
.ya7{bottom:809.850000px;}
.y81{bottom:818.850000px;}
.y39{bottom:824.850000px;}
.y9c{bottom:827.850000px;}
.y13{bottom:833.850000px;}
.y80{bottom:836.850000px;}
.y38{bottom:842.850000px;}
.y65{bottom:845.850000px;}
.y12{bottom:851.850000px;}
.y7f{bottom:853.350000px;}
.y37{bottom:860.850000px;}
.y64{bottom:863.850000px;}
.y11{bottom:869.850000px;}
.y36{bottom:878.850000px;}
.y63{bottom:881.850000px;}
.y10{bottom:887.850000px;}
.ya6{bottom:890.850000px;}
.y35{bottom:896.850000px;}
.y62{bottom:899.850000px;}
.yf{bottom:905.850000px;}
.ya5{bottom:908.850000px;}
.y7e{bottom:916.350000px;}
.y61{bottom:917.850000px;}
.ye{bottom:923.850000px;}
.ya4{bottom:926.850000px;}
.y60{bottom:935.850000px;}
.y34{bottom:941.850000px;}
.y7d{bottom:944.850000px;}
.yd{bottom:950.850000px;}
.y5f{bottom:953.850000px;}
.y33{bottom:959.850000px;}
.y7c{bottom:962.850000px;}
.yc{bottom:968.850000px;}
.y5e{bottom:971.850000px;}
.y32{bottom:977.850000px;}
.ya3{bottom:980.850000px;}
.yb{bottom:986.850000px;}
.y7b{bottom:989.850000px;}
.y31{bottom:995.850000px;}
.y5d{bottom:998.850000px;}
.ya{bottom:1004.850000px;}
.y7a{bottom:1007.850000px;}
.y30{bottom:1013.850000px;}
.y5c{bottom:1016.850000px;}
.y79{bottom:1024.350000px;}
.ya2{bottom:1025.850000px;}
.y9{bottom:1031.850000px;}
.y5b{bottom:1034.850000px;}
.ya1{bottom:1043.850000px;}
.y8{bottom:1049.850000px;}
.y5a{bottom:1052.850000px;}
.y59{bottom:1070.850000px;}
.y7{bottom:1079.850000px;}
.y58{bottom:1088.850000px;}
.yc0{bottom:1147.350000px;}
.ybf{bottom:1163.850000px;}
.ybe{bottom:1180.350000px;}
.ybd{bottom:1196.850000px;}
.hd{height:28.089844px;}
.h6{height:37.500000px;}
.h10{height:42.134766px;}
.ha{height:43.037109px;}
.h8{height:46.816406px;}
.hc{height:49.189453px;}
.h11{height:51.327739px;}
.hb{height:51.328339px;}
.h9{height:52.816406px;}
.hf{height:54.000000px;}
.he{height:55.189453px;}
.h5{height:56.179688px;}
.h4{height:59.027344px;}
.h3{height:60.000000px;}
.h7{height:78.703125px;}
.h2{height:118.054688px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:211.050000px;}
.w3{width:419.700450px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:7.500000px;}
.x8{left:22.722285px;}
.x7{left:45.472785px;}
.x5{left:101.100225px;}
.x6{left:106.209600px;}
.xa{left:127.559055px;}
.x2{left:129.150015px;}
.xf{left:141.059055px;}
.x9{left:168.787650px;}
.xe{left:180.073971px;}
.x11{left:188.915550px;}
.x12{left:224.644800px;}
.x1{left:243.934500px;}
.x4{left:341.700000px;}
.x13{left:392.999991px;}
.xb{left:442.078800px;}
.xd{left:463.500000px;}
.xc{left:465.375000px;}
.x10{left:549.181626px;}
@media print{
.v3{vertical-align:-17.882133pt;}
.v4{vertical-align:-16.093867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:17.882133pt;}
.ls20{letter-spacing:-4.863999pt;}
.ls1e{letter-spacing:-2.906667pt;}
.ls24{letter-spacing:-2.421333pt;}
.ls19{letter-spacing:-1.786667pt;}
.ls27{letter-spacing:-1.514667pt;}
.ls28{letter-spacing:-0.608000pt;}
.ls2d{letter-spacing:-0.218667pt;}
.ls18{letter-spacing:-0.170667pt;}
.ls1{letter-spacing:-0.019200pt;}
.lsa{letter-spacing:-0.017067pt;}
.ls13{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:-0.012800pt;}
.lsb{letter-spacing:-0.010667pt;}
.lsf{letter-spacing:-0.008533pt;}
.ls2{letter-spacing:-0.006400pt;}
.ls10{letter-spacing:-0.005333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005333pt;}
.lse{letter-spacing:0.006347pt;}
.ls2a{letter-spacing:0.007111pt;}
.ls16{letter-spacing:0.007467pt;}
.ls6{letter-spacing:0.008533pt;}
.ls7{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.012800pt;}
.ls21{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.017067pt;}
.ls0{letter-spacing:0.025600pt;}
.ls12{letter-spacing:0.090667pt;}
.ls2e{letter-spacing:0.357333pt;}
.lsd{letter-spacing:0.378667pt;}
.ls1b{letter-spacing:1.077333pt;}
.ls29{letter-spacing:1.215288pt;}
.ls1a{letter-spacing:1.600000pt;}
.ls1d{letter-spacing:1.781333pt;}
.ls11{letter-spacing:1.861333pt;}
.ls1c{letter-spacing:2.024533pt;}
.ls2b{letter-spacing:2.334400pt;}
.ls25{letter-spacing:3.301333pt;}
.ls22{letter-spacing:3.524267pt;}
.ls1f{letter-spacing:5.536000pt;}
.ls26{letter-spacing:5.893333pt;}
.ls23{letter-spacing:6.968888pt;}
.ls2c{letter-spacing:8.938667pt;}
.ls14{letter-spacing:10.410667pt;}
.lsc{letter-spacing:12.302221pt;}
.ls17{letter-spacing:13.173333pt;}
.ls8{letter-spacing:15.680000pt;}
.ws0{word-spacing:-17.728000pt;}
.wsc{word-spacing:-14.944000pt;}
.ws7{word-spacing:-14.938667pt;}
.ws4{word-spacing:-14.933333pt;}
.ws5{word-spacing:-14.928000pt;}
.wsb{word-spacing:-14.922667pt;}
.ws6{word-spacing:-14.917333pt;}
.wsa{word-spacing:-14.778667pt;}
.ws3{word-spacing:-14.773333pt;}
.ws9{word-spacing:-14.762667pt;}
.ws8{word-spacing:-13.296000pt;}
.wsf{word-spacing:-9.856000pt;}
.ws10{word-spacing:-9.848889pt;}
.wsd{word-spacing:-8.864000pt;}
.wse{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:10.227893pt;}
._c{margin-left:-14.973867pt;}
._1c{margin-left:-9.741707pt;}
._1d{margin-left:-8.364640pt;}
._f{margin-left:-7.014400pt;}
._e{margin-left:-5.814400pt;}
._6{margin-left:-4.266667pt;}
._b{margin-left:-3.213867pt;}
._4{margin-left:-1.979733pt;}
._d{margin-left:-1.081600pt;}
._11{width:0.889600pt;}
._0{width:1.779200pt;}
._3{width:3.482667pt;}
._2{width:4.960000pt;}
._5{width:6.432000pt;}
._a{width:8.145067pt;}
._7{width:9.184000pt;}
._8{width:10.080000pt;}
._9{width:11.329067pt;}
._13{width:12.273067pt;}
._10{width:13.365333pt;}
._12{width:16.118400pt;}
._17{width:17.143467pt;}
._16{width:18.538667pt;}
._1a{width:19.477333pt;}
._14{width:20.498133pt;}
._15{width:22.585600pt;}
._19{width:23.989333pt;}
._18{width:25.985067pt;}
._1b{width:28.552533pt;}
._1{width:34.129760pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:35.555557pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.666667pt;}
.y3{bottom:30.666667pt;}
.y2f{bottom:49.200000pt;}
.ya0{bottom:143.866667pt;}
.y56{bottom:147.890133pt;}
.y2e{bottom:151.866667pt;}
.y77{bottom:155.866667pt;}
.ycd{bottom:158.533333pt;}
.y9f{bottom:162.556800pt;}
.y78{bottom:165.200000pt;}
.y9b{bottom:166.533333pt;}
.y2d{bottom:167.866667pt;}
.ycc{bottom:177.223467pt;}
.y55{bottom:181.200000pt;}
.y9a{bottom:182.533333pt;}
.y2c{bottom:183.866667pt;}
.ybc{bottom:190.533333pt;}
.ycf{bottom:195.866667pt;}
.y54{bottom:197.200000pt;}
.y99{bottom:198.533333pt;}
.y2b{bottom:199.866667pt;}
.ybb{bottom:206.533333pt;}
.y76{bottom:213.200000pt;}
.y98{bottom:214.533333pt;}
.y2a{bottom:215.866667pt;}
.y53{bottom:221.200000pt;}
.yba{bottom:222.533333pt;}
.y6{bottom:225.200000pt;}
.y75{bottom:229.200000pt;}
.y97{bottom:230.533333pt;}
.y29{bottom:231.866667pt;}
.y52{bottom:237.200000pt;}
.yb9{bottom:238.533333pt;}
.y74{bottom:245.200000pt;}
.y96{bottom:246.533333pt;}
.y28{bottom:247.866667pt;}
.y51{bottom:253.200000pt;}
.yb8{bottom:254.533333pt;}
.y73{bottom:261.200000pt;}
.ycb{bottom:262.533333pt;}
.y27{bottom:263.866667pt;}
.y50{bottom:269.200000pt;}
.yb7{bottom:270.533333pt;}
.y95{bottom:273.200000pt;}
.y72{bottom:277.200000pt;}
.yca{bottom:278.533333pt;}
.y5{bottom:279.866667pt;}
.y4f{bottom:285.200000pt;}
.yb6{bottom:286.533333pt;}
.y26{bottom:287.866667pt;}
.y71{bottom:293.200000pt;}
.yc9{bottom:294.533333pt;}
.y4e{bottom:301.200000pt;}
.yb5{bottom:302.533333pt;}
.y25{bottom:303.866667pt;}
.y9e{bottom:306.533333pt;}
.y70{bottom:309.200000pt;}
.yc8{bottom:310.533333pt;}
.y2{bottom:314.533333pt;}
.y4d{bottom:317.200000pt;}
.yb4{bottom:318.533333pt;}
.y24{bottom:319.866667pt;}
.y6f{bottom:325.200000pt;}
.y4c{bottom:333.200000pt;}
.yb3{bottom:334.533333pt;}
.y23{bottom:335.866667pt;}
.y94{bottom:338.533333pt;}
.y6e{bottom:341.200000pt;}
.yb2{bottom:350.533333pt;}
.y22{bottom:351.866667pt;}
.y6d{bottom:355.866667pt;}
.y4b{bottom:357.200000pt;}
.y9d{bottom:362.533333pt;}
.yc7{bottom:366.533333pt;}
.yb1{bottom:367.866667pt;}
.y4a{bottom:373.200000pt;}
.y21{bottom:378.533333pt;}
.y6c{bottom:381.200000pt;}
.yb0{bottom:383.866667pt;}
.y49{bottom:389.200000pt;}
.y6b{bottom:397.200000pt;}
.yaf{bottom:399.866667pt;}
.y48{bottom:405.200000pt;}
.y6a{bottom:413.200000pt;}
.y93{bottom:415.866667pt;}
.y57{bottom:417.200000pt;}
.y47{bottom:421.200000pt;}
.y69{bottom:429.200000pt;}
.y92{bottom:431.866667pt;}
.y20{bottom:433.200000pt;}
.y46{bottom:437.200000pt;}
.yae{bottom:439.866667pt;}
.y91{bottom:447.866667pt;}
.y45{bottom:453.200000pt;}
.yad{bottom:455.866667pt;}
.y1f{bottom:457.200000pt;}
.y90{bottom:463.866667pt;}
.y44{bottom:469.200000pt;}
.yac{bottom:471.866667pt;}
.y8f{bottom:479.866667pt;}
.y1e{bottom:481.200000pt;}
.y43{bottom:485.200000pt;}
.y8e{bottom:495.866667pt;}
.y42{bottom:501.200000pt;}
.y1d{bottom:505.200000pt;}
.yab{bottom:511.866667pt;}
.y41{bottom:517.200000pt;}
.y8d{bottom:519.866667pt;}
.yaa{bottom:527.866667pt;}
.y1c{bottom:529.200000pt;}
.y40{bottom:533.200000pt;}
.y8c{bottom:535.866667pt;}
.y3f{bottom:549.200000pt;}
.y8b{bottom:551.866667pt;}
.y1b{bottom:554.533333pt;}
.y3e{bottom:565.200000pt;}
.y8a{bottom:567.866667pt;}
.yce{bottom:570.533333pt;}
.y1a{bottom:581.200000pt;}
.y89{bottom:583.866667pt;}
.ya9{bottom:591.866667pt;}
.y3d{bottom:597.200000pt;}
.yc6{bottom:599.866667pt;}
.y68{bottom:605.200000pt;}
.y88{bottom:607.866667pt;}
.y3c{bottom:613.200000pt;}
.yc5{bottom:615.866667pt;}
.y67{bottom:621.200000pt;}
.y87{bottom:623.866667pt;}
.y3b{bottom:629.200000pt;}
.yc4{bottom:631.866667pt;}
.y19{bottom:637.200000pt;}
.y86{bottom:639.866667pt;}
.y1{bottom:643.866667pt;}
.y3a{bottom:645.200000pt;}
.yc3{bottom:647.866667pt;}
.y18{bottom:653.200000pt;}
.y85{bottom:655.866667pt;}
.yc2{bottom:663.866667pt;}
.y17{bottom:669.200000pt;}
.y84{bottom:671.866667pt;}
.yc1{bottom:679.866667pt;}
.y16{bottom:685.200000pt;}
.y83{bottom:687.866667pt;}
.y66{bottom:695.866667pt;}
.y15{bottom:701.200000pt;}
.ya8{bottom:703.866667pt;}
.y82{bottom:711.866667pt;}
.y14{bottom:717.200000pt;}
.ya7{bottom:719.866667pt;}
.y81{bottom:727.866667pt;}
.y39{bottom:733.200000pt;}
.y9c{bottom:735.866667pt;}
.y13{bottom:741.200000pt;}
.y80{bottom:743.866667pt;}
.y38{bottom:749.200000pt;}
.y65{bottom:751.866667pt;}
.y12{bottom:757.200000pt;}
.y7f{bottom:758.533333pt;}
.y37{bottom:765.200000pt;}
.y64{bottom:767.866667pt;}
.y11{bottom:773.200000pt;}
.y36{bottom:781.200000pt;}
.y63{bottom:783.866667pt;}
.y10{bottom:789.200000pt;}
.ya6{bottom:791.866667pt;}
.y35{bottom:797.200000pt;}
.y62{bottom:799.866667pt;}
.yf{bottom:805.200000pt;}
.ya5{bottom:807.866667pt;}
.y7e{bottom:814.533333pt;}
.y61{bottom:815.866667pt;}
.ye{bottom:821.200000pt;}
.ya4{bottom:823.866667pt;}
.y60{bottom:831.866667pt;}
.y34{bottom:837.200000pt;}
.y7d{bottom:839.866667pt;}
.yd{bottom:845.200000pt;}
.y5f{bottom:847.866667pt;}
.y33{bottom:853.200000pt;}
.y7c{bottom:855.866667pt;}
.yc{bottom:861.200000pt;}
.y5e{bottom:863.866667pt;}
.y32{bottom:869.200000pt;}
.ya3{bottom:871.866667pt;}
.yb{bottom:877.200000pt;}
.y7b{bottom:879.866667pt;}
.y31{bottom:885.200000pt;}
.y5d{bottom:887.866667pt;}
.ya{bottom:893.200000pt;}
.y7a{bottom:895.866667pt;}
.y30{bottom:901.200000pt;}
.y5c{bottom:903.866667pt;}
.y79{bottom:910.533333pt;}
.ya2{bottom:911.866667pt;}
.y9{bottom:917.200000pt;}
.y5b{bottom:919.866667pt;}
.ya1{bottom:927.866667pt;}
.y8{bottom:933.200000pt;}
.y5a{bottom:935.866667pt;}
.y59{bottom:951.866667pt;}
.y7{bottom:959.866667pt;}
.y58{bottom:967.866667pt;}
.yc0{bottom:1019.866667pt;}
.ybf{bottom:1034.533333pt;}
.ybe{bottom:1049.200000pt;}
.ybd{bottom:1063.866667pt;}
.hd{height:24.968750pt;}
.h6{height:33.333333pt;}
.h10{height:37.453125pt;}
.ha{height:38.255208pt;}
.h8{height:41.614583pt;}
.hc{height:43.723958pt;}
.h11{height:45.624657pt;}
.hb{height:45.625190pt;}
.h9{height:46.947917pt;}
.hf{height:48.000000pt;}
.he{height:49.057292pt;}
.h5{height:49.937500pt;}
.h4{height:52.468750pt;}
.h3{height:53.333333pt;}
.h7{height:69.958333pt;}
.h2{height:104.937500pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:187.600000pt;}
.w3{width:373.067067pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:6.666667pt;}
.x8{left:20.197587pt;}
.x7{left:40.420253pt;}
.x5{left:89.866867pt;}
.x6{left:94.408533pt;}
.xa{left:113.385827pt;}
.x2{left:114.800013pt;}
.xf{left:125.385827pt;}
.x9{left:150.033467pt;}
.xe{left:160.065752pt;}
.x11{left:167.924933pt;}
.x12{left:199.684267pt;}
.x1{left:216.830667pt;}
.x4{left:303.733333pt;}
.x13{left:349.333325pt;}
.xb{left:392.958933pt;}
.xd{left:412.000000pt;}
.xc{left:413.666667pt;}
.x10{left:488.161445pt;}
}




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