
    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_0a92f1f150fae4f08ac11732.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_00e4dc6cf4f787ad901a61b3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_300916da9baf804545c62a92.woff')format("woff");}.ff3{font-family:ff3;line-height:0.751465;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_607d08ac97b868e4d0a21866.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2cd4b0a5770293567b3c3a4a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1538bb56b0c769fa23cc7dbb.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d1bfa393347f08e462f4401e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6de4db46a2834fc095f6bbac.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c61a74c16bb65c37cec4e4b4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_f8475a7a057347454ea92dc3.woff')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-75.780000px;}
.v1{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.085200px;}
.ls5{letter-spacing:-0.010800px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012960px;}
.ls7{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.708000px;}
.ls8{letter-spacing:0.720000px;}
.ls10{letter-spacing:17.424000px;}
.ls1{letter-spacing:30.780000px;}
.ls3{letter-spacing:31.104000px;}
.lse{letter-spacing:53.424000px;}
.ls2{letter-spacing:621.336000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws0{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.432000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws1{word-spacing:-17.280000px;}
.ws5{word-spacing:-10.527600px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.010880px;}
._1{width:1.037280px;}
._2{width:2.077920px;}
._7{width:3.263520px;}
._8{width:4.440480px;}
._9{width:5.832000px;}
._3{width:7.092000px;}
._4{width:9.024000px;}
._b{width:10.704000px;}
._f{width:11.834880px;}
._6{width:13.536000px;}
._5{width:14.544000px;}
._c{width:15.744480px;}
._a{width:16.776000px;}
._13{width:19.656000px;}
._12{width:21.530880px;}
._d{width:22.608000px;}
._e{width:23.658720px;}
._15{width:25.056000px;}
._1c{width:26.928000px;}
._18{width:28.152000px;}
._10{width:29.808000px;}
._11{width:30.960000px;}
._14{width:32.256000px;}
._19{width:33.768000px;}
._1a{width:34.818720px;}
._1f{width:37.944000px;}
._20{width:39.096000px;}
._17{width:46.010880px;}
._16{width:47.160000px;}
._1d{width:54.288000px;}
._1e{width:55.908000px;}
._1b{width:63.434880px;}
.fc1{color:transparent;}
.fc2{color:rgb(85,85,85);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs3{font-size:9.360000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.fs8{font-size:120.240000px;}
.y36{bottom:-12.060000px;}
.y0{bottom:0.000000px;}
.y35{bottom:3.240000px;}
.y5{bottom:8.640000px;}
.y34{bottom:11.880000px;}
.y4{bottom:26.460000px;}
.y3{bottom:44.100000px;}
.y2{bottom:63.180000px;}
.y51{bottom:82.116000px;}
.y96{bottom:83.376000px;}
.y6e{bottom:94.716000px;}
.y95{bottom:104.076000px;}
.y43{bottom:105.876000px;}
.y50{bottom:107.856000px;}
.y32{bottom:111.996000px;}
.y6d{bottom:115.416000px;}
.y94{bottom:124.776000px;}
.y42{bottom:131.616000px;}
.y31{bottom:132.696000px;}
.y6c{bottom:136.116000px;}
.y93{bottom:154.470000px;}
.y30{bottom:162.390000px;}
.y6b{bottom:165.810000px;}
.y92{bottom:175.170000px;}
.y6a{bottom:186.510000px;}
.y2f{bottom:191.910000px;}
.y91{bottom:195.870000px;}
.y69{bottom:207.210000px;}
.y2e{bottom:212.610000px;}
.y90{bottom:216.570000px;}
.y68{bottom:227.910000px;}
.y2d{bottom:233.310000px;}
.y8f{bottom:246.270000px;}
.y67{bottom:248.610000px;}
.y2c{bottom:254.010000px;}
.y8e{bottom:266.970000px;}
.y66{bottom:269.310000px;}
.y2b{bottom:274.710000px;}
.y8d{bottom:287.670000px;}
.y65{bottom:290.010000px;}
.y2a{bottom:295.410000px;}
.y64{bottom:310.710000px;}
.y29{bottom:316.110000px;}
.y8c{bottom:317.370000px;}
.y63{bottom:331.410000px;}
.y28{bottom:336.810000px;}
.y8b{bottom:338.115000px;}
.y62{bottom:352.155000px;}
.y27{bottom:357.555000px;}
.y8a{bottom:358.815000px;}
.y61{bottom:372.855000px;}
.y26{bottom:378.255000px;}
.y89{bottom:388.515000px;}
.y60{bottom:393.555000px;}
.y25{bottom:398.955000px;}
.y88{bottom:409.215000px;}
.y5f{bottom:414.255000px;}
.y24{bottom:428.655000px;}
.y87{bottom:429.915000px;}
.y5e{bottom:434.955000px;}
.y41{bottom:437.115000px;}
.y23{bottom:449.355000px;}
.y40{bottom:457.815000px;}
.y86{bottom:459.615000px;}
.y5d{bottom:464.655000px;}
.y22{bottom:470.055000px;}
.y3f{bottom:478.515000px;}
.y85{bottom:480.315000px;}
.y21{bottom:490.755000px;}
.y5c{bottom:494.355000px;}
.y84{bottom:501.015000px;}
.y3e{bottom:508.215000px;}
.y20{bottom:511.455000px;}
.y5b{bottom:519.915000px;}
.y83{bottom:530.715000px;}
.y1f{bottom:532.155000px;}
.y3d{bottom:537.915000px;}
.y82{bottom:551.415000px;}
.y1e{bottom:552.855000px;}
.y4f{bottom:555.195000px;}
.y3c{bottom:563.655000px;}
.y81{bottom:572.115000px;}
.y1d{bottom:573.555000px;}
.y4e{bottom:575.895000px;}
.y1c{bottom:594.255000px;}
.y4d{bottom:596.595000px;}
.y80{bottom:601.815000px;}
.y4c{bottom:617.325000px;}
.y7f{bottom:622.545000px;}
.y1b{bottom:623.985000px;}
.y4b{bottom:638.025000px;}
.y7e{bottom:643.245000px;}
.y1a{bottom:652.425000px;}
.y4a{bottom:658.725000px;}
.y7d{bottom:672.945000px;}
.y49{bottom:679.425000px;}
.y19{bottom:693.465000px;}
.y7c{bottom:693.645000px;}
.y48{bottom:700.125000px;}
.y7b{bottom:714.345000px;}
.y47{bottom:720.825000px;}
.y18{bottom:723.165000px;}
.y46{bottom:741.525000px;}
.y17{bottom:743.865000px;}
.y7a{bottom:744.045000px;}
.y16{bottom:764.565000px;}
.y45{bottom:771.225000px;}
.y79{bottom:773.745000px;}
.y15{bottom:785.265000px;}
.y44{bottom:787.965000px;}
.y78{bottom:794.445000px;}
.y14{bottom:805.965000px;}
.y77{bottom:815.145000px;}
.y13{bottom:826.665000px;}
.y76{bottom:835.845000px;}
.y12{bottom:847.365000px;}
.y75{bottom:856.545000px;}
.y9d{bottom:874.590000px;}
.y74{bottom:877.290000px;}
.y11{bottom:886.650000px;}
.y9c{bottom:904.290000px;}
.y10{bottom:905.910000px;}
.y73{bottom:906.990000px;}
.y5a{bottom:922.290000px;}
.y9b{bottom:924.990000px;}
.yf{bottom:926.610000px;}
.y72{bottom:936.690000px;}
.y59{bottom:942.990000px;}
.y9a{bottom:945.690000px;}
.ye{bottom:945.870000px;}
.y71{bottom:957.390000px;}
.y58{bottom:963.690000px;}
.y99{bottom:966.390000px;}
.yd{bottom:970.170000px;}
.y57{bottom:984.390000px;}
.y70{bottom:987.090000px;}
.yc{bottom:990.870000px;}
.y98{bottom:996.090000px;}
.y56{bottom:1005.090000px;}
.yb{bottom:1014.450000px;}
.y6f{bottom:1016.790000px;}
.y55{bottom:1025.790000px;}
.y97{bottom:1037.490000px;}
.y54{bottom:1046.490000px;}
.ya{bottom:1048.650000px;}
.y3b{bottom:1058.190000px;}
.y53{bottom:1067.190000px;}
.y3a{bottom:1078.890000px;}
.y9{bottom:1082.670000px;}
.y52{bottom:1087.890000px;}
.y39{bottom:1108.590000px;}
.y8{bottom:1112.550000px;}
.y7{bottom:1126.050000px;}
.y6{bottom:1128.750000px;}
.y38{bottom:1129.290000px;}
.y1{bottom:1145.340000px;}
.y33{bottom:1174.680000px;}
.y37{bottom:1188.360000px;}
.h6{height:9.186328px;}
.h12{height:16.020000px;}
.h10{height:23.220000px;}
.h13{height:40.843828px;}
.h7{height:47.344922px;}
.h14{height:50.273438px;}
.h4{height:50.597578px;}
.h11{height:56.084062px;}
.h5{height:58.651172px;}
.hc{height:66.757500px;}
.ha{height:70.628906px;}
.hd{height:70.664062px;}
.h3{height:71.324297px;}
.hb{height:72.562500px;}
.hf{height:74.004654px;}
.h2{height:83.160000px;}
.h9{height:105.996094px;}
.h8{height:108.843750px;}
.he{height:121.179375px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:77.256000px;}
.w2{width:688.245000px;}
.w4{width:696.930000px;}
.w1{width:893.250000px;}
.w3{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.xa{left:54.000000px;}
.xc{left:63.930000px;}
.xd{left:77.250000px;}
.x4{left:84.995987px;}
.x1{left:86.616000px;}
.x5{left:95.615987px;}
.x7{left:179.489987px;}
.x8{left:180.749987px;}
.x9{left:207.749987px;}
.x18{left:212.609987px;}
.x6{left:219.989987px;}
.xf{left:334.874987px;}
.x13{left:390.854987px;}
.x17{left:394.094987px;}
.x11{left:411.374987px;}
.x15{left:442.364987px;}
.x14{left:636.449987px;}
.x12{left:735.449987px;}
.xb{left:763.350000px;}
.x10{left:768.029987px;}
.x16{left:789.449987px;}
.xe{left:798.479987px;}
.x3{left:872.639987px;}
@media print{
.v2{vertical-align:-67.360000pt;}
.v1{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.075733pt;}
.ls5{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011520pt;}
.ls7{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.629333pt;}
.ls8{letter-spacing:0.640000pt;}
.ls10{letter-spacing:15.488000pt;}
.ls1{letter-spacing:27.360000pt;}
.ls3{letter-spacing:27.648000pt;}
.lse{letter-spacing:47.488000pt;}
.ls2{letter-spacing:552.298667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws0{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.384000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws1{word-spacing:-15.360000pt;}
.ws5{word-spacing:-9.357867pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.922027pt;}
._2{width:1.847040pt;}
._7{width:2.900907pt;}
._8{width:3.947093pt;}
._9{width:5.184000pt;}
._3{width:6.304000pt;}
._4{width:8.021333pt;}
._b{width:9.514667pt;}
._f{width:10.519893pt;}
._6{width:12.032000pt;}
._5{width:12.928000pt;}
._c{width:13.995093pt;}
._a{width:14.912000pt;}
._13{width:17.472000pt;}
._12{width:19.138560pt;}
._d{width:20.096000pt;}
._e{width:21.029973pt;}
._15{width:22.272000pt;}
._1c{width:23.936000pt;}
._18{width:25.024000pt;}
._10{width:26.496000pt;}
._11{width:27.520000pt;}
._14{width:28.672000pt;}
._19{width:30.016000pt;}
._1a{width:30.949973pt;}
._1f{width:33.728000pt;}
._20{width:34.752000pt;}
._17{width:40.898560pt;}
._16{width:41.920000pt;}
._1d{width:48.256000pt;}
._1e{width:49.696000pt;}
._1b{width:56.386560pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:8.320000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.fs8{font-size:106.880000pt;}
.y36{bottom:-10.720000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:2.880000pt;}
.y5{bottom:7.680000pt;}
.y34{bottom:10.560000pt;}
.y4{bottom:23.520000pt;}
.y3{bottom:39.200000pt;}
.y2{bottom:56.160000pt;}
.y51{bottom:72.992000pt;}
.y96{bottom:74.112000pt;}
.y6e{bottom:84.192000pt;}
.y95{bottom:92.512000pt;}
.y43{bottom:94.112000pt;}
.y50{bottom:95.872000pt;}
.y32{bottom:99.552000pt;}
.y6d{bottom:102.592000pt;}
.y94{bottom:110.912000pt;}
.y42{bottom:116.992000pt;}
.y31{bottom:117.952000pt;}
.y6c{bottom:120.992000pt;}
.y93{bottom:137.306667pt;}
.y30{bottom:144.346667pt;}
.y6b{bottom:147.386667pt;}
.y92{bottom:155.706667pt;}
.y6a{bottom:165.786667pt;}
.y2f{bottom:170.586667pt;}
.y91{bottom:174.106667pt;}
.y69{bottom:184.186667pt;}
.y2e{bottom:188.986667pt;}
.y90{bottom:192.506667pt;}
.y68{bottom:202.586667pt;}
.y2d{bottom:207.386667pt;}
.y8f{bottom:218.906667pt;}
.y67{bottom:220.986667pt;}
.y2c{bottom:225.786667pt;}
.y8e{bottom:237.306667pt;}
.y66{bottom:239.386667pt;}
.y2b{bottom:244.186667pt;}
.y8d{bottom:255.706667pt;}
.y65{bottom:257.786667pt;}
.y2a{bottom:262.586667pt;}
.y64{bottom:276.186667pt;}
.y29{bottom:280.986667pt;}
.y8c{bottom:282.106667pt;}
.y63{bottom:294.586667pt;}
.y28{bottom:299.386667pt;}
.y8b{bottom:300.546667pt;}
.y62{bottom:313.026667pt;}
.y27{bottom:317.826667pt;}
.y8a{bottom:318.946667pt;}
.y61{bottom:331.426667pt;}
.y26{bottom:336.226667pt;}
.y89{bottom:345.346667pt;}
.y60{bottom:349.826667pt;}
.y25{bottom:354.626667pt;}
.y88{bottom:363.746667pt;}
.y5f{bottom:368.226667pt;}
.y24{bottom:381.026667pt;}
.y87{bottom:382.146667pt;}
.y5e{bottom:386.626667pt;}
.y41{bottom:388.546667pt;}
.y23{bottom:399.426667pt;}
.y40{bottom:406.946667pt;}
.y86{bottom:408.546667pt;}
.y5d{bottom:413.026667pt;}
.y22{bottom:417.826667pt;}
.y3f{bottom:425.346667pt;}
.y85{bottom:426.946667pt;}
.y21{bottom:436.226667pt;}
.y5c{bottom:439.426667pt;}
.y84{bottom:445.346667pt;}
.y3e{bottom:451.746667pt;}
.y20{bottom:454.626667pt;}
.y5b{bottom:462.146667pt;}
.y83{bottom:471.746667pt;}
.y1f{bottom:473.026667pt;}
.y3d{bottom:478.146667pt;}
.y82{bottom:490.146667pt;}
.y1e{bottom:491.426667pt;}
.y4f{bottom:493.506667pt;}
.y3c{bottom:501.026667pt;}
.y81{bottom:508.546667pt;}
.y1d{bottom:509.826667pt;}
.y4e{bottom:511.906667pt;}
.y1c{bottom:528.226667pt;}
.y4d{bottom:530.306667pt;}
.y80{bottom:534.946667pt;}
.y4c{bottom:548.733333pt;}
.y7f{bottom:553.373333pt;}
.y1b{bottom:554.653333pt;}
.y4b{bottom:567.133333pt;}
.y7e{bottom:571.773333pt;}
.y1a{bottom:579.933333pt;}
.y4a{bottom:585.533333pt;}
.y7d{bottom:598.173333pt;}
.y49{bottom:603.933333pt;}
.y19{bottom:616.413333pt;}
.y7c{bottom:616.573333pt;}
.y48{bottom:622.333333pt;}
.y7b{bottom:634.973333pt;}
.y47{bottom:640.733333pt;}
.y18{bottom:642.813333pt;}
.y46{bottom:659.133333pt;}
.y17{bottom:661.213333pt;}
.y7a{bottom:661.373333pt;}
.y16{bottom:679.613333pt;}
.y45{bottom:685.533333pt;}
.y79{bottom:687.773333pt;}
.y15{bottom:698.013333pt;}
.y44{bottom:700.413333pt;}
.y78{bottom:706.173333pt;}
.y14{bottom:716.413333pt;}
.y77{bottom:724.573333pt;}
.y13{bottom:734.813333pt;}
.y76{bottom:742.973333pt;}
.y12{bottom:753.213333pt;}
.y75{bottom:761.373333pt;}
.y9d{bottom:777.413333pt;}
.y74{bottom:779.813333pt;}
.y11{bottom:788.133333pt;}
.y9c{bottom:803.813333pt;}
.y10{bottom:805.253333pt;}
.y73{bottom:806.213333pt;}
.y5a{bottom:819.813333pt;}
.y9b{bottom:822.213333pt;}
.yf{bottom:823.653333pt;}
.y72{bottom:832.613333pt;}
.y59{bottom:838.213333pt;}
.y9a{bottom:840.613333pt;}
.ye{bottom:840.773333pt;}
.y71{bottom:851.013333pt;}
.y58{bottom:856.613333pt;}
.y99{bottom:859.013333pt;}
.yd{bottom:862.373333pt;}
.y57{bottom:875.013333pt;}
.y70{bottom:877.413333pt;}
.yc{bottom:880.773333pt;}
.y98{bottom:885.413333pt;}
.y56{bottom:893.413333pt;}
.yb{bottom:901.733333pt;}
.y6f{bottom:903.813333pt;}
.y55{bottom:911.813333pt;}
.y97{bottom:922.213333pt;}
.y54{bottom:930.213333pt;}
.ya{bottom:932.133333pt;}
.y3b{bottom:940.613333pt;}
.y53{bottom:948.613333pt;}
.y3a{bottom:959.013333pt;}
.y9{bottom:962.373333pt;}
.y52{bottom:967.013333pt;}
.y39{bottom:985.413333pt;}
.y8{bottom:988.933333pt;}
.y7{bottom:1000.933333pt;}
.y6{bottom:1003.333333pt;}
.y38{bottom:1003.813333pt;}
.y1{bottom:1018.080000pt;}
.y33{bottom:1044.160000pt;}
.y37{bottom:1056.320000pt;}
.h6{height:8.165625pt;}
.h12{height:14.240000pt;}
.h10{height:20.640000pt;}
.h13{height:36.305625pt;}
.h7{height:42.084375pt;}
.h14{height:44.687500pt;}
.h4{height:44.975625pt;}
.h11{height:49.852500pt;}
.h5{height:52.134375pt;}
.hc{height:59.340000pt;}
.ha{height:62.781250pt;}
.hd{height:62.812500pt;}
.h3{height:63.399375pt;}
.hb{height:64.500000pt;}
.hf{height:65.781915pt;}
.h2{height:73.920000pt;}
.h9{height:94.218750pt;}
.h8{height:96.750000pt;}
.he{height:107.715000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:68.672000pt;}
.w2{width:611.773333pt;}
.w4{width:619.493333pt;}
.w1{width:794.000000pt;}
.w3{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.xa{left:48.000000pt;}
.xc{left:56.826667pt;}
.xd{left:68.666667pt;}
.x4{left:75.551988pt;}
.x1{left:76.992000pt;}
.x5{left:84.991988pt;}
.x7{left:159.546655pt;}
.x8{left:160.666655pt;}
.x9{left:184.666655pt;}
.x18{left:188.986655pt;}
.x6{left:195.546655pt;}
.xf{left:297.666655pt;}
.x13{left:347.426655pt;}
.x17{left:350.306655pt;}
.x11{left:365.666655pt;}
.x15{left:393.213321pt;}
.x14{left:565.733322pt;}
.x12{left:653.733321pt;}
.xb{left:678.533333pt;}
.x10{left:682.693322pt;}
.x16{left:701.733321pt;}
.xe{left:709.759988pt;}
.x3{left:775.679988pt;}
}




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