
    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_0038f5687316dba59712d592.woff')format("woff");}.ff1{font-family:ff1;line-height:1.131836;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_c773e0cd2e59d1ee937e4cbe.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_7f570bd64e913f1cbb30854c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.688477;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_1ce9b05c2153596cc8e6eb19.woff')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_e473cc5e97c3d1abb2f11f45.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_dc5abb9f4c3b7493590a0ccc.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_91a6c1847c8cec1dacf6a2c1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_2aa0a14d6ef5e8ead6f90499.woff')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.472200px;}
.ls4{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.238800px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls9{letter-spacing:6.785280px;}
.ls8{letter-spacing:8.640000px;}
.lsc{letter-spacing:8.945280px;}
.lsd{letter-spacing:12.545280px;}
.lsb{letter-spacing:26.945280px;}
.ls7{letter-spacing:39.905280px;}
.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;}
}
.ws3{word-spacing:-20.821200px;}
.wsb{word-spacing:-16.822200px;}
.ws9{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.wsa{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-9.774720px;}
._1c{margin-left:-6.065280px;}
._0{margin-left:-1.258800px;}
._2{width:1.042800px;}
._1{width:2.122560px;}
._3{width:3.397440px;}
._4{width:4.504320px;}
._f{width:5.611680px;}
._13{width:7.352880px;}
._a{width:8.614080px;}
._7{width:9.671040px;}
._1a{width:10.682880px;}
._8{width:11.856960px;}
._9{width:12.983040px;}
._d{width:14.298720px;}
._10{width:15.385440px;}
._11{width:17.620080px;}
._18{width:19.077120px;}
._15{width:21.130800px;}
._16{width:22.190160px;}
._12{width:23.250240px;}
._e{width:24.773760px;}
._1d{width:26.429760px;}
._5{width:27.887040px;}
._c{width:29.680320px;}
._1b{width:31.795200px;}
._1e{width:32.884560px;}
._19{width:34.047360px;}
._b{width:36.167040px;}
._6{width:40.207680px;}
._1f{width:41.466480px;}
._20{width:42.592320px;}
._21{width:139.257120px;}
._14{width:847.472400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:11.880000px;}
.y10{bottom:27.900000px;}
.y45{bottom:32.940000px;}
.y20{bottom:34.380000px;}
.y44{bottom:37.620000px;}
.y1e{bottom:37.800000px;}
.y46{bottom:56.520000px;}
.y21{bottom:57.420000px;}
.y43{bottom:63.540000px;}
.y1d{bottom:63.720000px;}
.y7{bottom:72.540000px;}
.y42{bottom:77.220000px;}
.y1c{bottom:78.300000px;}
.y6{bottom:104.760000px;}
.y5{bottom:137.160000px;}
.y4{bottom:160.200000px;}
.ya6{bottom:170.640000px;}
.yd8{bottom:174.420000px;}
.y92{bottom:178.200000px;}
.y68{bottom:183.420000px;}
.y7d{bottom:187.200000px;}
.yc6{bottom:188.640000px;}
.yd2{bottom:190.980000px;}
.ya5{bottom:192.450000px;}
.yd7{bottom:196.230000px;}
.y91{bottom:200.010000px;}
.y3{bottom:202.530000px;}
.y67{bottom:205.230000px;}
.y7c{bottom:209.010000px;}
.yc5{bottom:210.450000px;}
.yd1{bottom:212.790000px;}
.ydc{bottom:218.010000px;}
.y41{bottom:221.790000px;}
.ya4{bottom:223.230000px;}
.y2{bottom:223.410000px;}
.y66{bottom:227.010000px;}
.y7b{bottom:230.790000px;}
.yc4{bottom:232.230000px;}
.yd0{bottom:234.750000px;}
.ydb{bottom:239.790000px;}
.y40{bottom:243.750000px;}
.ya3{bottom:245.010000px;}
.yd6{bottom:248.790000px;}
.yc3{bottom:254.010000px;}
.y1a{bottom:257.250000px;}
.y65{bottom:257.790000px;}
.y7a{bottom:261.750000px;}
.y3f{bottom:265.530000px;}
.ya2{bottom:266.790000px;}
.yd5{bottom:270.750000px;}
.y90{bottom:274.530000px;}
.yc2{bottom:275.790000px;}
.y19{bottom:279.030000px;}
.y64{bottom:279.750000px;}
.yda{bottom:283.530000px;}
.y3e{bottom:287.310000px;}
.ya1{bottom:288.750000px;}
.y79{bottom:292.530000px;}
.yc1{bottom:297.750000px;}
.y18{bottom:300.810000px;}
.y63{bottom:301.530000px;}
.y8f{bottom:305.310000px;}
.y3d{bottom:309.090000px;}
.ya0{bottom:310.530000px;}
.y78{bottom:314.310000px;}
.yc0{bottom:319.530000px;}
.y17{bottom:322.770000px;}
.y62{bottom:323.310000px;}
.y8e{bottom:327.090000px;}
.y3c{bottom:331.050000px;}
.y9f{bottom:332.310000px;}
.y77{bottom:336.090000px;}
.ybf{bottom:341.310000px;}
.y16{bottom:344.550000px;}
.y61{bottom:345.090000px;}
.y8d{bottom:349.050000px;}
.y9e{bottom:354.090000px;}
.y76{bottom:358.050000px;}
.y3b{bottom:361.830000px;}
.ybe{bottom:363.090000px;}
.y15{bottom:366.330000px;}
.y60{bottom:367.050000px;}
.y9d{bottom:376.050000px;}
.y75{bottom:379.830000px;}
.ycf{bottom:383.610000px;}
.y14{bottom:388.110000px;}
.y5f{bottom:388.830000px;}
.y3a{bottom:392.610000px;}
.ybd{bottom:394.050000px;}
.y9c{bottom:397.875000px;}
.y8c{bottom:401.655000px;}
.yce{bottom:405.435000px;}
.y13{bottom:410.115000px;}
.y74{bottom:410.655000px;}
.ybc{bottom:415.875000px;}
.y5e{bottom:419.655000px;}
.y39{bottom:423.435000px;}
.ycd{bottom:427.215000px;}
.y12{bottom:431.895000px;}
.yd4{bottom:432.435000px;}
.ybb{bottom:437.655000px;}
.y5d{bottom:441.435000px;}
.y38{bottom:445.215000px;}
.y11{bottom:453.675000px;}
.yd9{bottom:454.215000px;}
.ycc{bottom:458.175000px;}
.yba{bottom:459.435000px;}
.y5c{bottom:463.215000px;}
.y37{bottom:467.175000px;}
.y73{bottom:472.215000px;}
.ycb{bottom:479.955000px;}
.y5b{bottom:485.175000px;}
.y36{bottom:488.955000px;}
.yb9{bottom:490.215000px;}
.y72{bottom:494.175000px;}
.yca{bottom:501.735000px;}
.y9b{bottom:503.175000px;}
.yf{bottom:505.155000px;}
.y5a{bottom:506.955000px;}
.y35{bottom:510.735000px;}
.yb8{bottom:512.175000px;}
.y71{bottom:515.955000px;}
.y9a{bottom:524.955000px;}
.y59{bottom:528.735000px;}
.y34{bottom:532.515000px;}
.yb7{bottom:533.955000px;}
.y70{bottom:537.735000px;}
.y8b{bottom:541.515000px;}
.y99{bottom:546.735000px;}
.y33{bottom:554.295000px;}
.yb6{bottom:555.735000px;}
.y58{bottom:559.515000px;}
.y98{bottom:568.515000px;}
.y8a{bottom:572.295000px;}
.y32{bottom:576.255000px;}
.yd3{bottom:581.295000px;}
.yb5{bottom:586.515000px;}
.y57{bottom:590.295000px;}
.y89{bottom:594.255000px;}
.y31{bottom:598.035000px;}
.ye{bottom:611.745000px;}
.y56{bottom:612.285000px;}
.y88{bottom:616.065000px;}
.yb4{bottom:617.325000px;}
.y30{bottom:619.845000px;}
.yc9{bottom:628.845000px;}
.y55{bottom:634.065000px;}
.yb3{bottom:639.285000px;}
.y87{bottom:646.845000px;}
.yd{bottom:650.085000px;}
.y2f{bottom:650.625000px;}
.y54{bottom:655.845000px;}
.yb2{bottom:661.065000px;}
.y86{bottom:668.625000px;}
.yc{bottom:672.045000px;}
.y2e{bottom:672.585000px;}
.y53{bottom:677.625000px;}
.yb1{bottom:682.845000px;}
.y97{bottom:686.625000px;}
.y85{bottom:690.585000px;}
.y2d{bottom:694.365000px;}
.y52{bottom:699.585000px;}
.yc8{bottom:703.365000px;}
.yb0{bottom:704.625000px;}
.y6f{bottom:708.585000px;}
.yb{bottom:709.485000px;}
.y84{bottom:712.365000px;}
.y2c{bottom:716.145000px;}
.y96{bottom:717.585000px;}
.yaf{bottom:726.585000px;}
.y51{bottom:730.365000px;}
.y2b{bottom:737.925000px;}
.y95{bottom:739.365000px;}
.y83{bottom:743.145000px;}
.yae{bottom:748.365000px;}
.y6e{bottom:752.145000px;}
.y2a{bottom:759.705000px;}
.y50{bottom:761.145000px;}
.y82{bottom:764.925000px;}
.ya{bottom:772.845000px;}
.y6d{bottom:773.925000px;}
.yad{bottom:779.145000px;}
.y29{bottom:781.665000px;}
.y94{bottom:782.925000px;}
.y81{bottom:786.705000px;}
.y4f{bottom:791.925000px;}
.y6c{bottom:795.705000px;}
.yac{bottom:800.925000px;}
.y93{bottom:804.705000px;}
.y80{bottom:808.710000px;}
.y9{bottom:809.250000px;}
.y28{bottom:812.490000px;}
.y4e{bottom:813.750000px;}
.y6b{bottom:817.710000px;}
.yab{bottom:822.750000px;}
.yc7{bottom:826.710000px;}
.y7f{bottom:830.490000px;}
.y4d{bottom:835.710000px;}
.yaa{bottom:844.710000px;}
.y6a{bottom:848.490000px;}
.y4c{bottom:857.490000px;}
.y7e{bottom:861.270000px;}
.ya9{bottom:866.490000px;}
.y27{bottom:870.270000px;}
.y4b{bottom:879.270000px;}
.ya8{bottom:888.270000px;}
.y26{bottom:892.050000px;}
.y4a{bottom:901.050000px;}
.y8{bottom:906.270000px;}
.ya7{bottom:910.050000px;}
.y69{bottom:914.010000px;}
.y49{bottom:923.010000px;}
.y25{bottom:932.010000px;}
.y48{bottom:944.790000px;}
.y24{bottom:953.790000px;}
.y47{bottom:966.570000px;}
.y23{bottom:975.570000px;}
.y22{bottom:997.350000px;}
.y1{bottom:1036.980000px;}
.y1b{bottom:1037.160000px;}
.h3{height:33.683203px;}
.h4{height:37.705078px;}
.h9{height:41.726953px;}
.h8{height:45.992812px;}
.hc{height:46.251562px;}
.hb{height:46.736719px;}
.he{height:48.224531px;}
.h7{height:50.800781px;}
.hf{height:52.918594px;}
.h5{height:57.051211px;}
.ha{height:64.800000px;}
.h2{height:65.884219px;}
.h10{height:77.580000px;}
.hd{height:77.760000px;}
.h6{height:91.441406px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w4{width:39.600000px;}
.w6{width:39.996000px;}
.w5{width:676.230000px;}
.w3{width:682.530000px;}
.w2{width:702.105000px;}
.w1{width:850.499987px;}
.w0{width:850.500000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.x3{left:37.620000px;}
.x5{left:45.360000px;}
.x8{left:53.999987px;}
.x10{left:80.999987px;}
.xb{left:83.160000px;}
.x1{left:91.835987px;}
.x2{left:93.096000px;}
.xa{left:103.715987px;}
.x9{left:108.035987px;}
.xf{left:118.835987px;}
.xe{left:145.835987px;}
.x4{left:251.669987px;}
.x7{left:727.890000px;}
.xc{left:759.390000px;}
.xd{left:796.679987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.419733pt;}
.ls4{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.212267pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls9{letter-spacing:6.031360pt;}
.ls8{letter-spacing:7.680000pt;}
.lsc{letter-spacing:7.951360pt;}
.lsd{letter-spacing:11.151360pt;}
.lsb{letter-spacing:23.951360pt;}
.ls7{letter-spacing:35.471360pt;}
.ws3{word-spacing:-18.507733pt;}
.wsb{word-spacing:-14.953067pt;}
.ws9{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.wsa{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-8.688640pt;}
._1c{margin-left:-5.391360pt;}
._0{margin-left:-1.118933pt;}
._2{width:0.926933pt;}
._1{width:1.886720pt;}
._3{width:3.019947pt;}
._4{width:4.003840pt;}
._f{width:4.988160pt;}
._13{width:6.535893pt;}
._a{width:7.656960pt;}
._7{width:8.596480pt;}
._1a{width:9.495893pt;}
._8{width:10.539520pt;}
._9{width:11.540480pt;}
._d{width:12.709973pt;}
._10{width:13.675947pt;}
._11{width:15.662293pt;}
._18{width:16.957440pt;}
._15{width:18.782933pt;}
._16{width:19.724587pt;}
._12{width:20.666880pt;}
._e{width:22.021120pt;}
._1d{width:23.493120pt;}
._5{width:24.788480pt;}
._c{width:26.382507pt;}
._1b{width:28.262400pt;}
._1e{width:29.230720pt;}
._19{width:30.264320pt;}
._b{width:32.148480pt;}
._6{width:35.740160pt;}
._1f{width:36.859093pt;}
._20{width:37.859840pt;}
._21{width:123.784107pt;}
._14{width:753.308800pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:10.560000pt;}
.y10{bottom:24.800000pt;}
.y45{bottom:29.280000pt;}
.y20{bottom:30.560000pt;}
.y44{bottom:33.440000pt;}
.y1e{bottom:33.600000pt;}
.y46{bottom:50.240000pt;}
.y21{bottom:51.040000pt;}
.y43{bottom:56.480000pt;}
.y1d{bottom:56.640000pt;}
.y7{bottom:64.480000pt;}
.y42{bottom:68.640000pt;}
.y1c{bottom:69.600000pt;}
.y6{bottom:93.120000pt;}
.y5{bottom:121.920000pt;}
.y4{bottom:142.400000pt;}
.ya6{bottom:151.680000pt;}
.yd8{bottom:155.040000pt;}
.y92{bottom:158.400000pt;}
.y68{bottom:163.040000pt;}
.y7d{bottom:166.400000pt;}
.yc6{bottom:167.680000pt;}
.yd2{bottom:169.760000pt;}
.ya5{bottom:171.066667pt;}
.yd7{bottom:174.426667pt;}
.y91{bottom:177.786667pt;}
.y3{bottom:180.026667pt;}
.y67{bottom:182.426667pt;}
.y7c{bottom:185.786667pt;}
.yc5{bottom:187.066667pt;}
.yd1{bottom:189.146667pt;}
.ydc{bottom:193.786667pt;}
.y41{bottom:197.146667pt;}
.ya4{bottom:198.426667pt;}
.y2{bottom:198.586667pt;}
.y66{bottom:201.786667pt;}
.y7b{bottom:205.146667pt;}
.yc4{bottom:206.426667pt;}
.yd0{bottom:208.666667pt;}
.ydb{bottom:213.146667pt;}
.y40{bottom:216.666667pt;}
.ya3{bottom:217.786667pt;}
.yd6{bottom:221.146667pt;}
.yc3{bottom:225.786667pt;}
.y1a{bottom:228.666667pt;}
.y65{bottom:229.146667pt;}
.y7a{bottom:232.666667pt;}
.y3f{bottom:236.026667pt;}
.ya2{bottom:237.146667pt;}
.yd5{bottom:240.666667pt;}
.y90{bottom:244.026667pt;}
.yc2{bottom:245.146667pt;}
.y19{bottom:248.026667pt;}
.y64{bottom:248.666667pt;}
.yda{bottom:252.026667pt;}
.y3e{bottom:255.386667pt;}
.ya1{bottom:256.666667pt;}
.y79{bottom:260.026667pt;}
.yc1{bottom:264.666667pt;}
.y18{bottom:267.386667pt;}
.y63{bottom:268.026667pt;}
.y8f{bottom:271.386667pt;}
.y3d{bottom:274.746667pt;}
.ya0{bottom:276.026667pt;}
.y78{bottom:279.386667pt;}
.yc0{bottom:284.026667pt;}
.y17{bottom:286.906667pt;}
.y62{bottom:287.386667pt;}
.y8e{bottom:290.746667pt;}
.y3c{bottom:294.266667pt;}
.y9f{bottom:295.386667pt;}
.y77{bottom:298.746667pt;}
.ybf{bottom:303.386667pt;}
.y16{bottom:306.266667pt;}
.y61{bottom:306.746667pt;}
.y8d{bottom:310.266667pt;}
.y9e{bottom:314.746667pt;}
.y76{bottom:318.266667pt;}
.y3b{bottom:321.626667pt;}
.ybe{bottom:322.746667pt;}
.y15{bottom:325.626667pt;}
.y60{bottom:326.266667pt;}
.y9d{bottom:334.266667pt;}
.y75{bottom:337.626667pt;}
.ycf{bottom:340.986667pt;}
.y14{bottom:344.986667pt;}
.y5f{bottom:345.626667pt;}
.y3a{bottom:348.986667pt;}
.ybd{bottom:350.266667pt;}
.y9c{bottom:353.666667pt;}
.y8c{bottom:357.026667pt;}
.yce{bottom:360.386667pt;}
.y13{bottom:364.546667pt;}
.y74{bottom:365.026667pt;}
.ybc{bottom:369.666667pt;}
.y5e{bottom:373.026667pt;}
.y39{bottom:376.386667pt;}
.ycd{bottom:379.746667pt;}
.y12{bottom:383.906667pt;}
.yd4{bottom:384.386667pt;}
.ybb{bottom:389.026667pt;}
.y5d{bottom:392.386667pt;}
.y38{bottom:395.746667pt;}
.y11{bottom:403.266667pt;}
.yd9{bottom:403.746667pt;}
.ycc{bottom:407.266667pt;}
.yba{bottom:408.386667pt;}
.y5c{bottom:411.746667pt;}
.y37{bottom:415.266667pt;}
.y73{bottom:419.746667pt;}
.ycb{bottom:426.626667pt;}
.y5b{bottom:431.266667pt;}
.y36{bottom:434.626667pt;}
.yb9{bottom:435.746667pt;}
.y72{bottom:439.266667pt;}
.yca{bottom:445.986667pt;}
.y9b{bottom:447.266667pt;}
.yf{bottom:449.026667pt;}
.y5a{bottom:450.626667pt;}
.y35{bottom:453.986667pt;}
.yb8{bottom:455.266667pt;}
.y71{bottom:458.626667pt;}
.y9a{bottom:466.626667pt;}
.y59{bottom:469.986667pt;}
.y34{bottom:473.346667pt;}
.yb7{bottom:474.626667pt;}
.y70{bottom:477.986667pt;}
.y8b{bottom:481.346667pt;}
.y99{bottom:485.986667pt;}
.y33{bottom:492.706667pt;}
.yb6{bottom:493.986667pt;}
.y58{bottom:497.346667pt;}
.y98{bottom:505.346667pt;}
.y8a{bottom:508.706667pt;}
.y32{bottom:512.226667pt;}
.yd3{bottom:516.706667pt;}
.yb5{bottom:521.346667pt;}
.y57{bottom:524.706667pt;}
.y89{bottom:528.226667pt;}
.y31{bottom:531.586667pt;}
.ye{bottom:543.773333pt;}
.y56{bottom:544.253333pt;}
.y88{bottom:547.613333pt;}
.yb4{bottom:548.733333pt;}
.y30{bottom:550.973333pt;}
.yc9{bottom:558.973333pt;}
.y55{bottom:563.613333pt;}
.yb3{bottom:568.253333pt;}
.y87{bottom:574.973333pt;}
.yd{bottom:577.853333pt;}
.y2f{bottom:578.333333pt;}
.y54{bottom:582.973333pt;}
.yb2{bottom:587.613333pt;}
.y86{bottom:594.333333pt;}
.yc{bottom:597.373333pt;}
.y2e{bottom:597.853333pt;}
.y53{bottom:602.333333pt;}
.yb1{bottom:606.973333pt;}
.y97{bottom:610.333333pt;}
.y85{bottom:613.853333pt;}
.y2d{bottom:617.213333pt;}
.y52{bottom:621.853333pt;}
.yc8{bottom:625.213333pt;}
.yb0{bottom:626.333333pt;}
.y6f{bottom:629.853333pt;}
.yb{bottom:630.653333pt;}
.y84{bottom:633.213333pt;}
.y2c{bottom:636.573333pt;}
.y96{bottom:637.853333pt;}
.yaf{bottom:645.853333pt;}
.y51{bottom:649.213333pt;}
.y2b{bottom:655.933333pt;}
.y95{bottom:657.213333pt;}
.y83{bottom:660.573333pt;}
.yae{bottom:665.213333pt;}
.y6e{bottom:668.573333pt;}
.y2a{bottom:675.293333pt;}
.y50{bottom:676.573333pt;}
.y82{bottom:679.933333pt;}
.ya{bottom:686.973333pt;}
.y6d{bottom:687.933333pt;}
.yad{bottom:692.573333pt;}
.y29{bottom:694.813333pt;}
.y94{bottom:695.933333pt;}
.y81{bottom:699.293333pt;}
.y4f{bottom:703.933333pt;}
.y6c{bottom:707.293333pt;}
.yac{bottom:711.933333pt;}
.y93{bottom:715.293333pt;}
.y80{bottom:718.853333pt;}
.y9{bottom:719.333333pt;}
.y28{bottom:722.213333pt;}
.y4e{bottom:723.333333pt;}
.y6b{bottom:726.853333pt;}
.yab{bottom:731.333333pt;}
.yc7{bottom:734.853333pt;}
.y7f{bottom:738.213333pt;}
.y4d{bottom:742.853333pt;}
.yaa{bottom:750.853333pt;}
.y6a{bottom:754.213333pt;}
.y4c{bottom:762.213333pt;}
.y7e{bottom:765.573333pt;}
.ya9{bottom:770.213333pt;}
.y27{bottom:773.573333pt;}
.y4b{bottom:781.573333pt;}
.ya8{bottom:789.573333pt;}
.y26{bottom:792.933333pt;}
.y4a{bottom:800.933333pt;}
.y8{bottom:805.573333pt;}
.ya7{bottom:808.933333pt;}
.y69{bottom:812.453333pt;}
.y49{bottom:820.453333pt;}
.y25{bottom:828.453333pt;}
.y48{bottom:839.813333pt;}
.y24{bottom:847.813333pt;}
.y47{bottom:859.173333pt;}
.y23{bottom:867.173333pt;}
.y22{bottom:886.533333pt;}
.y1{bottom:921.760000pt;}
.y1b{bottom:921.920000pt;}
.h3{height:29.940625pt;}
.h4{height:33.515625pt;}
.h9{height:37.090625pt;}
.h8{height:40.882500pt;}
.hc{height:41.112500pt;}
.hb{height:41.543750pt;}
.he{height:42.866250pt;}
.h7{height:45.156250pt;}
.hf{height:47.038750pt;}
.h5{height:50.712187pt;}
.ha{height:57.600000pt;}
.h2{height:58.563750pt;}
.h10{height:68.960000pt;}
.hd{height:69.120000pt;}
.h6{height:81.281250pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w4{width:35.200000pt;}
.w6{width:35.552000pt;}
.w5{width:601.093333pt;}
.w3{width:606.693333pt;}
.w2{width:624.093333pt;}
.w1{width:755.999989pt;}
.w0{width:756.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.x3{left:33.440000pt;}
.x5{left:40.320000pt;}
.x8{left:47.999989pt;}
.x10{left:71.999989pt;}
.xb{left:73.920000pt;}
.x1{left:81.631989pt;}
.x2{left:82.752000pt;}
.xa{left:92.191989pt;}
.x9{left:96.031989pt;}
.xf{left:105.631989pt;}
.xe{left:129.631989pt;}
.x4{left:223.706655pt;}
.x7{left:647.013333pt;}
.xc{left:675.013333pt;}
.xd{left:708.159989pt;}
}




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