
    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_da1cbcc03cc9d935fdf2045d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.193848;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_10a4caafde33d9f611b5f500.woff')format("woff");}.ff2{font-family:ff2;line-height:1.057617;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_66ffb1bd79501d6ed78d0742.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_0c2eea3a5cbdec9badb6371a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.929688;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_0d27a0b74795dfa2a23a0a16.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003418;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_e5e754d4ab36bd95aedfef99.woff')format("woff");}.ff7{font-family:ff7;line-height:0.927734;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_392ec550f3c916d652cf286c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.927734;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_ab059527a9cb33cd3797e6d3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.094727;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_011aa6afe0bcadc6791cc44c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.206055;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_f2b1cef4fcc72ec45d2831cd.woff')format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_877fa72fc3056abd08522d1b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.193848;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_90d0657b6e8768fad9743454.woff')format("woff");}.ffd{font-family:ffd;line-height:0.690918;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffe{font-family:ffe;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);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-0.306000px;}
.ls6{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.127200px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.lse{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.206640px;}
.lsb{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.828000px;}
.ls0{letter-spacing:10.800000px;}
.ls1{letter-spacing:13.680000px;}
.lsc{letter-spacing:72.108000px;}
.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:-21.060000px;}
.ws6{word-spacing:-15.768000px;}
.ws8{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.626000px;}
.ws4{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.320000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._c{margin-left:-2.868480px;}
._1{margin-left:-1.080000px;}
._0{width:1.296000px;}
._7{width:2.352720px;}
._8{width:4.309200px;}
._11{width:5.471520px;}
._5{width:6.546000px;}
._6{width:7.644000px;}
._b{width:9.194160px;}
._e{width:10.270080px;}
._14{width:11.294640px;}
._9{width:12.456720px;}
._2{width:14.064000px;}
._3{width:16.728000px;}
._a{width:18.585360px;}
._12{width:20.557440px;}
._f{width:22.230720px;}
._4{width:23.616000px;}
._d{width:25.278480px;}
._15{width:26.294400px;}
._13{width:32.031360px;}
._10{width:1553.795760px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:66.600000px;}
.y3{bottom:84.600000px;}
.y69{bottom:103.500000px;}
.y72{bottom:110.160000px;}
.y8b{bottom:111.960000px;}
.y33{bottom:114.660000px;}
.y82{bottom:115.380000px;}
.y77{bottom:117.720000px;}
.y7b{bottom:118.620000px;}
.y68{bottom:123.660000px;}
.y71{bottom:130.320000px;}
.y32{bottom:134.820000px;}
.y76{bottom:136.080000px;}
.y8a{bottom:137.340000px;}
.y67{bottom:144.000000px;}
.y70{bottom:150.660000px;}
.y31{bottom:155.160000px;}
.y89{bottom:161.100000px;}
.y66{bottom:164.160000px;}
.y6f{bottom:170.820000px;}
.y30{bottom:175.320000px;}
.y88{bottom:179.460000px;}
.y65{bottom:184.320000px;}
.y2f{bottom:195.660000px;}
.y87{bottom:197.670000px;}
.y6e{bottom:200.190000px;}
.y64{bottom:204.690000px;}
.y86{bottom:211.890000px;}
.y2e{bottom:215.850000px;}
.y63{bottom:224.850000px;}
.y2d{bottom:236.010000px;}
.y6d{bottom:238.350000px;}
.y62{bottom:245.190000px;}
.y2c{bottom:256.350000px;}
.y6c{bottom:258.690000px;}
.y61{bottom:265.350000px;}
.y2b{bottom:276.510000px;}
.y6b{bottom:278.850000px;}
.y60{bottom:285.690000px;}
.y2a{bottom:296.850000px;}
.y5f{bottom:305.850000px;}
.y6a{bottom:308.010000px;}
.y29{bottom:317.010000px;}
.y5e{bottom:326.010000px;}
.y28{bottom:337.350000px;}
.y5d{bottom:346.350000px;}
.y27{bottom:357.510000px;}
.y5c{bottom:366.510000px;}
.y26{bottom:377.670000px;}
.y5b{bottom:386.850000px;}
.y25{bottom:398.010000px;}
.y5a{bottom:407.010000px;}
.y24{bottom:418.170000px;}
.y59{bottom:427.350000px;}
.y81{bottom:428.430000px;}
.y23{bottom:438.555000px;}
.y80{bottom:446.655000px;}
.y58{bottom:447.555000px;}
.y22{bottom:461.415000px;}
.y57{bottom:467.715000px;}
.y21{bottom:481.575000px;}
.y56{bottom:488.055000px;}
.y20{bottom:501.915000px;}
.y55{bottom:508.215000px;}
.y54{bottom:528.555000px;}
.y1f{bottom:540.075000px;}
.y75{bottom:548.355000px;}
.y53{bottom:548.715000px;}
.y1e{bottom:560.235000px;}
.y7a{bottom:564.015000px;}
.y52{bottom:569.055000px;}
.y74{bottom:572.115000px;}
.y1d{bottom:580.575000px;}
.y79{bottom:587.775000px;}
.y51{bottom:589.215000px;}
.y73{bottom:590.475000px;}
.y1c{bottom:600.735000px;}
.y78{bottom:606.135000px;}
.y50{bottom:609.375000px;}
.y1b{bottom:621.075000px;}
.ya3{bottom:624.675000px;}
.y4f{bottom:629.715000px;}
.y1a{bottom:641.235000px;}
.y85{bottom:643.035000px;}
.y4e{bottom:649.875000px;}
.y19{bottom:661.575000px;}
.ya2{bottom:662.115000px;}
.y84{bottom:666.795000px;}
.y4d{bottom:670.215000px;}
.y83{bottom:681.045000px;}
.ya1{bottom:681.585000px;}
.y18{bottom:681.765000px;}
.y4c{bottom:690.405000px;}
.ya0{bottom:701.205000px;}
.y17{bottom:701.925000px;}
.y4b{bottom:710.745000px;}
.y9f{bottom:720.645000px;}
.y16{bottom:722.265000px;}
.y4a{bottom:730.905000px;}
.y9e{bottom:740.085000px;}
.y15{bottom:742.425000px;}
.y49{bottom:751.065000px;}
.y9d{bottom:759.705000px;}
.y48{bottom:771.405000px;}
.y9c{bottom:779.145000px;}
.y14{bottom:783.825000px;}
.y47{bottom:791.565000px;}
.y7f{bottom:797.865000px;}
.y9b{bottom:798.585000px;}
.y13{bottom:806.325000px;}
.y46{bottom:811.905000px;}
.y9a{bottom:818.205000px;}
.y7e{bottom:821.625000px;}
.y12{bottom:829.725000px;}
.y45{bottom:832.065000px;}
.y99{bottom:837.645000px;}
.y7d{bottom:839.805000px;}
.y11{bottom:844.845000px;}
.y44{bottom:852.405000px;}
.y98{bottom:857.085000px;}
.y7c{bottom:858.165000px;}
.y10{bottom:863.205000px;}
.y43{bottom:872.565000px;}
.y97{bottom:876.705000px;}
.yf{bottom:878.325000px;}
.y42{bottom:892.725000px;}
.ye{bottom:893.625000px;}
.y96{bottom:896.145000px;}
.y41{bottom:913.110000px;}
.yd{bottom:915.630000px;}
.y40{bottom:933.270000px;}
.y95{bottom:935.250000px;}
.y3f{bottom:953.610000px;}
.yc{bottom:953.970000px;}
.y94{bottom:954.690000px;}
.y3e{bottom:973.770000px;}
.y93{bottom:974.130000px;}
.yb{bottom:974.310000px;}
.y92{bottom:993.750000px;}
.y3d{bottom:994.110000px;}
.ya{bottom:994.470000px;}
.y91{bottom:1013.190000px;}
.y3c{bottom:1014.270000px;}
.y9{bottom:1016.430000px;}
.y90{bottom:1032.630000px;}
.y3b{bottom:1034.430000px;}
.y8{bottom:1043.430000px;}
.y8f{bottom:1052.250000px;}
.y3a{bottom:1054.770000px;}
.y39{bottom:1074.930000px;}
.y7{bottom:1077.630000px;}
.y8e{bottom:1081.230000px;}
.y38{bottom:1095.270000px;}
.y6{bottom:1099.590000px;}
.y37{bottom:1115.430000px;}
.y8d{bottom:1118.850000px;}
.y5{bottom:1126.590000px;}
.y36{bottom:1135.770000px;}
.y8c{bottom:1137.210000px;}
.y2{bottom:1151.280000px;}
.y35{bottom:1155.060000px;}
.y1{bottom:1172.160000px;}
.y34{bottom:1173.780000px;}
.h8{height:32.953359px;}
.h11{height:39.603516px;}
.h3{height:41.159180px;}
.h5{height:43.827891px;}
.he{height:44.612578px;}
.h9{height:45.193359px;}
.h6{height:48.761719px;}
.h10{height:49.939453px;}
.ha{height:49.992188px;}
.hb{height:50.013984px;}
.hf{height:54.536836px;}
.hd{height:54.878906px;}
.hc{height:55.266328px;}
.h7{height:55.641797px;}
.h4{height:64.853086px;}
.h2{height:65.707031px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:114.875987px;}
.xe{left:118.295987px;}
.x16{left:119.375987px;}
.x4{left:123.335987px;}
.xa{left:125.675987px;}
.x5{left:146.735987px;}
.xc{left:167.969987px;}
.xd{left:171.389987px;}
.x8{left:176.789987px;}
.x12{left:198.029987px;}
.x6{left:199.829987px;}
.x7{left:209.369987px;}
.x10{left:221.429987px;}
.x14{left:229.349987px;}
.xf{left:238.349987px;}
.xb{left:284.294987px;}
.x1{left:285.554987px;}
.x17{left:311.834987px;}
.x9{left:370.334987px;}
.x11{left:446.474987px;}
.x2{left:620.204987px;}
.x13{left:681.629987px;}
.x15{left:765.509987px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-0.272000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.183680pt;}
.lsb{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.736000pt;}
.ls0{letter-spacing:9.600000pt;}
.ls1{letter-spacing:12.160000pt;}
.lsc{letter-spacing:64.096000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws6{word-spacing:-14.016000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.112000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.840000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._c{margin-left:-2.549760pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.152000pt;}
._7{width:2.091307pt;}
._8{width:3.830400pt;}
._11{width:4.863573pt;}
._5{width:5.818667pt;}
._6{width:6.794667pt;}
._b{width:8.172587pt;}
._e{width:9.128960pt;}
._14{width:10.039680pt;}
._9{width:11.072640pt;}
._2{width:12.501333pt;}
._3{width:14.869333pt;}
._a{width:16.520320pt;}
._12{width:18.273280pt;}
._f{width:19.760640pt;}
._4{width:20.992000pt;}
._d{width:22.469760pt;}
._15{width:23.372800pt;}
._13{width:28.472320pt;}
._10{width:1381.151787pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:59.200000pt;}
.y3{bottom:75.200000pt;}
.y69{bottom:92.000000pt;}
.y72{bottom:97.920000pt;}
.y8b{bottom:99.520000pt;}
.y33{bottom:101.920000pt;}
.y82{bottom:102.560000pt;}
.y77{bottom:104.640000pt;}
.y7b{bottom:105.440000pt;}
.y68{bottom:109.920000pt;}
.y71{bottom:115.840000pt;}
.y32{bottom:119.840000pt;}
.y76{bottom:120.960000pt;}
.y8a{bottom:122.080000pt;}
.y67{bottom:128.000000pt;}
.y70{bottom:133.920000pt;}
.y31{bottom:137.920000pt;}
.y89{bottom:143.200000pt;}
.y66{bottom:145.920000pt;}
.y6f{bottom:151.840000pt;}
.y30{bottom:155.840000pt;}
.y88{bottom:159.520000pt;}
.y65{bottom:163.840000pt;}
.y2f{bottom:173.920000pt;}
.y87{bottom:175.706667pt;}
.y6e{bottom:177.946667pt;}
.y64{bottom:181.946667pt;}
.y86{bottom:188.346667pt;}
.y2e{bottom:191.866667pt;}
.y63{bottom:199.866667pt;}
.y2d{bottom:209.786667pt;}
.y6d{bottom:211.866667pt;}
.y62{bottom:217.946667pt;}
.y2c{bottom:227.866667pt;}
.y6c{bottom:229.946667pt;}
.y61{bottom:235.866667pt;}
.y2b{bottom:245.786667pt;}
.y6b{bottom:247.866667pt;}
.y60{bottom:253.946667pt;}
.y2a{bottom:263.866667pt;}
.y5f{bottom:271.866667pt;}
.y6a{bottom:273.786667pt;}
.y29{bottom:281.786667pt;}
.y5e{bottom:289.786667pt;}
.y28{bottom:299.866667pt;}
.y5d{bottom:307.866667pt;}
.y27{bottom:317.786667pt;}
.y5c{bottom:325.786667pt;}
.y26{bottom:335.706667pt;}
.y5b{bottom:343.866667pt;}
.y25{bottom:353.786667pt;}
.y5a{bottom:361.786667pt;}
.y24{bottom:371.706667pt;}
.y59{bottom:379.866667pt;}
.y81{bottom:380.826667pt;}
.y23{bottom:389.826667pt;}
.y80{bottom:397.026667pt;}
.y58{bottom:397.826667pt;}
.y22{bottom:410.146667pt;}
.y57{bottom:415.746667pt;}
.y21{bottom:428.066667pt;}
.y56{bottom:433.826667pt;}
.y20{bottom:446.146667pt;}
.y55{bottom:451.746667pt;}
.y54{bottom:469.826667pt;}
.y1f{bottom:480.066667pt;}
.y75{bottom:487.426667pt;}
.y53{bottom:487.746667pt;}
.y1e{bottom:497.986667pt;}
.y7a{bottom:501.346667pt;}
.y52{bottom:505.826667pt;}
.y74{bottom:508.546667pt;}
.y1d{bottom:516.066667pt;}
.y79{bottom:522.466667pt;}
.y51{bottom:523.746667pt;}
.y73{bottom:524.866667pt;}
.y1c{bottom:533.986667pt;}
.y78{bottom:538.786667pt;}
.y50{bottom:541.666667pt;}
.y1b{bottom:552.066667pt;}
.ya3{bottom:555.266667pt;}
.y4f{bottom:559.746667pt;}
.y1a{bottom:569.986667pt;}
.y85{bottom:571.586667pt;}
.y4e{bottom:577.666667pt;}
.y19{bottom:588.066667pt;}
.ya2{bottom:588.546667pt;}
.y84{bottom:592.706667pt;}
.y4d{bottom:595.746667pt;}
.y83{bottom:605.373333pt;}
.ya1{bottom:605.853333pt;}
.y18{bottom:606.013333pt;}
.y4c{bottom:613.693333pt;}
.ya0{bottom:623.293333pt;}
.y17{bottom:623.933333pt;}
.y4b{bottom:631.773333pt;}
.y9f{bottom:640.573333pt;}
.y16{bottom:642.013333pt;}
.y4a{bottom:649.693333pt;}
.y9e{bottom:657.853333pt;}
.y15{bottom:659.933333pt;}
.y49{bottom:667.613333pt;}
.y9d{bottom:675.293333pt;}
.y48{bottom:685.693333pt;}
.y9c{bottom:692.573333pt;}
.y14{bottom:696.733333pt;}
.y47{bottom:703.613333pt;}
.y7f{bottom:709.213333pt;}
.y9b{bottom:709.853333pt;}
.y13{bottom:716.733333pt;}
.y46{bottom:721.693333pt;}
.y9a{bottom:727.293333pt;}
.y7e{bottom:730.333333pt;}
.y12{bottom:737.533333pt;}
.y45{bottom:739.613333pt;}
.y99{bottom:744.573333pt;}
.y7d{bottom:746.493333pt;}
.y11{bottom:750.973333pt;}
.y44{bottom:757.693333pt;}
.y98{bottom:761.853333pt;}
.y7c{bottom:762.813333pt;}
.y10{bottom:767.293333pt;}
.y43{bottom:775.613333pt;}
.y97{bottom:779.293333pt;}
.yf{bottom:780.733333pt;}
.y42{bottom:793.533333pt;}
.ye{bottom:794.333333pt;}
.y96{bottom:796.573333pt;}
.y41{bottom:811.653333pt;}
.yd{bottom:813.893333pt;}
.y40{bottom:829.573333pt;}
.y95{bottom:831.333333pt;}
.y3f{bottom:847.653333pt;}
.yc{bottom:847.973333pt;}
.y94{bottom:848.613333pt;}
.y3e{bottom:865.573333pt;}
.y93{bottom:865.893333pt;}
.yb{bottom:866.053333pt;}
.y92{bottom:883.333333pt;}
.y3d{bottom:883.653333pt;}
.ya{bottom:883.973333pt;}
.y91{bottom:900.613333pt;}
.y3c{bottom:901.573333pt;}
.y9{bottom:903.493333pt;}
.y90{bottom:917.893333pt;}
.y3b{bottom:919.493333pt;}
.y8{bottom:927.493333pt;}
.y8f{bottom:935.333333pt;}
.y3a{bottom:937.573333pt;}
.y39{bottom:955.493333pt;}
.y7{bottom:957.893333pt;}
.y8e{bottom:961.093333pt;}
.y38{bottom:973.573333pt;}
.y6{bottom:977.413333pt;}
.y37{bottom:991.493333pt;}
.y8d{bottom:994.533333pt;}
.y5{bottom:1001.413333pt;}
.y36{bottom:1009.573333pt;}
.y8c{bottom:1010.853333pt;}
.y2{bottom:1023.360000pt;}
.y35{bottom:1026.720000pt;}
.y1{bottom:1041.920000pt;}
.y34{bottom:1043.360000pt;}
.h8{height:29.291875pt;}
.h11{height:35.203125pt;}
.h3{height:36.585938pt;}
.h5{height:38.958125pt;}
.he{height:39.655625pt;}
.h9{height:40.171875pt;}
.h6{height:43.343750pt;}
.h10{height:44.390625pt;}
.ha{height:44.437500pt;}
.hb{height:44.456875pt;}
.hf{height:48.477187pt;}
.hd{height:48.781250pt;}
.hc{height:49.125625pt;}
.h7{height:49.459375pt;}
.h4{height:57.647187pt;}
.h2{height:58.406250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:102.111988pt;}
.xe{left:105.151988pt;}
.x16{left:106.111988pt;}
.x4{left:109.631988pt;}
.xa{left:111.711988pt;}
.x5{left:130.431988pt;}
.xc{left:149.306655pt;}
.xd{left:152.346655pt;}
.x8{left:157.146655pt;}
.x12{left:176.026655pt;}
.x6{left:177.626655pt;}
.x7{left:186.106655pt;}
.x10{left:196.826655pt;}
.x14{left:203.866655pt;}
.xf{left:211.866655pt;}
.xb{left:252.706655pt;}
.x1{left:253.826655pt;}
.x17{left:277.186655pt;}
.x9{left:329.186655pt;}
.x11{left:396.866655pt;}
.x2{left:551.293322pt;}
.x13{left:605.893322pt;}
.x15{left:680.453322pt;}
}




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