
    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_3f5cea12a0d2191189506b54.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952637;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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d7d096ffd6d64cda839c109e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2815bb98e201f654553a7b4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0d0cbd5a37baf6863f162abf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_758da0130bca42d4067ba9a7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5f4e699a42c85bc10fe70cc9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960449;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_6f2815f3752447b945b52d1e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000001px;}
.lsa{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.288000px;}
.lsb{letter-spacing:99.504000px;}
.ls8{letter-spacing:135.504000px;}
.ls1{letter-spacing:190.758240px;}
.ls7{letter-spacing:194.376000px;}
.ls6{letter-spacing:194.400000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-190.921920px;}
._1a{margin-left:-93.487680px;}
._19{margin-left:-4.608000px;}
._c{margin-left:-3.096000px;}
._2{margin-left:-1.152000px;}
._0{width:1.723680px;}
._4{width:3.600000px;}
._3{width:4.968000px;}
._7{width:6.120000px;}
._8{width:7.433280px;}
._9{width:8.928000px;}
._5{width:10.872000px;}
._6{width:12.312000px;}
._f{width:14.040000px;}
._16{width:15.480000px;}
._1b{width:16.776000px;}
._1c{width:19.080000px;}
._17{width:20.160000px;}
._26{width:21.960000px;}
._27{width:23.400000px;}
._1d{width:24.412320px;}
._13{width:25.488000px;}
._14{width:26.496000px;}
._15{width:27.576000px;}
._31{width:29.364000px;}
._32{width:30.376320px;}
._a{width:31.608000px;}
._b{width:33.408000px;}
._29{width:34.536000px;}
._d{width:36.576000px;}
._e{width:37.876320px;}
._23{width:43.920000px;}
._22{width:46.008000px;}
._21{width:55.972320px;}
._10{width:57.960000px;}
._1f{width:61.608000px;}
._2a{width:89.404320px;}
._33{width:105.912000px;}
._2e{width:126.244320px;}
._1{width:141.870226px;}
._24{width:153.552000px;}
._30{width:160.732320px;}
._28{width:163.540320px;}
._2f{width:164.736960px;}
._1e{width:168.712320px;}
._18{width:173.080320px;}
._2b{width:178.732320px;}
._2c{width:181.380000px;}
._25{width:185.868000px;}
._20{width:193.500000px;}
._11{width:195.300000px;}
._2d{width:197.796000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs4{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:26.640000px;}
.y3{bottom:31.140000px;}
.y4{bottom:42.120000px;}
.y7e{bottom:113.616000px;}
.y8a{bottom:121.536000px;}
.ya2{bottom:124.056000px;}
.y24{bottom:126.576000px;}
.y53{bottom:136.656000px;}
.y7d{bottom:144.756000px;}
.y89{bottom:152.670000px;}
.ya1{bottom:155.010000px;}
.y23{bottom:157.530000px;}
.y40{bottom:167.610000px;}
.y7c{bottom:175.710000px;}
.ya0{bottom:186.150000px;}
.y22{bottom:188.670000px;}
.y6b{bottom:193.710000px;}
.y3f{bottom:198.750000px;}
.y88{bottom:201.630000px;}
.y7b{bottom:206.850000px;}
.y9f{bottom:217.110000px;}
.y6a{bottom:224.850000px;}
.y3e{bottom:229.710000px;}
.y87{bottom:232.770000px;}
.y21{bottom:237.450000px;}
.y7a{bottom:237.810000px;}
.y9e{bottom:248.250000px;}
.y69{bottom:255.810000px;}
.y3d{bottom:260.850000px;}
.y86{bottom:263.730000px;}
.y79{bottom:268.950000px;}
.y52{bottom:278.490000px;}
.y9d{bottom:279.210000px;}
.y20{bottom:286.770000px;}
.y68{bottom:286.950000px;}
.y3c{bottom:291.810000px;}
.y85{bottom:294.870000px;}
.y78{bottom:299.910000px;}
.y9c{bottom:310.350000px;}
.y1f{bottom:317.730000px;}
.y67{bottom:317.910000px;}
.y3b{bottom:322.950000px;}
.y84{bottom:325.830000px;}
.y51{bottom:327.450000px;}
.y77{bottom:330.870000px;}
.y9b{bottom:341.310000px;}
.y3a{bottom:353.910000px;}
.y1e{bottom:356.250000px;}
.y83{bottom:356.970000px;}
.y76{bottom:362.010000px;}
.y66{bottom:366.555000px;}
.y9a{bottom:372.495000px;}
.y50{bottom:376.995000px;}
.y39{bottom:384.915000px;}
.y1d{bottom:387.435000px;}
.y82{bottom:387.975000px;}
.y75{bottom:393.015000px;}
.y99{bottom:403.455000px;}
.y4f{bottom:407.955000px;}
.y38{bottom:416.055000px;}
.y1c{bottom:418.395000px;}
.y81{bottom:419.115000px;}
.y98{bottom:434.415000px;}
.y4e{bottom:438.915000px;}
.y74{bottom:442.155000px;}
.y37{bottom:447.015000px;}
.y1b{bottom:449.535000px;}
.y97{bottom:465.555000px;}
.y80{bottom:469.335000px;}
.y4d{bottom:470.055000px;}
.y73{bottom:473.115000px;}
.y65{bottom:478.155000px;}
.y1a{bottom:480.495000px;}
.y36{bottom:495.795000px;}
.y96{bottom:496.515000px;}
.y4c{bottom:501.015000px;}
.y72{bottom:504.255000px;}
.y64{bottom:509.115000px;}
.y19{bottom:511.635000px;}
.y95{bottom:527.655000px;}
.y4b{bottom:532.155000px;}
.y71{bottom:535.215000px;}
.y63{bottom:540.255000px;}
.y18{bottom:542.595000px;}
.y35{bottom:545.115000px;}
.y94{bottom:558.615000px;}
.y4a{bottom:563.115000px;}
.y70{bottom:566.355000px;}
.y62{bottom:571.215000px;}
.y17{bottom:573.735000px;}
.y34{bottom:576.255000px;}
.y93{bottom:589.755000px;}
.y49{bottom:594.255000px;}
.y6f{bottom:597.315000px;}
.y61{bottom:602.355000px;}
.y16{bottom:604.695000px;}
.y33{bottom:607.215000px;}
.y92{bottom:620.715000px;}
.y48{bottom:625.245000px;}
.y60{bottom:633.345000px;}
.y15{bottom:635.865000px;}
.y32{bottom:638.385000px;}
.y6e{bottom:646.125000px;}
.y91{bottom:651.885000px;}
.y47{bottom:656.385000px;}
.y5f{bottom:664.485000px;}
.ya7{bottom:666.465000px;}
.y14{bottom:666.825000px;}
.y31{bottom:669.345000px;}
.y90{bottom:682.845000px;}
.y46{bottom:687.345000px;}
.y5e{bottom:695.445000px;}
.y13{bottom:697.965000px;}
.ya6{bottom:708.945000px;}
.y8f{bottom:713.985000px;}
.y30{bottom:718.485000px;}
.y5d{bottom:726.585000px;}
.y12{bottom:728.925000px;}
.ya5{bottom:736.485000px;}
.y8e{bottom:744.945000px;}
.y2f{bottom:749.445000px;}
.y6d{bottom:757.545000px;}
.y11{bottom:767.085000px;}
.ya4{bottom:767.445000px;}
.y5c{bottom:775.185000px;}
.y8d{bottom:776.085000px;}
.y2e{bottom:780.585000px;}
.y10{bottom:798.585000px;}
.y6c{bottom:806.325000px;}
.y8c{bottom:811.185000px;}
.y2d{bottom:811.545000px;}
.y5b{bottom:824.685000px;}
.yf{bottom:829.185000px;}
.ya3{bottom:829.545000px;}
.y2c{bottom:842.685000px;}
.y5a{bottom:855.645000px;}
.ye{bottom:860.685000px;}
.y2b{bottom:873.645000px;}
.y59{bottom:886.830000px;}
.yd{bottom:891.330000px;}
.y8b{bottom:891.690000px;}
.y2a{bottom:904.830000px;}
.y58{bottom:917.790000px;}
.yc{bottom:922.830000px;}
.y45{bottom:935.790000px;}
.y57{bottom:948.930000px;}
.yb{bottom:953.430000px;}
.y29{bottom:953.790000px;}
.y44{bottom:966.930000px;}
.y56{bottom:979.890000px;}
.ya{bottom:984.930000px;}
.y7f{bottom:997.530000px;}
.y43{bottom:997.890000px;}
.y55{bottom:1011.030000px;}
.y9{bottom:1015.530000px;}
.y28{bottom:1015.890000px;}
.y42{bottom:1029.030000px;}
.y8{bottom:1046.670000px;}
.y27{bottom:1047.030000px;}
.y54{bottom:1059.630000px;}
.y41{bottom:1059.990000px;}
.y7{bottom:1077.630000px;}
.y26{bottom:1077.990000px;}
.y6{bottom:1108.770000px;}
.y25{bottom:1109.130000px;}
.y2{bottom:1171.260000px;}
.y1{bottom:1215.360000px;}
.h4{height:50.229844px;}
.ha{height:50.273438px;}
.h5{height:50.760000px;}
.hc{height:53.709961px;}
.h3{height:57.948750px;}
.hd{height:65.884219px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.hb{height:74.004654px;}
.h2{height:80.283164px;}
.h9{height:91.177734px;}
.h6{height:95.245664px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:50.040000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:6.810000px;}
.x11{left:127.656000px;}
.x1{left:148.896000px;}
.x10{left:170.130000px;}
.x13{left:181.650000px;}
.x6{left:193.710000px;}
.x2{left:235.110000px;}
.x7{left:250.770000px;}
.xa{left:285.870000px;}
.xe{left:308.235000px;}
.xf{left:312.555000px;}
.xc{left:344.955000px;}
.xb{left:365.115000px;}
.xd{left:428.475000px;}
.x9{left:434.415000px;}
.x12{left:457.815000px;}
.x8{left:499.785000px;}
.x4{left:758.520000px;}
.x3{left:819.510000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000001pt;}
.lsa{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.256000pt;}
.lsb{letter-spacing:88.448000pt;}
.ls8{letter-spacing:120.448000pt;}
.ls1{letter-spacing:169.562880pt;}
.ls7{letter-spacing:172.778667pt;}
.ls6{letter-spacing:172.800000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-169.708373pt;}
._1a{margin-left:-83.100160pt;}
._19{margin-left:-4.096000pt;}
._c{margin-left:-2.752000pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.532160pt;}
._4{width:3.200000pt;}
._3{width:4.416000pt;}
._7{width:5.440000pt;}
._8{width:6.607360pt;}
._9{width:7.936000pt;}
._5{width:9.664000pt;}
._6{width:10.944000pt;}
._f{width:12.480000pt;}
._16{width:13.760000pt;}
._1b{width:14.912000pt;}
._1c{width:16.960000pt;}
._17{width:17.920000pt;}
._26{width:19.520000pt;}
._27{width:20.800000pt;}
._1d{width:21.699840pt;}
._13{width:22.656000pt;}
._14{width:23.552000pt;}
._15{width:24.512000pt;}
._31{width:26.101333pt;}
._32{width:27.001173pt;}
._a{width:28.096000pt;}
._b{width:29.696000pt;}
._29{width:30.698667pt;}
._d{width:32.512000pt;}
._e{width:33.667840pt;}
._23{width:39.040000pt;}
._22{width:40.896000pt;}
._21{width:49.753173pt;}
._10{width:51.520000pt;}
._1f{width:54.762667pt;}
._2a{width:79.470507pt;}
._33{width:94.144000pt;}
._2e{width:112.217173pt;}
._1{width:126.106867pt;}
._24{width:136.490667pt;}
._30{width:142.873173pt;}
._28{width:145.369173pt;}
._2f{width:146.432853pt;}
._1e{width:149.966507pt;}
._18{width:153.849173pt;}
._2b{width:158.873173pt;}
._2c{width:161.226667pt;}
._25{width:165.216000pt;}
._20{width:172.000000pt;}
._11{width:173.600000pt;}
._2d{width:175.818667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:23.680000pt;}
.y3{bottom:27.680000pt;}
.y4{bottom:37.440000pt;}
.y7e{bottom:100.992000pt;}
.y8a{bottom:108.032000pt;}
.ya2{bottom:110.272000pt;}
.y24{bottom:112.512000pt;}
.y53{bottom:121.472000pt;}
.y7d{bottom:128.672000pt;}
.y89{bottom:135.706667pt;}
.ya1{bottom:137.786667pt;}
.y23{bottom:140.026667pt;}
.y40{bottom:148.986667pt;}
.y7c{bottom:156.186667pt;}
.ya0{bottom:165.466667pt;}
.y22{bottom:167.706667pt;}
.y6b{bottom:172.186667pt;}
.y3f{bottom:176.666667pt;}
.y88{bottom:179.226667pt;}
.y7b{bottom:183.866667pt;}
.y9f{bottom:192.986667pt;}
.y6a{bottom:199.866667pt;}
.y3e{bottom:204.186667pt;}
.y87{bottom:206.906667pt;}
.y21{bottom:211.066667pt;}
.y7a{bottom:211.386667pt;}
.y9e{bottom:220.666667pt;}
.y69{bottom:227.386667pt;}
.y3d{bottom:231.866667pt;}
.y86{bottom:234.426667pt;}
.y79{bottom:239.066667pt;}
.y52{bottom:247.546667pt;}
.y9d{bottom:248.186667pt;}
.y20{bottom:254.906667pt;}
.y68{bottom:255.066667pt;}
.y3c{bottom:259.386667pt;}
.y85{bottom:262.106667pt;}
.y78{bottom:266.586667pt;}
.y9c{bottom:275.866667pt;}
.y1f{bottom:282.426667pt;}
.y67{bottom:282.586667pt;}
.y3b{bottom:287.066667pt;}
.y84{bottom:289.626667pt;}
.y51{bottom:291.066667pt;}
.y77{bottom:294.106667pt;}
.y9b{bottom:303.386667pt;}
.y3a{bottom:314.586667pt;}
.y1e{bottom:316.666667pt;}
.y83{bottom:317.306667pt;}
.y76{bottom:321.786667pt;}
.y66{bottom:325.826667pt;}
.y9a{bottom:331.106667pt;}
.y50{bottom:335.106667pt;}
.y39{bottom:342.146667pt;}
.y1d{bottom:344.386667pt;}
.y82{bottom:344.866667pt;}
.y75{bottom:349.346667pt;}
.y99{bottom:358.626667pt;}
.y4f{bottom:362.626667pt;}
.y38{bottom:369.826667pt;}
.y1c{bottom:371.906667pt;}
.y81{bottom:372.546667pt;}
.y98{bottom:386.146667pt;}
.y4e{bottom:390.146667pt;}
.y74{bottom:393.026667pt;}
.y37{bottom:397.346667pt;}
.y1b{bottom:399.586667pt;}
.y97{bottom:413.826667pt;}
.y80{bottom:417.186667pt;}
.y4d{bottom:417.826667pt;}
.y73{bottom:420.546667pt;}
.y65{bottom:425.026667pt;}
.y1a{bottom:427.106667pt;}
.y36{bottom:440.706667pt;}
.y96{bottom:441.346667pt;}
.y4c{bottom:445.346667pt;}
.y72{bottom:448.226667pt;}
.y64{bottom:452.546667pt;}
.y19{bottom:454.786667pt;}
.y95{bottom:469.026667pt;}
.y4b{bottom:473.026667pt;}
.y71{bottom:475.746667pt;}
.y63{bottom:480.226667pt;}
.y18{bottom:482.306667pt;}
.y35{bottom:484.546667pt;}
.y94{bottom:496.546667pt;}
.y4a{bottom:500.546667pt;}
.y70{bottom:503.426667pt;}
.y62{bottom:507.746667pt;}
.y17{bottom:509.986667pt;}
.y34{bottom:512.226667pt;}
.y93{bottom:524.226667pt;}
.y49{bottom:528.226667pt;}
.y6f{bottom:530.946667pt;}
.y61{bottom:535.426667pt;}
.y16{bottom:537.506667pt;}
.y33{bottom:539.746667pt;}
.y92{bottom:551.746667pt;}
.y48{bottom:555.773333pt;}
.y60{bottom:562.973333pt;}
.y15{bottom:565.213333pt;}
.y32{bottom:567.453333pt;}
.y6e{bottom:574.333333pt;}
.y91{bottom:579.453333pt;}
.y47{bottom:583.453333pt;}
.y5f{bottom:590.653333pt;}
.ya7{bottom:592.413333pt;}
.y14{bottom:592.733333pt;}
.y31{bottom:594.973333pt;}
.y90{bottom:606.973333pt;}
.y46{bottom:610.973333pt;}
.y5e{bottom:618.173333pt;}
.y13{bottom:620.413333pt;}
.ya6{bottom:630.173333pt;}
.y8f{bottom:634.653333pt;}
.y30{bottom:638.653333pt;}
.y5d{bottom:645.853333pt;}
.y12{bottom:647.933333pt;}
.ya5{bottom:654.653333pt;}
.y8e{bottom:662.173333pt;}
.y2f{bottom:666.173333pt;}
.y6d{bottom:673.373333pt;}
.y11{bottom:681.853333pt;}
.ya4{bottom:682.173333pt;}
.y5c{bottom:689.053333pt;}
.y8d{bottom:689.853333pt;}
.y2e{bottom:693.853333pt;}
.y10{bottom:709.853333pt;}
.y6c{bottom:716.733333pt;}
.y8c{bottom:721.053333pt;}
.y2d{bottom:721.373333pt;}
.y5b{bottom:733.053333pt;}
.yf{bottom:737.053333pt;}
.ya3{bottom:737.373333pt;}
.y2c{bottom:749.053333pt;}
.y5a{bottom:760.573333pt;}
.ye{bottom:765.053333pt;}
.y2b{bottom:776.573333pt;}
.y59{bottom:788.293333pt;}
.yd{bottom:792.293333pt;}
.y8b{bottom:792.613333pt;}
.y2a{bottom:804.293333pt;}
.y58{bottom:815.813333pt;}
.yc{bottom:820.293333pt;}
.y45{bottom:831.813333pt;}
.y57{bottom:843.493333pt;}
.yb{bottom:847.493333pt;}
.y29{bottom:847.813333pt;}
.y44{bottom:859.493333pt;}
.y56{bottom:871.013333pt;}
.ya{bottom:875.493333pt;}
.y7f{bottom:886.693333pt;}
.y43{bottom:887.013333pt;}
.y55{bottom:898.693333pt;}
.y9{bottom:902.693333pt;}
.y28{bottom:903.013333pt;}
.y42{bottom:914.693333pt;}
.y8{bottom:930.373333pt;}
.y27{bottom:930.693333pt;}
.y54{bottom:941.893333pt;}
.y41{bottom:942.213333pt;}
.y7{bottom:957.893333pt;}
.y26{bottom:958.213333pt;}
.y6{bottom:985.573333pt;}
.y25{bottom:985.893333pt;}
.y2{bottom:1041.120000pt;}
.y1{bottom:1080.320000pt;}
.h4{height:44.648750pt;}
.ha{height:44.687500pt;}
.h5{height:45.120000pt;}
.hc{height:47.742188pt;}
.h3{height:51.510000pt;}
.hd{height:58.563750pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.hb{height:65.781915pt;}
.h2{height:71.362813pt;}
.h9{height:81.046875pt;}
.h6{height:84.662813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.480000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.053333pt;}
.x11{left:113.472000pt;}
.x1{left:132.352000pt;}
.x10{left:151.226667pt;}
.x13{left:161.466667pt;}
.x6{left:172.186667pt;}
.x2{left:208.986667pt;}
.x7{left:222.906667pt;}
.xa{left:254.106667pt;}
.xe{left:273.986667pt;}
.xf{left:277.826667pt;}
.xc{left:306.626667pt;}
.xb{left:324.546667pt;}
.xd{left:380.866667pt;}
.x9{left:386.146667pt;}
.x12{left:406.946667pt;}
.x8{left:444.253333pt;}
.x4{left:674.240000pt;}
.x3{left:728.453333pt;}
}




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