
    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_6a4b4a3c779d368974323cd1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_41040bc8f252398fabeda29e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_c2d9ac3db0019e431b0d05da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;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_35e507d021c0c6b9dc04833d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_ad1440fea4c1f19eefd597de.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_ff5d579b37c2e36f16667ccf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_9ba94a2d499388da8cabb6a9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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:ffb;src:url('chunks/assets/font_2b745ba4c65bbe42202b8723.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.105469;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:ffc;src:url('chunks/assets/font_7815aa440abc59f9bad4480b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.767578;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:ffd;src:url('chunks/assets/font_f939fc3190415766135a2d63.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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:ffe;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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:fff;src:url('chunks/assets/font_56cc236ded3a7d0259abac0f.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000001px;}
.ls6{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.lsa{letter-spacing:33.984000px;}
.ls9{letter-spacing:54.864000px;}
.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;}
}
.wsa{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.424000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws6{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-7.888320px;}
._0{margin-left:-5.079600px;}
._8{margin-left:-4.032000px;}
._9{margin-left:-2.599920px;}
._3{margin-left:-1.075680px;}
._2{width:1.015920px;}
._1{width:2.988000px;}
._a{width:4.032000px;}
._d{width:5.544000px;}
._c{width:6.840000px;}
._14{width:8.224080px;}
._e{width:9.432000px;}
._f{width:10.944000px;}
._10{width:12.816000px;}
._15{width:13.824000px;}
._5{width:15.264000px;}
._b{width:16.344000px;}
._6{width:19.368000px;}
._7{width:20.800080px;}
._13{width:22.471920px;}
._16{width:23.683680px;}
._12{width:24.888000px;}
._11{width:25.992000px;}
._1b{width:27.360000px;}
._1c{width:28.512000px;}
._17{width:30.139680px;}
._18{width:31.680000px;}
._19{width:32.904000px;}
._1a{width:34.396080px;}
._1d{width:36.084000px;}
._1f{width:40.308720px;}
._1e{width:41.611680px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:57.456000px;}
.y5{bottom:66.525004px;}
.y27{bottom:77.616000px;}
.y4{bottom:97.125005px;}
.ybe{bottom:114.696000px;}
.y51{bottom:119.556000px;}
.yc9{bottom:119.736000px;}
.yd7{bottom:124.776000px;}
.y7d{bottom:129.816000px;}
.y22{bottom:139.264499px;}
.ybd{bottom:139.536000px;}
.ya6{bottom:144.216000px;}
.y50{bottom:144.396000px;}
.yc8{bottom:144.576000px;}
.yd6{bottom:149.616000px;}
.y7c{bottom:154.650000px;}
.ybc{bottom:164.370000px;}
.ya5{bottom:169.050000px;}
.y4f{bottom:169.230000px;}
.yc7{bottom:169.410000px;}
.yd5{bottom:174.450000px;}
.yc0{bottom:179.130000px;}
.y7b{bottom:179.490000px;}
.ybb{bottom:189.210000px;}
.ya4{bottom:193.890000px;}
.y4e{bottom:194.070000px;}
.yc6{bottom:194.250000px;}
.y19{bottom:196.933500px;}
.yd4{bottom:199.290000px;}
.y7a{bottom:204.330000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yba{bottom:214.050000px;}
.ya3{bottom:218.730000px;}
.y4d{bottom:218.910000px;}
.yc5{bottom:219.090000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.yd3{bottom:224.130000px;}
.y79{bottom:229.170000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yb9{bottom:238.890000px;}
.ya2{bottom:243.570000px;}
.y4c{bottom:243.750000px;}
.yc4{bottom:243.930000px;}
.yd2{bottom:248.970000px;}
.y78{bottom:254.010000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.yb8{bottom:263.550000px;}
.ya1{bottom:268.410000px;}
.y4b{bottom:268.590000px;}
.yc3{bottom:268.770000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yd1{bottom:273.810000px;}
.y77{bottom:278.850000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.yb7{bottom:289.875000px;}
.ya0{bottom:293.115000px;}
.y4a{bottom:293.475000px;}
.yc2{bottom:293.655000px;}
.yd0{bottom:298.695000px;}
.y76{bottom:303.735000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yb6{bottom:314.715000px;}
.y49{bottom:317.955000px;}
.y9f{bottom:318.495000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.ycf{bottom:323.535000px;}
.y75{bottom:328.575000px;}
.yb5{bottom:339.555000px;}
.y48{bottom:342.795000px;}
.y9e{bottom:343.335000px;}
.y10{bottom:348.133500px;}
.yce{bottom:348.375000px;}
.y74{bottom:353.415000px;}
.yb4{bottom:364.395000px;}
.y47{bottom:367.995000px;}
.y9d{bottom:368.175000px;}
.ycd{bottom:373.215000px;}
.y73{bottom:378.255000px;}
.yf{bottom:386.785499px;}
.yb3{bottom:389.055000px;}
.y46{bottom:392.835000px;}
.y9c{bottom:393.015000px;}
.ycc{bottom:394.995000px;}
.y72{bottom:403.095000px;}
.ye{bottom:408.044999px;}
.yb2{bottom:415.335000px;}
.ycb{bottom:417.315000px;}
.y45{bottom:417.675000px;}
.y9b{bottom:417.855000px;}
.y71{bottom:427.935000px;}
.yb1{bottom:440.175000px;}
.y44{bottom:442.515000px;}
.y9a{bottom:442.695000px;}
.y70{bottom:452.775000px;}
.yb0{bottom:465.015000px;}
.y43{bottom:467.355000px;}
.y99{bottom:467.535000px;}
.y6f{bottom:477.615000px;}
.yd{bottom:484.864502px;}
.yaf{bottom:489.675000px;}
.y42{bottom:492.195000px;}
.y98{bottom:492.375000px;}
.y6e{bottom:502.455000px;}
.yc{bottom:502.864502px;}
.yae{bottom:515.955000px;}
.y41{bottom:517.035000px;}
.y97{bottom:517.215000px;}
.yb{bottom:520.864502px;}
.y6d{bottom:527.295000px;}
.ya{bottom:538.864499px;}
.yad{bottom:540.795000px;}
.y96{bottom:541.695000px;}
.y40{bottom:541.875000px;}
.yc1{bottom:542.055000px;}
.y6c{bottom:552.135000px;}
.y9{bottom:556.864499px;}
.yac{bottom:565.665000px;}
.y3f{bottom:566.745000px;}
.y95{bottom:566.925000px;}
.y6b{bottom:577.005000px;}
.yab{bottom:590.325000px;}
.y3e{bottom:591.585000px;}
.y94{bottom:591.765000px;}
.y6a{bottom:601.845000px;}
.y3d{bottom:616.425000px;}
.y93{bottom:616.605000px;}
.y69{bottom:626.685000px;}
.y3c{bottom:641.265000px;}
.y92{bottom:641.445000px;}
.y8{bottom:645.510000px;}
.y68{bottom:651.165000px;}
.yaa{bottom:651.525000px;}
.y3b{bottom:666.105000px;}
.y91{bottom:666.285000px;}
.y7{bottom:666.771000px;}
.y67{bottom:676.005000px;}
.ya9{bottom:676.365000px;}
.y3a{bottom:690.945000px;}
.y90{bottom:691.125000px;}
.y66{bottom:701.205000px;}
.y39{bottom:715.785000px;}
.y8f{bottom:715.965000px;}
.ya8{bottom:725.685000px;}
.y65{bottom:726.045000px;}
.y6{bottom:726.298500px;}
.y38{bottom:740.625000px;}
.y8e{bottom:740.805000px;}
.ya7{bottom:750.525000px;}
.y64{bottom:750.885000px;}
.y3{bottom:752.599495px;}
.y37{bottom:765.465000px;}
.y8d{bottom:765.645000px;}
.y63{bottom:775.725000px;}
.y36{bottom:790.305000px;}
.y8c{bottom:790.485000px;}
.y62{bottom:800.565000px;}
.y35{bottom:815.145000px;}
.y8b{bottom:815.325000px;}
.y61{bottom:825.405000px;}
.y34{bottom:839.985000px;}
.y8a{bottom:840.165000px;}
.y60{bottom:850.290000px;}
.y33{bottom:864.870000px;}
.y89{bottom:865.050000px;}
.y5f{bottom:875.130000px;}
.y2{bottom:879.369000px;}
.y32{bottom:889.710000px;}
.y88{bottom:889.890000px;}
.y5e{bottom:899.970000px;}
.y31{bottom:914.550000px;}
.y87{bottom:914.730000px;}
.y5d{bottom:924.810000px;}
.y30{bottom:939.390000px;}
.y86{bottom:939.570000px;}
.y5c{bottom:949.650000px;}
.y2f{bottom:964.230000px;}
.y85{bottom:964.410000px;}
.y1{bottom:966.726000px;}
.y5b{bottom:974.490000px;}
.y2e{bottom:989.070000px;}
.y84{bottom:989.250000px;}
.y5a{bottom:999.330000px;}
.y2d{bottom:1013.550000px;}
.y83{bottom:1014.090000px;}
.y59{bottom:1024.170000px;}
.y2c{bottom:1038.210000px;}
.y82{bottom:1038.930000px;}
.y58{bottom:1049.010000px;}
.y2b{bottom:1063.050000px;}
.y81{bottom:1063.770000px;}
.y57{bottom:1073.850000px;}
.y80{bottom:1088.610000px;}
.y2a{bottom:1089.330000px;}
.yca{bottom:1098.330000px;}
.y56{bottom:1098.690000px;}
.y7f{bottom:1113.450000px;}
.y29{bottom:1118.310000px;}
.ybf{bottom:1123.200000px;}
.y55{bottom:1123.560000px;}
.y7e{bottom:1138.320000px;}
.y26{bottom:1142.280000px;}
.y54{bottom:1144.440000px;}
.y25{bottom:1161.540000px;}
.y53{bottom:1168.560000px;}
.y24{bottom:1178.820000px;}
.y52{bottom:1193.400000px;}
.y23{bottom:1196.100000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h2{height:55.152000px;}
.hc{height:58.651172px;}
.hd{height:65.884219px;}
.h11{height:70.628906px;}
.h10{height:70.664062px;}
.hf{height:72.562500px;}
.h12{height:74.004654px;}
.h5{height:78.132000px;}
.he{height:84.898125px;}
.h4{height:119.055004px;}
.hb{height:1262.250000px;}
.ha{height:1262.520000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:893.159987px;}
.w3{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:80.999987px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:108.035987px;}
.x10{left:135.035987px;}
.xc{left:139.535987px;}
.x7{left:153.389987px;}
.xb{left:162.029987px;}
.x8{left:180.749987px;}
.x4{left:203.484001px;}
.xe{left:285.554987px;}
.xd{left:319.574987px;}
.xa{left:322.634987px;}
.x6{left:434.084987px;}
.x9{left:446.684987px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000001pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.lsa{letter-spacing:30.208000pt;}
.ls9{letter-spacing:48.768000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.488000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-7.011840pt;}
._0{margin-left:-4.515200pt;}
._8{margin-left:-3.584000pt;}
._9{margin-left:-2.311040pt;}
._3{margin-left:-0.956160pt;}
._2{width:0.903040pt;}
._1{width:2.656000pt;}
._a{width:3.584000pt;}
._d{width:4.928000pt;}
._c{width:6.080000pt;}
._14{width:7.310293pt;}
._e{width:8.384000pt;}
._f{width:9.728000pt;}
._10{width:11.392000pt;}
._15{width:12.288000pt;}
._5{width:13.568000pt;}
._b{width:14.528000pt;}
._6{width:17.216000pt;}
._7{width:18.488960pt;}
._13{width:19.975040pt;}
._16{width:21.052160pt;}
._12{width:22.122667pt;}
._11{width:23.104000pt;}
._1b{width:24.320000pt;}
._1c{width:25.344000pt;}
._17{width:26.790827pt;}
._18{width:28.160000pt;}
._19{width:29.248000pt;}
._1a{width:30.574293pt;}
._1d{width:32.074667pt;}
._1f{width:35.829973pt;}
._1e{width:36.988160pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:51.072000pt;}
.y5{bottom:59.133337pt;}
.y27{bottom:68.992000pt;}
.y4{bottom:86.333337pt;}
.ybe{bottom:101.952000pt;}
.y51{bottom:106.272000pt;}
.yc9{bottom:106.432000pt;}
.yd7{bottom:110.912000pt;}
.y7d{bottom:115.392000pt;}
.y22{bottom:123.790666pt;}
.ybd{bottom:124.032000pt;}
.ya6{bottom:128.192000pt;}
.y50{bottom:128.352000pt;}
.yc8{bottom:128.512000pt;}
.yd6{bottom:132.992000pt;}
.y7c{bottom:137.466667pt;}
.ybc{bottom:146.106667pt;}
.ya5{bottom:150.266667pt;}
.y4f{bottom:150.426667pt;}
.yc7{bottom:150.586667pt;}
.yd5{bottom:155.066667pt;}
.yc0{bottom:159.226667pt;}
.y7b{bottom:159.546667pt;}
.ybb{bottom:168.186667pt;}
.ya4{bottom:172.346667pt;}
.y4e{bottom:172.506667pt;}
.yc6{bottom:172.666667pt;}
.y19{bottom:175.052000pt;}
.yd4{bottom:177.146667pt;}
.y7a{bottom:181.626667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yba{bottom:190.266667pt;}
.ya3{bottom:194.426667pt;}
.y4d{bottom:194.586667pt;}
.yc5{bottom:194.746667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.yd3{bottom:199.226667pt;}
.y79{bottom:203.706667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yb9{bottom:212.346667pt;}
.ya2{bottom:216.506667pt;}
.y4c{bottom:216.666667pt;}
.yc4{bottom:216.826667pt;}
.yd2{bottom:221.306667pt;}
.y78{bottom:225.786667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.yb8{bottom:234.266667pt;}
.ya1{bottom:238.586667pt;}
.y4b{bottom:238.746667pt;}
.yc3{bottom:238.906667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yd1{bottom:243.386667pt;}
.y77{bottom:247.866667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.yb7{bottom:257.666667pt;}
.ya0{bottom:260.546667pt;}
.y4a{bottom:260.866667pt;}
.yc2{bottom:261.026667pt;}
.yd0{bottom:265.506667pt;}
.y76{bottom:269.986667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yb6{bottom:279.746667pt;}
.y49{bottom:282.626667pt;}
.y9f{bottom:283.106667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.ycf{bottom:287.586667pt;}
.y75{bottom:292.066667pt;}
.yb5{bottom:301.826667pt;}
.y48{bottom:304.706667pt;}
.y9e{bottom:305.186667pt;}
.y10{bottom:309.452000pt;}
.yce{bottom:309.666667pt;}
.y74{bottom:314.146667pt;}
.yb4{bottom:323.906667pt;}
.y47{bottom:327.106667pt;}
.y9d{bottom:327.266667pt;}
.ycd{bottom:331.746667pt;}
.y73{bottom:336.226667pt;}
.yf{bottom:343.809333pt;}
.yb3{bottom:345.826667pt;}
.y46{bottom:349.186667pt;}
.y9c{bottom:349.346667pt;}
.ycc{bottom:351.106667pt;}
.y72{bottom:358.306667pt;}
.ye{bottom:362.706666pt;}
.yb2{bottom:369.186667pt;}
.ycb{bottom:370.946667pt;}
.y45{bottom:371.266667pt;}
.y9b{bottom:371.426667pt;}
.y71{bottom:380.386667pt;}
.yb1{bottom:391.266667pt;}
.y44{bottom:393.346667pt;}
.y9a{bottom:393.506667pt;}
.y70{bottom:402.466667pt;}
.yb0{bottom:413.346667pt;}
.y43{bottom:415.426667pt;}
.y99{bottom:415.586667pt;}
.y6f{bottom:424.546667pt;}
.yd{bottom:430.990669pt;}
.yaf{bottom:435.266667pt;}
.y42{bottom:437.506667pt;}
.y98{bottom:437.666667pt;}
.y6e{bottom:446.626667pt;}
.yc{bottom:446.990669pt;}
.yae{bottom:458.626667pt;}
.y41{bottom:459.586667pt;}
.y97{bottom:459.746667pt;}
.yb{bottom:462.990669pt;}
.y6d{bottom:468.706667pt;}
.ya{bottom:478.990666pt;}
.yad{bottom:480.706667pt;}
.y96{bottom:481.506667pt;}
.y40{bottom:481.666667pt;}
.yc1{bottom:481.826667pt;}
.y6c{bottom:490.786667pt;}
.y9{bottom:494.990666pt;}
.yac{bottom:502.813333pt;}
.y3f{bottom:503.773333pt;}
.y95{bottom:503.933333pt;}
.y6b{bottom:512.893333pt;}
.yab{bottom:524.733333pt;}
.y3e{bottom:525.853333pt;}
.y94{bottom:526.013333pt;}
.y6a{bottom:534.973333pt;}
.y3d{bottom:547.933333pt;}
.y93{bottom:548.093333pt;}
.y69{bottom:557.053333pt;}
.y3c{bottom:570.013333pt;}
.y92{bottom:570.173333pt;}
.y8{bottom:573.786667pt;}
.y68{bottom:578.813333pt;}
.yaa{bottom:579.133333pt;}
.y3b{bottom:592.093333pt;}
.y91{bottom:592.253333pt;}
.y7{bottom:592.685334pt;}
.y67{bottom:600.893333pt;}
.ya9{bottom:601.213333pt;}
.y3a{bottom:614.173333pt;}
.y90{bottom:614.333333pt;}
.y66{bottom:623.293333pt;}
.y39{bottom:636.253333pt;}
.y8f{bottom:636.413333pt;}
.ya8{bottom:645.053333pt;}
.y65{bottom:645.373333pt;}
.y6{bottom:645.598667pt;}
.y38{bottom:658.333333pt;}
.y8e{bottom:658.493333pt;}
.ya7{bottom:667.133333pt;}
.y64{bottom:667.453333pt;}
.y3{bottom:668.977329pt;}
.y37{bottom:680.413333pt;}
.y8d{bottom:680.573333pt;}
.y63{bottom:689.533333pt;}
.y36{bottom:702.493333pt;}
.y8c{bottom:702.653333pt;}
.y62{bottom:711.613333pt;}
.y35{bottom:724.573333pt;}
.y8b{bottom:724.733333pt;}
.y61{bottom:733.693333pt;}
.y34{bottom:746.653333pt;}
.y8a{bottom:746.813333pt;}
.y60{bottom:755.813333pt;}
.y33{bottom:768.773333pt;}
.y89{bottom:768.933333pt;}
.y5f{bottom:777.893333pt;}
.y2{bottom:781.661334pt;}
.y32{bottom:790.853333pt;}
.y88{bottom:791.013333pt;}
.y5e{bottom:799.973333pt;}
.y31{bottom:812.933333pt;}
.y87{bottom:813.093333pt;}
.y5d{bottom:822.053333pt;}
.y30{bottom:835.013333pt;}
.y86{bottom:835.173333pt;}
.y5c{bottom:844.133333pt;}
.y2f{bottom:857.093333pt;}
.y85{bottom:857.253333pt;}
.y1{bottom:859.312000pt;}
.y5b{bottom:866.213333pt;}
.y2e{bottom:879.173333pt;}
.y84{bottom:879.333333pt;}
.y5a{bottom:888.293333pt;}
.y2d{bottom:900.933333pt;}
.y83{bottom:901.413333pt;}
.y59{bottom:910.373333pt;}
.y2c{bottom:922.853333pt;}
.y82{bottom:923.493333pt;}
.y58{bottom:932.453333pt;}
.y2b{bottom:944.933333pt;}
.y81{bottom:945.573333pt;}
.y57{bottom:954.533333pt;}
.y80{bottom:967.653333pt;}
.y2a{bottom:968.293333pt;}
.yca{bottom:976.293333pt;}
.y56{bottom:976.613333pt;}
.y7f{bottom:989.733333pt;}
.y29{bottom:994.053333pt;}
.ybf{bottom:998.400000pt;}
.y55{bottom:998.720000pt;}
.y7e{bottom:1011.840000pt;}
.y26{bottom:1015.360000pt;}
.y54{bottom:1017.280000pt;}
.y25{bottom:1032.480000pt;}
.y53{bottom:1038.720000pt;}
.y24{bottom:1047.840000pt;}
.y52{bottom:1060.800000pt;}
.y23{bottom:1063.200000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h2{height:49.024000pt;}
.hc{height:52.134375pt;}
.hd{height:58.563750pt;}
.h11{height:62.781250pt;}
.h10{height:62.812500pt;}
.hf{height:64.500000pt;}
.h12{height:65.781915pt;}
.h5{height:69.450667pt;}
.he{height:75.465000pt;}
.h4{height:105.826671pt;}
.hb{height:1122.000000pt;}
.ha{height:1122.240000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.919988pt;}
.w3{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:71.999988pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:96.031988pt;}
.x10{left:120.031988pt;}
.xc{left:124.031988pt;}
.x7{left:136.346655pt;}
.xb{left:144.026655pt;}
.x8{left:160.666655pt;}
.x4{left:180.874667pt;}
.xe{left:253.826655pt;}
.xd{left:284.066655pt;}
.xa{left:286.786655pt;}
.x6{left:385.853322pt;}
.x9{left:397.053322pt;}
.x3{left:404.408000pt;}
}




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