
    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_72a3590982e2781af11e3b13.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.723000;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_cc0fdc3e45556bad2a1dcee6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6dfe578df2014bd12982b194.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.079102;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_d2f6d4f23032da6a71583349.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_c7aab920f6ce8a56d5c1bc73.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.079102;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_a951cf3d4fe0a7361cab0d1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_55df277b31d2d851c82b44ae.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7d5a091313d27bc72cd88666.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.896973;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_67bc76453a84314d32d30340.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_532c423cb5ccf19d92c8955c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_9ac306e0558a56cc0ffd0969.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4bf5a008dfc28460ea48233a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722656;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);}
.v3{vertical-align:-4.218000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.820000px;}
.v1{vertical-align:42.000000px;}
.v4{vertical-align:60.000000px;}
.ls7{letter-spacing:-3.996000px;}
.ls2{letter-spacing:-1.800000px;}
.ls6{letter-spacing:-1.620000px;}
.lsa{letter-spacing:-1.320000px;}
.ls4{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.330000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.990000px;}
.ls0{letter-spacing:2.940000px;}
.ls9{letter-spacing:5.142000px;}
.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;}
}
.ws1{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.000000px;}
.ws5{word-spacing:-2.940000px;}
.ws6{word-spacing:-0.990000px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:0.264000px;}
.ws17{word-spacing:0.330000px;}
.ws7{word-spacing:0.462000px;}
.wsc{word-spacing:0.540000px;}
.ws15{word-spacing:0.660000px;}
.ws16{word-spacing:1.320000px;}
.wsd{word-spacing:1.620000px;}
.ws4{word-spacing:1.800000px;}
.wsb{word-spacing:2.244000px;}
.wsa{word-spacing:3.036000px;}
.ws14{word-spacing:5.478000px;}
.ws18{word-spacing:34.056000px;}
.ws12{word-spacing:233.076000px;}
.wsf{word-spacing:248.088000px;}
.ws10{word-spacing:260.076000px;}
.wse{word-spacing:278.112000px;}
.ws8{word-spacing:278.118000px;}
.ws11{word-spacing:439.512000px;}
.ws2{word-spacing:509.131200px;}
.ws9{word-spacing:709.779000px;}
._19{margin-left:-17.404200px;}
._10{margin-left:-15.642600px;}
._2e{margin-left:-13.963800px;}
._2d{margin-left:-12.887400px;}
._2f{margin-left:-10.062600px;}
._1a{margin-left:-8.905800px;}
._4{margin-left:-7.522800px;}
._2a{margin-left:-6.512400px;}
._1{margin-left:-5.502000px;}
._2c{margin-left:-4.501200px;}
._5{margin-left:-3.490800px;}
._0{margin-left:-2.214000px;}
._6{margin-left:-1.062000px;}
._a{width:1.074000px;}
._3{width:2.214000px;}
._9{width:3.294000px;}
._8{width:4.596000px;}
._18{width:5.605800px;}
._b{width:6.660000px;}
._7{width:8.016000px;}
._e{width:9.100800px;}
._11{width:10.317000px;}
._12{width:11.507400px;}
._14{width:12.559800px;}
._16{width:13.671600px;}
._f{width:14.744400px;}
._17{width:18.348000px;}
._13{width:19.608600px;}
._d{width:20.783400px;}
._c{width:22.129800px;}
._15{width:23.806200px;}
._2b{width:24.974400px;}
._30{width:30.508200px;}
._20{width:33.525000px;}
._31{width:34.965600px;}
._21{width:36.433800px;}
._27{width:49.086600px;}
._24{width:89.862600px;}
._1c{width:98.136000px;}
._2{width:108.294600px;}
._1d{width:175.446000px;}
._29{width:244.680600px;}
._22{width:398.154600px;}
._1e{width:406.281000px;}
._28{width:418.722600px;}
._25{width:424.716600px;}
._1f{width:454.518000px;}
._23{width:481.686600px;}
._1b{width:646.815000px;}
._26{width:683.592600px;}
.fc0{color:rgb(36,31,31);}
.fs4{font-size:31.320000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:126.426150px;}
.y24{bottom:159.166500px;}
.y23{bottom:177.166500px;}
.y4b{bottom:184.131000px;}
.y22{bottom:195.166500px;}
.y4a{bottom:202.462500px;}
.y21{bottom:213.166500px;}
.y49{bottom:220.795500px;}
.y20{bottom:231.166500px;}
.y48{bottom:235.795500px;}
.y1f{bottom:249.166500px;}
.y47{bottom:254.127000px;}
.y1e{bottom:267.166500px;}
.y46{bottom:269.127000px;}
.y7f{bottom:273.166500px;}
.y1d{bottom:285.166500px;}
.y45{bottom:287.460000px;}
.y7e{bottom:288.166500px;}
.y44{bottom:302.460000px;}
.y1c{bottom:303.166500px;}
.y43{bottom:317.460000px;}
.y7d{bottom:318.166500px;}
.y1b{bottom:321.166500px;}
.y42{bottom:332.460000px;}
.y7c{bottom:333.166500px;}
.y1a{bottom:339.166500px;}
.y7b{bottom:348.166500px;}
.y19{bottom:357.166500px;}
.y7a{bottom:363.166500px;}
.y18{bottom:375.166500px;}
.y79{bottom:378.166500px;}
.y17{bottom:393.166500px;}
.y78{bottom:409.666500px;}
.y40{bottom:411.166500px;}
.y77{bottom:424.666500px;}
.y16{bottom:429.166500px;}
.y76{bottom:439.666500px;}
.y15{bottom:445.666500px;}
.y3f{bottom:447.166500px;}
.y75{bottom:454.666500px;}
.y14{bottom:462.166500px;}
.y3e{bottom:465.166500px;}
.y74{bottom:469.666500px;}
.y13{bottom:478.666500px;}
.y3d{bottom:483.166500px;}
.y73{bottom:484.666500px;}
.y12{bottom:495.166500px;}
.y3c{bottom:501.166500px;}
.y11{bottom:511.666500px;}
.y3b{bottom:519.166500px;}
.y72{bottom:525.724500px;}
.y10{bottom:528.166500px;}
.y3a{bottom:537.166500px;}
.y71{bottom:543.724500px;}
.yf{bottom:544.666500px;}
.y39{bottom:555.166500px;}
.ye{bottom:561.166500px;}
.y70{bottom:561.724500px;}
.y38{bottom:573.166500px;}
.yd{bottom:577.666500px;}
.y6f{bottom:579.724500px;}
.y37{bottom:591.166500px;}
.yc{bottom:594.166500px;}
.y6e{bottom:597.724500px;}
.y5d{bottom:604.384500px;}
.y36{bottom:609.166500px;}
.yb{bottom:610.666500px;}
.y6d{bottom:615.724500px;}
.y5c{bottom:619.384500px;}
.y35{bottom:627.166500px;}
.y6c{bottom:633.724500px;}
.y5b{bottom:634.384500px;}
.y34{bottom:645.166500px;}
.y5a{bottom:649.384500px;}
.y6b{bottom:651.724500px;}
.ya{bottom:654.166500px;}
.y33{bottom:663.166500px;}
.y59{bottom:667.716000px;}
.y9{bottom:669.166500px;}
.y6a{bottom:669.724500px;}
.y32{bottom:681.166500px;}
.y58{bottom:682.716000px;}
.y8{bottom:685.666500px;}
.y69{bottom:687.724500px;}
.y57{bottom:697.716000px;}
.y31{bottom:699.166500px;}
.y7{bottom:700.666500px;}
.y68{bottom:705.724500px;}
.y56{bottom:716.049000px;}
.y30{bottom:717.166500px;}
.y67{bottom:723.724500px;}
.y55{bottom:734.380500px;}
.y2f{bottom:735.166500px;}
.y66{bottom:741.724500px;}
.y54{bottom:749.380500px;}
.y41{bottom:753.166500px;}
.y65{bottom:759.724500px;}
.y6{bottom:762.943500px;}
.y53{bottom:767.713500px;}
.y2e{bottom:771.166500px;}
.y64{bottom:777.724500px;}
.y52{bottom:782.713500px;}
.y5{bottom:786.943500px;}
.y2d{bottom:789.166500px;}
.y63{bottom:795.724500px;}
.y51{bottom:801.045000px;}
.y2c{bottom:807.166500px;}
.y4{bottom:810.943500px;}
.y62{bottom:813.724500px;}
.y50{bottom:816.045000px;}
.y2b{bottom:825.166500px;}
.y61{bottom:831.724500px;}
.y4f{bottom:834.378000px;}
.y2a{bottom:843.166500px;}
.y4e{bottom:849.378000px;}
.y60{bottom:849.724500px;}
.y29{bottom:861.166500px;}
.y4d{bottom:867.709500px;}
.y5f{bottom:867.724500px;}
.y26{bottom:870.250500px;}
.y28{bottom:879.166500px;}
.y4c{bottom:882.709500px;}
.y5e{bottom:885.724500px;}
.y25{bottom:887.805000px;}
.y3{bottom:922.774500px;}
.y27{bottom:937.774500px;}
.y2{bottom:940.774500px;}
.h2{height:38.016000px;}
.h7{height:46.617188px;}
.hc{height:47.592773px;}
.h11{height:48.410156px;}
.hd{height:51.796875px;}
.h8{height:52.880859px;}
.hf{height:56.320312px;}
.he{height:56.976562px;}
.h6{height:57.073242px;}
.ha{height:58.168945px;}
.h3{height:58.857422px;}
.h9{height:58.886719px;}
.hb{height:64.775391px;}
.h5{height:72.638672px;}
.h4{height:93.796875px;}
.h10{height:116.320312px;}
.h0{height:1054.488000px;}
.h1{height:1054.500000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x15{left:89.666250px;}
.x10{left:93.543300px;}
.xe{left:94.795200px;}
.x19{left:98.170350px;}
.xc{left:106.299300px;}
.x5{left:108.186150px;}
.x21{left:110.551200px;}
.x11{left:114.803100px;}
.x4{left:116.455950px;}
.x20{left:119.055000px;}
.x3{left:125.566500px;}
.x14{left:127.559100px;}
.xb{left:131.811000px;}
.x12{left:136.062900px;}
.xa{left:153.070500px;}
.x1e{left:179.553000px;}
.x1c{left:191.013000px;}
.x13{left:199.020000px;}
.x1f{left:227.079000px;}
.x1d{left:242.439000px;}
.x29{left:287.757000px;}
.xf{left:289.855500px;}
.x16{left:318.897000px;}
.x7{left:337.002000px;}
.x17{left:399.685500px;}
.x28{left:403.957500px;}
.x1a{left:408.189000px;}
.x2b{left:418.539000px;}
.x23{left:441.801000px;}
.x27{left:449.298000px;}
.x2a{left:456.474000px;}
.x9{left:458.463000px;}
.x22{left:465.186000px;}
.x26{left:467.647500px;}
.x2d{left:486.769500px;}
.x24{left:493.882500px;}
.x8{left:498.328500px;}
.x6{left:514.216500px;}
.x18{left:528.327000px;}
.x1b{left:536.832000px;}
.x25{left:538.173000px;}
.x2c{left:548.298000px;}
.xd{left:563.431500px;}
.x1{left:614.527500px;}
@media print{
.v3{vertical-align:-3.749333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.840000pt;}
.v1{vertical-align:37.333333pt;}
.v4{vertical-align:53.333333pt;}
.ls7{letter-spacing:-3.552000pt;}
.ls2{letter-spacing:-1.600000pt;}
.ls6{letter-spacing:-1.440000pt;}
.lsa{letter-spacing:-1.173333pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.293333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.880000pt;}
.ls0{letter-spacing:2.613333pt;}
.ls9{letter-spacing:4.570667pt;}
.ws1{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws5{word-spacing:-2.613333pt;}
.ws6{word-spacing:-0.880000pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:0.234667pt;}
.ws17{word-spacing:0.293333pt;}
.ws7{word-spacing:0.410667pt;}
.wsc{word-spacing:0.480000pt;}
.ws15{word-spacing:0.586667pt;}
.ws16{word-spacing:1.173333pt;}
.wsd{word-spacing:1.440000pt;}
.ws4{word-spacing:1.600000pt;}
.wsb{word-spacing:1.994667pt;}
.wsa{word-spacing:2.698667pt;}
.ws14{word-spacing:4.869333pt;}
.ws18{word-spacing:30.272000pt;}
.ws12{word-spacing:207.178667pt;}
.wsf{word-spacing:220.522667pt;}
.ws10{word-spacing:231.178667pt;}
.wse{word-spacing:247.210667pt;}
.ws8{word-spacing:247.216000pt;}
.ws11{word-spacing:390.677333pt;}
.ws2{word-spacing:452.561067pt;}
.ws9{word-spacing:630.914667pt;}
._19{margin-left:-15.470400pt;}
._10{margin-left:-13.904533pt;}
._2e{margin-left:-12.412267pt;}
._2d{margin-left:-11.455467pt;}
._2f{margin-left:-8.944533pt;}
._1a{margin-left:-7.916267pt;}
._4{margin-left:-6.686933pt;}
._2a{margin-left:-5.788800pt;}
._1{margin-left:-4.890667pt;}
._2c{margin-left:-4.001067pt;}
._5{margin-left:-3.102933pt;}
._0{margin-left:-1.968000pt;}
._6{margin-left:-0.944000pt;}
._a{width:0.954667pt;}
._3{width:1.968000pt;}
._9{width:2.928000pt;}
._8{width:4.085333pt;}
._18{width:4.982933pt;}
._b{width:5.920000pt;}
._7{width:7.125333pt;}
._e{width:8.089600pt;}
._11{width:9.170667pt;}
._12{width:10.228800pt;}
._14{width:11.164267pt;}
._16{width:12.152533pt;}
._f{width:13.106133pt;}
._17{width:16.309333pt;}
._13{width:17.429867pt;}
._d{width:18.474133pt;}
._c{width:19.670933pt;}
._15{width:21.161067pt;}
._2b{width:22.199467pt;}
._30{width:27.118400pt;}
._20{width:29.800000pt;}
._31{width:31.080533pt;}
._21{width:32.385600pt;}
._27{width:43.632533pt;}
._24{width:79.877867pt;}
._1c{width:87.232000pt;}
._2{width:96.261867pt;}
._1d{width:155.952000pt;}
._29{width:217.493867pt;}
._22{width:353.915200pt;}
._1e{width:361.138667pt;}
._28{width:372.197867pt;}
._25{width:377.525867pt;}
._1f{width:404.016000pt;}
._23{width:428.165867pt;}
._1b{width:574.946667pt;}
._26{width:607.637867pt;}
.fs4{font-size:27.840000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:112.378800pt;}
.y24{bottom:141.481333pt;}
.y23{bottom:157.481333pt;}
.y4b{bottom:163.672000pt;}
.y22{bottom:173.481333pt;}
.y4a{bottom:179.966667pt;}
.y21{bottom:189.481333pt;}
.y49{bottom:196.262667pt;}
.y20{bottom:205.481333pt;}
.y48{bottom:209.596000pt;}
.y1f{bottom:221.481333pt;}
.y47{bottom:225.890667pt;}
.y1e{bottom:237.481333pt;}
.y46{bottom:239.224000pt;}
.y7f{bottom:242.814667pt;}
.y1d{bottom:253.481333pt;}
.y45{bottom:255.520000pt;}
.y7e{bottom:256.148000pt;}
.y44{bottom:268.853333pt;}
.y1c{bottom:269.481333pt;}
.y43{bottom:282.186667pt;}
.y7d{bottom:282.814667pt;}
.y1b{bottom:285.481333pt;}
.y42{bottom:295.520000pt;}
.y7c{bottom:296.148000pt;}
.y1a{bottom:301.481333pt;}
.y7b{bottom:309.481333pt;}
.y19{bottom:317.481333pt;}
.y7a{bottom:322.814667pt;}
.y18{bottom:333.481333pt;}
.y79{bottom:336.148000pt;}
.y17{bottom:349.481333pt;}
.y78{bottom:364.148000pt;}
.y40{bottom:365.481333pt;}
.y77{bottom:377.481333pt;}
.y16{bottom:381.481333pt;}
.y76{bottom:390.814667pt;}
.y15{bottom:396.148000pt;}
.y3f{bottom:397.481333pt;}
.y75{bottom:404.148000pt;}
.y14{bottom:410.814667pt;}
.y3e{bottom:413.481333pt;}
.y74{bottom:417.481333pt;}
.y13{bottom:425.481333pt;}
.y3d{bottom:429.481333pt;}
.y73{bottom:430.814667pt;}
.y12{bottom:440.148000pt;}
.y3c{bottom:445.481333pt;}
.y11{bottom:454.814667pt;}
.y3b{bottom:461.481333pt;}
.y72{bottom:467.310667pt;}
.y10{bottom:469.481333pt;}
.y3a{bottom:477.481333pt;}
.y71{bottom:483.310667pt;}
.yf{bottom:484.148000pt;}
.y39{bottom:493.481333pt;}
.ye{bottom:498.814667pt;}
.y70{bottom:499.310667pt;}
.y38{bottom:509.481333pt;}
.yd{bottom:513.481333pt;}
.y6f{bottom:515.310667pt;}
.y37{bottom:525.481333pt;}
.yc{bottom:528.148000pt;}
.y6e{bottom:531.310667pt;}
.y5d{bottom:537.230667pt;}
.y36{bottom:541.481333pt;}
.yb{bottom:542.814667pt;}
.y6d{bottom:547.310667pt;}
.y5c{bottom:550.564000pt;}
.y35{bottom:557.481333pt;}
.y6c{bottom:563.310667pt;}
.y5b{bottom:563.897333pt;}
.y34{bottom:573.481333pt;}
.y5a{bottom:577.230667pt;}
.y6b{bottom:579.310667pt;}
.ya{bottom:581.481333pt;}
.y33{bottom:589.481333pt;}
.y59{bottom:593.525333pt;}
.y9{bottom:594.814667pt;}
.y6a{bottom:595.310667pt;}
.y32{bottom:605.481333pt;}
.y58{bottom:606.858667pt;}
.y8{bottom:609.481333pt;}
.y69{bottom:611.310667pt;}
.y57{bottom:620.192000pt;}
.y31{bottom:621.481333pt;}
.y7{bottom:622.814667pt;}
.y68{bottom:627.310667pt;}
.y56{bottom:636.488000pt;}
.y30{bottom:637.481333pt;}
.y67{bottom:643.310667pt;}
.y55{bottom:652.782667pt;}
.y2f{bottom:653.481333pt;}
.y66{bottom:659.310667pt;}
.y54{bottom:666.116000pt;}
.y41{bottom:669.481333pt;}
.y65{bottom:675.310667pt;}
.y6{bottom:678.172000pt;}
.y53{bottom:682.412000pt;}
.y2e{bottom:685.481333pt;}
.y64{bottom:691.310667pt;}
.y52{bottom:695.745333pt;}
.y5{bottom:699.505333pt;}
.y2d{bottom:701.481333pt;}
.y63{bottom:707.310667pt;}
.y51{bottom:712.040000pt;}
.y2c{bottom:717.481333pt;}
.y4{bottom:720.838667pt;}
.y62{bottom:723.310667pt;}
.y50{bottom:725.373333pt;}
.y2b{bottom:733.481333pt;}
.y61{bottom:739.310667pt;}
.y4f{bottom:741.669333pt;}
.y2a{bottom:749.481333pt;}
.y4e{bottom:755.002667pt;}
.y60{bottom:755.310667pt;}
.y29{bottom:765.481333pt;}
.y4d{bottom:771.297333pt;}
.y5f{bottom:771.310667pt;}
.y26{bottom:773.556000pt;}
.y28{bottom:781.481333pt;}
.y4c{bottom:784.630667pt;}
.y5e{bottom:787.310667pt;}
.y25{bottom:789.160000pt;}
.y3{bottom:820.244000pt;}
.y27{bottom:833.577333pt;}
.y2{bottom:836.244000pt;}
.h2{height:33.792000pt;}
.h7{height:41.437500pt;}
.hc{height:42.304688pt;}
.h11{height:43.031250pt;}
.hd{height:46.041667pt;}
.h8{height:47.005208pt;}
.hf{height:50.062500pt;}
.he{height:50.645833pt;}
.h6{height:50.731771pt;}
.ha{height:51.705729pt;}
.h3{height:52.317708pt;}
.h9{height:52.343750pt;}
.hb{height:57.578125pt;}
.h5{height:64.567708pt;}
.h4{height:83.375000pt;}
.h10{height:103.395833pt;}
.h0{height:937.322667pt;}
.h1{height:937.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x15{left:79.703333pt;}
.x10{left:83.149600pt;}
.xe{left:84.262400pt;}
.x19{left:87.262533pt;}
.xc{left:94.488267pt;}
.x5{left:96.165467pt;}
.x21{left:98.267733pt;}
.x11{left:102.047200pt;}
.x4{left:103.516400pt;}
.x20{left:105.826667pt;}
.x3{left:111.614667pt;}
.x14{left:113.385867pt;}
.xb{left:117.165333pt;}
.x12{left:120.944800pt;}
.xa{left:136.062667pt;}
.x1e{left:159.602667pt;}
.x1c{left:169.789333pt;}
.x13{left:176.906667pt;}
.x1f{left:201.848000pt;}
.x1d{left:215.501333pt;}
.x29{left:255.784000pt;}
.xf{left:257.649333pt;}
.x16{left:283.464000pt;}
.x7{left:299.557333pt;}
.x17{left:355.276000pt;}
.x28{left:359.073333pt;}
.x1a{left:362.834667pt;}
.x2b{left:372.034667pt;}
.x23{left:392.712000pt;}
.x27{left:399.376000pt;}
.x2a{left:405.754667pt;}
.x9{left:407.522667pt;}
.x22{left:413.498667pt;}
.x26{left:415.686667pt;}
.x2d{left:432.684000pt;}
.x24{left:439.006667pt;}
.x8{left:442.958667pt;}
.x6{left:457.081333pt;}
.x18{left:469.624000pt;}
.x1b{left:477.184000pt;}
.x25{left:478.376000pt;}
.x2c{left:487.376000pt;}
.xd{left:500.828000pt;}
.x1{left:546.246667pt;}
}




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