
    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_ee73951bcdb30ff189d35f52.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_6f882b2828b6dba08a4ee106.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_184a6eb08f2c7a7c79cbd644.woff')format("woff");}.ff3{font-family:ff3;line-height:1.105957;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_5337e11764284d94f6e34ae4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2a4255097c65cfd9af9d9f02.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.836000px;}
.ls6{letter-spacing:-0.840000px;}
.lse{letter-spacing:-0.810000px;}
.ls13{letter-spacing:-0.675000px;}
.ls3{letter-spacing:-0.252000px;}
.ls11{letter-spacing:-0.243000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.450000px;}
.ls10{letter-spacing:1.260000px;}
.ls14{letter-spacing:1.458000px;}
.lsd{letter-spacing:1.512000px;}
.lsa{letter-spacing:2.400000px;}
.ls1{letter-spacing:4.200000px;}
.ls7{letter-spacing:5.760000px;}
.ls8{letter-spacing:5.880000px;}
.lsc{letter-spacing:6.000000px;}
.ls4{letter-spacing:7.260000px;}
.ls9{letter-spacing:466.079400px;}
.ls16{letter-spacing:466.484400px;}
.ls12{letter-spacing:468.172200px;}
.ls0{letter-spacing:952.522800px;}
.ls15{letter-spacing:1012.959000px;}
.ls17{letter-spacing:1015.584000px;}
.lsf{letter-spacing:1021.614000px;}
.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:-28.512000px;}
.ws1{word-spacing:-22.764000px;}
.ws3{word-spacing:-22.740000px;}
.ws2{word-spacing:-22.620000px;}
.ws9{word-spacing:-21.525000px;}
.ws13{word-spacing:-20.400000px;}
.wsb{word-spacing:-19.389000px;}
.wsf{word-spacing:-17.043000px;}
.ws4{word-spacing:-16.860000px;}
.ws10{word-spacing:-14.820000px;}
.wsa{word-spacing:-13.314000px;}
.ws7{word-spacing:-7.260000px;}
.wsd{word-spacing:-6.000000px;}
.ws8{word-spacing:-4.200000px;}
.wsc{word-spacing:-2.400000px;}
.ws14{word-spacing:-1.458000px;}
.ws11{word-spacing:-1.260000px;}
.ws5{word-spacing:0.000000px;}
.ws12{word-spacing:0.243000px;}
.ws6{word-spacing:0.252000px;}
.wse{word-spacing:0.810000px;}
._b{margin-left:-6.441900px;}
._7{margin-left:-5.286600px;}
._c{margin-left:-3.894000px;}
._3{margin-left:-2.872500px;}
._5{margin-left:-1.254000px;}
._2{width:1.071000px;}
._1{width:2.400000px;}
._4{width:3.900000px;}
._a{width:5.124000px;}
._6{width:6.862500px;}
._8{width:8.034000px;}
._f{width:9.440400px;}
._e{width:10.613100px;}
._11{width:11.622300px;}
._10{width:12.646200px;}
._12{width:16.829100px;}
._9{width:85.554000px;}
._d{width:260.610000px;}
._0{width:578.400000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y92{bottom:106.183200px;}
.y6e{bottom:106.235400px;}
.y20{bottom:106.300500px;}
.yb6{bottom:106.360200px;}
.ydc{bottom:106.417650px;}
.y48{bottom:106.603650px;}
.y6d{bottom:126.065400px;}
.yb5{bottom:126.430200px;}
.y91{bottom:126.762450px;}
.y47{bottom:126.941400px;}
.ydb{bottom:126.945150px;}
.y1f{bottom:127.435500px;}
.y6c{bottom:145.895400px;}
.yb4{bottom:146.500200px;}
.y46{bottom:147.279150px;}
.y90{bottom:147.341700px;}
.yda{bottom:147.472650px;}
.y1e{bottom:148.587450px;}
.y6b{bottom:165.725400px;}
.yb3{bottom:166.570200px;}
.y45{bottom:167.616900px;}
.y8f{bottom:167.920950px;}
.yd9{bottom:168.000150px;}
.y1d{bottom:168.222450px;}
.y6a{bottom:185.555400px;}
.yb2{bottom:186.640200px;}
.y1c{bottom:187.857450px;}
.y44{bottom:187.954650px;}
.y8e{bottom:188.500200px;}
.yd8{bottom:188.527650px;}
.y69{bottom:205.385400px;}
.yb1{bottom:206.710200px;}
.y1b{bottom:207.492450px;}
.y43{bottom:208.292400px;}
.yd7{bottom:209.055150px;}
.y8d{bottom:209.079450px;}
.y68{bottom:225.215400px;}
.yb0{bottom:226.780200px;}
.y1a{bottom:227.127450px;}
.y42{bottom:228.630150px;}
.yd6{bottom:229.582650px;}
.y8c{bottom:229.658700px;}
.y67{bottom:245.045400px;}
.y19{bottom:246.762450px;}
.yaf{bottom:246.850200px;}
.y41{bottom:248.967900px;}
.yd5{bottom:250.110150px;}
.y8b{bottom:250.237950px;}
.y66{bottom:264.875400px;}
.y18{bottom:266.397450px;}
.yae{bottom:266.920200px;}
.y40{bottom:269.305650px;}
.yd4{bottom:270.637650px;}
.y8a{bottom:270.817200px;}
.yf6{bottom:278.913900px;}
.y65{bottom:284.705400px;}
.y17{bottom:286.032450px;}
.yad{bottom:286.990200px;}
.y3f{bottom:289.643400px;}
.yd3{bottom:291.165150px;}
.y89{bottom:291.396450px;}
.yf5{bottom:299.163900px;}
.y64{bottom:304.388700px;}
.y16{bottom:305.667450px;}
.yac{bottom:307.060200px;}
.y3e{bottom:309.981150px;}
.yd2{bottom:311.692650px;}
.y88{bottom:311.975700px;}
.yf4{bottom:319.413900px;}
.y63{bottom:324.967950px;}
.yab{bottom:327.130200px;}
.y3d{bottom:330.318900px;}
.yd1{bottom:332.220150px;}
.y87{bottom:332.554950px;}
.y15{bottom:333.807450px;}
.yf3{bottom:339.663900px;}
.y62{bottom:345.547200px;}
.yaa{bottom:347.200200px;}
.y3c{bottom:350.656650px;}
.yd0{bottom:352.747650px;}
.y86{bottom:353.134200px;}
.y61{bottom:366.126450px;}
.ya9{bottom:367.270200px;}
.y3b{bottom:370.994400px;}
.yf2{bottom:372.663900px;}
.ycf{bottom:373.275150px;}
.y85{bottom:373.713450px;}
.y14{bottom:383.202450px;}
.y60{bottom:386.705700px;}
.ya8{bottom:387.340200px;}
.y3a{bottom:391.332150px;}
.yce{bottom:393.802650px;}
.y84{bottom:394.292700px;}
.y13{bottom:404.354850px;}
.y5f{bottom:407.284950px;}
.ya7{bottom:407.410200px;}
.y39{bottom:411.669900px;}
.yf1{bottom:414.151200px;}
.y83{bottom:414.871950px;}
.y12{bottom:423.989850px;}
.ya6{bottom:427.480200px;}
.y5e{bottom:427.864200px;}
.y38{bottom:432.007650px;}
.yf0{bottom:434.402700px;}
.ycd{bottom:434.879250px;}
.y82{bottom:435.451200px;}
.y11{bottom:443.624850px;}
.ya5{bottom:447.550200px;}
.y5d{bottom:448.443450px;}
.y37{bottom:452.345400px;}
.yef{bottom:454.654200px;}
.ycc{bottom:454.664250px;}
.y81{bottom:456.030450px;}
.y10{bottom:463.259850px;}
.ya4{bottom:467.620200px;}
.y5c{bottom:469.022700px;}
.y36{bottom:472.683150px;}
.ycb{bottom:474.449250px;}
.yee{bottom:474.905700px;}
.y80{bottom:476.609700px;}
.yf{bottom:482.894850px;}
.ya3{bottom:487.690200px;}
.y5b{bottom:489.601950px;}
.y35{bottom:493.020900px;}
.yca{bottom:494.234250px;}
.yed{bottom:495.157200px;}
.ye{bottom:502.529850px;}
.ya2{bottom:507.760200px;}
.y5a{bottom:510.181200px;}
.y34{bottom:513.358650px;}
.yc9{bottom:514.019250px;}
.yec{bottom:515.408700px;}
.y7f{bottom:518.442300px;}
.yd{bottom:522.164850px;}
.ya1{bottom:527.830200px;}
.y59{bottom:530.760450px;}
.y33{bottom:533.696400px;}
.yc8{bottom:533.804250px;}
.yeb{bottom:535.660200px;}
.yc{bottom:541.799850px;}
.ya0{bottom:547.926750px;}
.y58{bottom:551.339700px;}
.yc7{bottom:553.733850px;}
.y32{bottom:554.034150px;}
.yea{bottom:555.911700px;}
.y9f{bottom:568.747500px;}
.y57{bottom:571.918950px;}
.yb{bottom:574.184850px;}
.yc6{bottom:574.261350px;}
.y31{bottom:574.371900px;}
.ye9{bottom:576.163200px;}
.y7e{bottom:581.004150px;}
.y9e{bottom:589.568250px;}
.y56{bottom:592.498200px;}
.y30{bottom:594.709650px;}
.yc5{bottom:594.788850px;}
.ye8{bottom:596.414700px;}
.y7d{bottom:600.834150px;}
.y9d{bottom:610.389000px;}
.y55{bottom:613.077450px;}
.y2f{bottom:615.047400px;}
.yc4{bottom:615.316350px;}
.ye7{bottom:616.666200px;}
.y7c{bottom:620.664150px;}
.ya{bottom:627.845550px;}
.y9c{bottom:631.209750px;}
.y54{bottom:633.656700px;}
.y2e{bottom:635.385150px;}
.yc3{bottom:635.843850px;}
.ye6{bottom:636.917700px;}
.y7b{bottom:640.494150px;}
.y9b{bottom:652.030500px;}
.y53{bottom:654.235950px;}
.y9{bottom:654.977550px;}
.y2d{bottom:655.722900px;}
.yc2{bottom:656.371350px;}
.ye5{bottom:657.169200px;}
.y7a{bottom:660.324150px;}
.y9a{bottom:672.851250px;}
.y52{bottom:674.815200px;}
.y2c{bottom:676.060650px;}
.yc1{bottom:676.898850px;}
.ye4{bottom:677.420700px;}
.y79{bottom:680.101800px;}
.y8{bottom:682.109550px;}
.y99{bottom:693.672000px;}
.y51{bottom:695.394450px;}
.y2b{bottom:696.398400px;}
.yc0{bottom:697.426350px;}
.ye3{bottom:697.672200px;}
.y78{bottom:700.681050px;}
.y98{bottom:714.492750px;}
.y50{bottom:715.973700px;}
.y2a{bottom:716.736150px;}
.ye2{bottom:717.923700px;}
.ybf{bottom:717.953850px;}
.y77{bottom:721.260300px;}
.y7{bottom:726.230550px;}
.y97{bottom:735.313500px;}
.y4f{bottom:736.552950px;}
.y29{bottom:737.073900px;}
.ybe{bottom:738.481350px;}
.y76{bottom:741.839550px;}
.y96{bottom:756.134250px;}
.y4e{bottom:757.132200px;}
.y28{bottom:757.411650px;}
.y6{bottom:757.874550px;}
.ybd{bottom:759.008850px;}
.ye1{bottom:759.433650px;}
.y75{bottom:762.418800px;}
.y95{bottom:776.955000px;}
.y27{bottom:777.749400px;}
.ybc{bottom:779.536350px;}
.y74{bottom:782.998050px;}
.y5{bottom:789.518550px;}
.y26{bottom:798.087150px;}
.y4d{bottom:798.964950px;}
.ybb{bottom:800.063850px;}
.y73{bottom:803.577300px;}
.y25{bottom:818.424900px;}
.y94{bottom:819.037800px;}
.yba{bottom:820.591350px;}
.y4{bottom:821.162550px;}
.ye0{bottom:821.695350px;}
.y72{bottom:824.156550px;}
.y24{bottom:838.762650px;}
.yb9{bottom:841.118850px;}
.ydf{bottom:841.946850px;}
.y23{bottom:859.100400px;}
.y4c{bottom:861.542850px;}
.yb8{bottom:861.646350px;}
.yde{bottom:862.198350px;}
.y71{bottom:864.537750px;}
.y93{bottom:881.880600px;}
.y4b{bottom:882.122100px;}
.yb7{bottom:882.173850px;}
.ydd{bottom:882.449850px;}
.y3{bottom:882.562650px;}
.y70{bottom:884.367750px;}
.y22{bottom:900.706200px;}
.y4a{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y6f{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.y49{bottom:966.189000px;}
.h7{height:40.757812px;}
.h4{height:50.947266px;}
.hb{height:51.884766px;}
.h3{height:53.494629px;}
.h9{height:58.589355px;}
.ha{height:59.667480px;}
.h2{height:63.684082px;}
.h8{height:68.778809px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:80.928600px;}
.x6{left:83.686650px;}
.x1{left:85.039350px;}
.x8{left:103.199550px;}
.x5{left:104.924250px;}
.x4{left:106.035600px;}
.x9{left:144.865050px;}
.xa{left:147.175050px;}
.x7{left:148.484100px;}
.xb{left:194.710050px;}
.x3{left:232.218000px;}
.x2{left:233.415450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.632000pt;}
.ls6{letter-spacing:-0.746667pt;}
.lse{letter-spacing:-0.720000pt;}
.ls13{letter-spacing:-0.600000pt;}
.ls3{letter-spacing:-0.224000pt;}
.ls11{letter-spacing:-0.216000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.400000pt;}
.ls10{letter-spacing:1.120000pt;}
.ls14{letter-spacing:1.296000pt;}
.lsd{letter-spacing:1.344000pt;}
.lsa{letter-spacing:2.133333pt;}
.ls1{letter-spacing:3.733333pt;}
.ls7{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.226667pt;}
.lsc{letter-spacing:5.333333pt;}
.ls4{letter-spacing:6.453333pt;}
.ls9{letter-spacing:414.292800pt;}
.ls16{letter-spacing:414.652800pt;}
.ls12{letter-spacing:416.153067pt;}
.ls0{letter-spacing:846.686933pt;}
.ls15{letter-spacing:900.408000pt;}
.ls17{letter-spacing:902.741333pt;}
.lsf{letter-spacing:908.101333pt;}
.ws0{word-spacing:-25.344000pt;}
.ws1{word-spacing:-20.234667pt;}
.ws3{word-spacing:-20.213333pt;}
.ws2{word-spacing:-20.106667pt;}
.ws9{word-spacing:-19.133333pt;}
.ws13{word-spacing:-18.133333pt;}
.wsb{word-spacing:-17.234667pt;}
.wsf{word-spacing:-15.149333pt;}
.ws4{word-spacing:-14.986667pt;}
.ws10{word-spacing:-13.173333pt;}
.wsa{word-spacing:-11.834667pt;}
.ws7{word-spacing:-6.453333pt;}
.wsd{word-spacing:-5.333333pt;}
.ws8{word-spacing:-3.733333pt;}
.wsc{word-spacing:-2.133333pt;}
.ws14{word-spacing:-1.296000pt;}
.ws11{word-spacing:-1.120000pt;}
.ws5{word-spacing:0.000000pt;}
.ws12{word-spacing:0.216000pt;}
.ws6{word-spacing:0.224000pt;}
.wse{word-spacing:0.720000pt;}
._b{margin-left:-5.726133pt;}
._7{margin-left:-4.699200pt;}
._c{margin-left:-3.461333pt;}
._3{margin-left:-2.553333pt;}
._5{margin-left:-1.114667pt;}
._2{width:0.952000pt;}
._1{width:2.133333pt;}
._4{width:3.466667pt;}
._a{width:4.554667pt;}
._6{width:6.100000pt;}
._8{width:7.141333pt;}
._f{width:8.391467pt;}
._e{width:9.433867pt;}
._11{width:10.330933pt;}
._10{width:11.241067pt;}
._12{width:14.959200pt;}
._9{width:76.048000pt;}
._d{width:231.653333pt;}
._0{width:514.133333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y92{bottom:94.385067pt;}
.y6e{bottom:94.431467pt;}
.y20{bottom:94.489333pt;}
.yb6{bottom:94.542400pt;}
.ydc{bottom:94.593467pt;}
.y48{bottom:94.758800pt;}
.y6d{bottom:112.058133pt;}
.yb5{bottom:112.382400pt;}
.y91{bottom:112.677733pt;}
.y47{bottom:112.836800pt;}
.ydb{bottom:112.840133pt;}
.y1f{bottom:113.276000pt;}
.y6c{bottom:129.684800pt;}
.yb4{bottom:130.222400pt;}
.y46{bottom:130.914800pt;}
.y90{bottom:130.970400pt;}
.yda{bottom:131.086800pt;}
.y1e{bottom:132.077733pt;}
.y6b{bottom:147.311467pt;}
.yb3{bottom:148.062400pt;}
.y45{bottom:148.992800pt;}
.y8f{bottom:149.263067pt;}
.yd9{bottom:149.333467pt;}
.y1d{bottom:149.531067pt;}
.y6a{bottom:164.938133pt;}
.yb2{bottom:165.902400pt;}
.y1c{bottom:166.984400pt;}
.y44{bottom:167.070800pt;}
.y8e{bottom:167.555733pt;}
.yd8{bottom:167.580133pt;}
.y69{bottom:182.564800pt;}
.yb1{bottom:183.742400pt;}
.y1b{bottom:184.437733pt;}
.y43{bottom:185.148800pt;}
.yd7{bottom:185.826800pt;}
.y8d{bottom:185.848400pt;}
.y68{bottom:200.191467pt;}
.yb0{bottom:201.582400pt;}
.y1a{bottom:201.891067pt;}
.y42{bottom:203.226800pt;}
.yd6{bottom:204.073467pt;}
.y8c{bottom:204.141067pt;}
.y67{bottom:217.818133pt;}
.y19{bottom:219.344400pt;}
.yaf{bottom:219.422400pt;}
.y41{bottom:221.304800pt;}
.yd5{bottom:222.320133pt;}
.y8b{bottom:222.433733pt;}
.y66{bottom:235.444800pt;}
.y18{bottom:236.797733pt;}
.yae{bottom:237.262400pt;}
.y40{bottom:239.382800pt;}
.yd4{bottom:240.566800pt;}
.y8a{bottom:240.726400pt;}
.yf6{bottom:247.923467pt;}
.y65{bottom:253.071467pt;}
.y17{bottom:254.251067pt;}
.yad{bottom:255.102400pt;}
.y3f{bottom:257.460800pt;}
.yd3{bottom:258.813467pt;}
.y89{bottom:259.019067pt;}
.yf5{bottom:265.923467pt;}
.y64{bottom:270.567733pt;}
.y16{bottom:271.704400pt;}
.yac{bottom:272.942400pt;}
.y3e{bottom:275.538800pt;}
.yd2{bottom:277.060133pt;}
.y88{bottom:277.311733pt;}
.yf4{bottom:283.923467pt;}
.y63{bottom:288.860400pt;}
.yab{bottom:290.782400pt;}
.y3d{bottom:293.616800pt;}
.yd1{bottom:295.306800pt;}
.y87{bottom:295.604400pt;}
.y15{bottom:296.717733pt;}
.yf3{bottom:301.923467pt;}
.y62{bottom:307.153067pt;}
.yaa{bottom:308.622400pt;}
.y3c{bottom:311.694800pt;}
.yd0{bottom:313.553467pt;}
.y86{bottom:313.897067pt;}
.y61{bottom:325.445733pt;}
.ya9{bottom:326.462400pt;}
.y3b{bottom:329.772800pt;}
.yf2{bottom:331.256800pt;}
.ycf{bottom:331.800133pt;}
.y85{bottom:332.189733pt;}
.y14{bottom:340.624400pt;}
.y60{bottom:343.738400pt;}
.ya8{bottom:344.302400pt;}
.y3a{bottom:347.850800pt;}
.yce{bottom:350.046800pt;}
.y84{bottom:350.482400pt;}
.y13{bottom:359.426533pt;}
.y5f{bottom:362.031067pt;}
.ya7{bottom:362.142400pt;}
.y39{bottom:365.928800pt;}
.yf1{bottom:368.134400pt;}
.y83{bottom:368.775067pt;}
.y12{bottom:376.879867pt;}
.ya6{bottom:379.982400pt;}
.y5e{bottom:380.323733pt;}
.y38{bottom:384.006800pt;}
.yf0{bottom:386.135733pt;}
.ycd{bottom:386.559333pt;}
.y82{bottom:387.067733pt;}
.y11{bottom:394.333200pt;}
.ya5{bottom:397.822400pt;}
.y5d{bottom:398.616400pt;}
.y37{bottom:402.084800pt;}
.yef{bottom:404.137067pt;}
.ycc{bottom:404.146000pt;}
.y81{bottom:405.360400pt;}
.y10{bottom:411.786533pt;}
.ya4{bottom:415.662400pt;}
.y5c{bottom:416.909067pt;}
.y36{bottom:420.162800pt;}
.ycb{bottom:421.732667pt;}
.yee{bottom:422.138400pt;}
.y80{bottom:423.653067pt;}
.yf{bottom:429.239867pt;}
.ya3{bottom:433.502400pt;}
.y5b{bottom:435.201733pt;}
.y35{bottom:438.240800pt;}
.yca{bottom:439.319333pt;}
.yed{bottom:440.139733pt;}
.ye{bottom:446.693200pt;}
.ya2{bottom:451.342400pt;}
.y5a{bottom:453.494400pt;}
.y34{bottom:456.318800pt;}
.yc9{bottom:456.906000pt;}
.yec{bottom:458.141067pt;}
.y7f{bottom:460.837600pt;}
.yd{bottom:464.146533pt;}
.ya1{bottom:469.182400pt;}
.y59{bottom:471.787067pt;}
.y33{bottom:474.396800pt;}
.yc8{bottom:474.492667pt;}
.yeb{bottom:476.142400pt;}
.yc{bottom:481.599867pt;}
.ya0{bottom:487.046000pt;}
.y58{bottom:490.079733pt;}
.yc7{bottom:492.207867pt;}
.y32{bottom:492.474800pt;}
.yea{bottom:494.143733pt;}
.y9f{bottom:505.553333pt;}
.y57{bottom:508.372400pt;}
.yb{bottom:510.386533pt;}
.yc6{bottom:510.454533pt;}
.y31{bottom:510.552800pt;}
.ye9{bottom:512.145067pt;}
.y7e{bottom:516.448133pt;}
.y9e{bottom:524.060667pt;}
.y56{bottom:526.665067pt;}
.y30{bottom:528.630800pt;}
.yc5{bottom:528.701200pt;}
.ye8{bottom:530.146400pt;}
.y7d{bottom:534.074800pt;}
.y9d{bottom:542.568000pt;}
.y55{bottom:544.957733pt;}
.y2f{bottom:546.708800pt;}
.yc4{bottom:546.947867pt;}
.ye7{bottom:548.147733pt;}
.y7c{bottom:551.701467pt;}
.ya{bottom:558.084933pt;}
.y9c{bottom:561.075333pt;}
.y54{bottom:563.250400pt;}
.y2e{bottom:564.786800pt;}
.yc3{bottom:565.194533pt;}
.ye6{bottom:566.149067pt;}
.y7b{bottom:569.328133pt;}
.y9b{bottom:579.582667pt;}
.y53{bottom:581.543067pt;}
.y9{bottom:582.202267pt;}
.y2d{bottom:582.864800pt;}
.yc2{bottom:583.441200pt;}
.ye5{bottom:584.150400pt;}
.y7a{bottom:586.954800pt;}
.y9a{bottom:598.090000pt;}
.y52{bottom:599.835733pt;}
.y2c{bottom:600.942800pt;}
.yc1{bottom:601.687867pt;}
.ye4{bottom:602.151733pt;}
.y79{bottom:604.534933pt;}
.y8{bottom:606.319600pt;}
.y99{bottom:616.597333pt;}
.y51{bottom:618.128400pt;}
.y2b{bottom:619.020800pt;}
.yc0{bottom:619.934533pt;}
.ye3{bottom:620.153067pt;}
.y78{bottom:622.827600pt;}
.y98{bottom:635.104667pt;}
.y50{bottom:636.421067pt;}
.y2a{bottom:637.098800pt;}
.ye2{bottom:638.154400pt;}
.ybf{bottom:638.181200pt;}
.y77{bottom:641.120267pt;}
.y7{bottom:645.538267pt;}
.y97{bottom:653.612000pt;}
.y4f{bottom:654.713733pt;}
.y29{bottom:655.176800pt;}
.ybe{bottom:656.427867pt;}
.y76{bottom:659.412933pt;}
.y96{bottom:672.119333pt;}
.y4e{bottom:673.006400pt;}
.y28{bottom:673.254800pt;}
.y6{bottom:673.666267pt;}
.ybd{bottom:674.674533pt;}
.ye1{bottom:675.052133pt;}
.y75{bottom:677.705600pt;}
.y95{bottom:690.626667pt;}
.y27{bottom:691.332800pt;}
.ybc{bottom:692.921200pt;}
.y74{bottom:695.998267pt;}
.y5{bottom:701.794267pt;}
.y26{bottom:709.410800pt;}
.y4d{bottom:710.191067pt;}
.ybb{bottom:711.167867pt;}
.y73{bottom:714.290933pt;}
.y25{bottom:727.488800pt;}
.y94{bottom:728.033600pt;}
.yba{bottom:729.414533pt;}
.y4{bottom:729.922267pt;}
.ye0{bottom:730.395867pt;}
.y72{bottom:732.583600pt;}
.y24{bottom:745.566800pt;}
.yb9{bottom:747.661200pt;}
.ydf{bottom:748.397200pt;}
.y23{bottom:763.644800pt;}
.y4c{bottom:765.815867pt;}
.yb8{bottom:765.907867pt;}
.yde{bottom:766.398533pt;}
.y71{bottom:768.478000pt;}
.y93{bottom:783.893867pt;}
.y4b{bottom:784.108533pt;}
.yb7{bottom:784.154533pt;}
.ydd{bottom:784.399867pt;}
.y3{bottom:784.500133pt;}
.y70{bottom:786.104667pt;}
.y22{bottom:800.627733pt;}
.y4a{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y6f{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.y49{bottom:858.834667pt;}
.h7{height:36.229167pt;}
.h4{height:45.286458pt;}
.hb{height:46.119792pt;}
.h3{height:47.550781pt;}
.h9{height:52.079427pt;}
.ha{height:53.037760pt;}
.h2{height:56.608073pt;}
.h8{height:61.136719pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:71.936533pt;}
.x6{left:74.388133pt;}
.x1{left:75.590533pt;}
.x8{left:91.732933pt;}
.x5{left:93.266000pt;}
.x4{left:94.253867pt;}
.x9{left:128.768933pt;}
.xa{left:130.822267pt;}
.x7{left:131.985867pt;}
.xb{left:173.075600pt;}
.x3{left:206.416000pt;}
.x2{left:207.480400pt;}
}




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