
    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_1e7122a4b54873cf1af145c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.179199;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_dd356780a0fc76a98682a915.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133000;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_264600f228c2d0c80b0d2301.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.179199;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_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0d0d40ff712921d029a79c57.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-1.050000px;}
.ls19{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.328200px;}
.ls2{letter-spacing:-0.322800px;}
.lsb{letter-spacing:-0.276600px;}
.ls10{letter-spacing:-0.247800px;}
.ls3{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.132600px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.035280px;}
.ls4{letter-spacing:0.087840px;}
.lsc{letter-spacing:0.096480px;}
.ls15{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.195600px;}
.ls12{letter-spacing:0.195840px;}
.lsa{letter-spacing:0.230400px;}
.ls17{letter-spacing:0.466560px;}
.ls11{letter-spacing:31.345920px;}
.ls7{letter-spacing:33.505920px;}
.ls13{letter-spacing:34.945920px;}
.ls6{letter-spacing:46.465920px;}
.lse{letter-spacing:55.386720px;}
.ls8{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc4{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);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,153),0 0.015em rgb(0,0,153),0.015em 0 rgb(0,0,153),0 -0.015em  rgb(0,0,153);}
.sc2{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc1{text-shadow:-0.015em 0 rgb(22,33,91),0 0.015em rgb(22,33,91),0.015em 0 rgb(22,33,91),0 -0.015em  rgb(22,33,91);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,153);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(22,33,91);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-59.760000px;}
.ws2{word-spacing:-20.232000px;}
.ws5{word-spacing:-18.034560px;}
.ws3{word-spacing:-17.948160px;}
.ws4{word-spacing:-17.936760px;}
.ws9{word-spacing:-17.913360px;}
.ws8{word-spacing:-17.804160px;}
.wsa{word-spacing:-17.671560px;}
.ws6{word-spacing:-17.527560px;}
.wsb{word-spacing:-17.228160px;}
.ws1{word-spacing:-14.364720px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.153440px;}
._1{width:1.031040px;}
._4{width:530.057280px;}
._5{width:548.040480px;}
._2{width:823.836000px;}
._3{width:846.495840px;}
.fc4{color:rgb(0,0,153);}
.fc3{color:rgb(0,32,96);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(22,33,91);}
.fs4{font-size:51.120000px;}
.fs5{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs8{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs6{font-size:144.000000px;}
.fs1{font-size:192.240000px;}
.yb7{bottom:-9.540000px;}
.yb2{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:6.660000px;}
.yb9{bottom:8.145000px;}
.yb1{bottom:16.560000px;}
.y2{bottom:23.400000px;}
.yb5{bottom:28.620000px;}
.y24{bottom:44.100000px;}
.yb4{bottom:50.580000px;}
.y23{bottom:73.440000px;}
.y22{bottom:95.400000px;}
.yab{bottom:124.380000px;}
.y20{bottom:133.560000px;}
.y92{bottom:133.920000px;}
.y65{bottom:138.240000px;}
.yaa{bottom:146.340000px;}
.y91{bottom:155.880000px;}
.y1f{bottom:158.580000px;}
.y64{bottom:160.200000px;}
.ya9{bottom:168.300000px;}
.y90{bottom:177.840000px;}
.y63{bottom:182.160000px;}
.y1e{bottom:183.780000px;}
.ya8{bottom:190.080000px;}
.y8f{bottom:199.620000px;}
.y62{bottom:203.940000px;}
.y1d{bottom:208.800000px;}
.ya7{bottom:212.070000px;}
.y8e{bottom:221.610000px;}
.y61{bottom:225.930000px;}
.y1c{bottom:233.850000px;}
.ya6{bottom:234.030000px;}
.y8d{bottom:243.570000px;}
.ya5{bottom:255.990000px;}
.y1b{bottom:258.870000px;}
.y8c{bottom:265.530000px;}
.y60{bottom:265.890000px;}
.yb0{bottom:268.590000px;}
.ya4{bottom:277.770000px;}
.y1a{bottom:283.890000px;}
.y8b{bottom:287.310000px;}
.y5f{bottom:287.850000px;}
.ya3{bottom:299.730000px;}
.y19{bottom:308.910000px;}
.y8a{bottom:309.270000px;}
.y5e{bottom:309.630000px;}
.ya2{bottom:321.690000px;}
.y89{bottom:331.230000px;}
.y5d{bottom:331.590000px;}
.y18{bottom:333.930000px;}
.ya1{bottom:343.650000px;}
.y88{bottom:353.190000px;}
.y5c{bottom:353.550000px;}
.y17{bottom:359.130000px;}
.ya0{bottom:365.430000px;}
.y87{bottom:374.970000px;}
.y5b{bottom:375.510000px;}
.y16{bottom:384.150000px;}
.y9f{bottom:387.390000px;}
.y86{bottom:396.930000px;}
.y5a{bottom:397.290000px;}
.y15{bottom:409.170000px;}
.y9e{bottom:409.350000px;}
.y3c{bottom:411.150000px;}
.y85{bottom:418.890000px;}
.y59{bottom:419.250000px;}
.y9d{bottom:431.310000px;}
.y14{bottom:434.190000px;}
.yb8{bottom:440.310000px;}
.y84{bottom:440.850000px;}
.y58{bottom:441.210000px;}
.y9c{bottom:453.135000px;}
.y13{bottom:459.255000px;}
.y3b{bottom:460.875000px;}
.y83{bottom:462.675000px;}
.y57{bottom:463.215000px;}
.y9b{bottom:475.095000px;}
.y12{bottom:484.275000px;}
.y82{bottom:484.635000px;}
.y56{bottom:484.995000px;}
.y9a{bottom:497.055000px;}
.y81{bottom:506.595000px;}
.y55{bottom:506.955000px;}
.y11{bottom:509.295000px;}
.y3a{bottom:512.895000px;}
.y99{bottom:519.015000px;}
.y80{bottom:528.555000px;}
.y54{bottom:528.915000px;}
.y10{bottom:534.495000px;}
.y39{bottom:537.915000px;}
.y98{bottom:540.795000px;}
.y7f{bottom:550.515000px;}
.y53{bottom:550.875000px;}
.yf{bottom:558.435000px;}
.y97{bottom:562.755000px;}
.y38{bottom:562.935000px;}
.y7e{bottom:572.295000px;}
.y52{bottom:572.655000px;}
.yaf{bottom:574.455000px;}
.ye{bottom:580.395000px;}
.y96{bottom:584.715000px;}
.y37{bottom:587.955000px;}
.y7d{bottom:594.255000px;}
.y51{bottom:594.615000px;}
.yae{bottom:594.795000px;}
.yd{bottom:605.055000px;}
.y36{bottom:612.975000px;}
.y7c{bottom:616.215000px;}
.y50{bottom:616.575000px;}
.y95{bottom:624.675000px;}
.yc{bottom:634.575000px;}
.y35{bottom:637.995000px;}
.y7b{bottom:638.175000px;}
.y4f{bottom:638.535000px;}
.y94{bottom:643.755000px;}
.y7a{bottom:659.955000px;}
.y4e{bottom:660.315000px;}
.y93{bottom:662.835000px;}
.yb{bottom:663.915000px;}
.y34{bottom:664.455000px;}
.y79{bottom:681.945000px;}
.y4d{bottom:682.305000px;}
.y33{bottom:688.425000px;}
.ya{bottom:693.465000px;}
.y78{bottom:703.905000px;}
.y4c{bottom:704.265000px;}
.y77{bottom:725.865000px;}
.y4b{bottom:726.225000px;}
.y9{bottom:728.565000px;}
.y76{bottom:747.645000px;}
.y4a{bottom:748.005000px;}
.y8{bottom:757.725000px;}
.y75{bottom:769.605000px;}
.y49{bottom:769.965000px;}
.y32{bottom:770.505000px;}
.y74{bottom:791.565000px;}
.y48{bottom:791.925000px;}
.y31{bottom:795.705000px;}
.y73{bottom:813.525000px;}
.y47{bottom:813.885000px;}
.y7{bottom:814.245000px;}
.y30{bottom:820.725000px;}
.y72{bottom:835.305000px;}
.y46{bottom:835.665000px;}
.y2f{bottom:845.745000px;}
.y71{bottom:857.265000px;}
.y45{bottom:857.625000px;}
.y2e{bottom:870.765000px;}
.y6{bottom:877.245000px;}
.y70{bottom:879.225000px;}
.y44{bottom:879.585000px;}
.y2d{bottom:895.785000px;}
.y6f{bottom:901.185000px;}
.y43{bottom:901.545000px;}
.y2c{bottom:920.850000px;}
.y6e{bottom:923.010000px;}
.y42{bottom:923.370000px;}
.y5{bottom:935.790000px;}
.y6d{bottom:944.970000px;}
.y41{bottom:945.330000px;}
.y2b{bottom:945.870000px;}
.y6c{bottom:966.930000px;}
.y40{bottom:967.290000px;}
.y2a{bottom:971.070000px;}
.y6b{bottom:988.890000px;}
.y3f{bottom:989.250000px;}
.yad{bottom:991.590000px;}
.y4{bottom:994.290000px;}
.y29{bottom:996.090000px;}
.y6a{bottom:1010.670000px;}
.yac{bottom:1014.990000px;}
.y28{bottom:1021.110000px;}
.y3e{bottom:1028.670000px;}
.y69{bottom:1032.630000px;}
.yb3{bottom:1041.450000px;}
.y27{bottom:1046.130000px;}
.y3{bottom:1052.790000px;}
.y68{bottom:1054.590000px;}
.y26{bottom:1071.150000px;}
.y67{bottom:1076.550000px;}
.y3d{bottom:1078.710000px;}
.y25{bottom:1096.170000px;}
.y66{bottom:1098.330000px;}
.y1{bottom:1102.110000px;}
.y21{bottom:1153.980000px;}
.hd{height:23.436000px;}
.hc{height:51.300000px;}
.h7{height:54.796992px;}
.h2{height:61.039687px;}
.hb{height:65.880000px;}
.h9{height:66.588750px;}
.h6{height:69.363281px;}
.h4{height:81.155039px;}
.h5{height:83.787539px;}
.h8{height:138.726562px;}
.ha{height:165.060000px;}
.h3{height:178.975440px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:133.956000px;}
.w3{width:216.570000px;}
.w5{width:568.905000px;}
.w4{width:795.600000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:10.800000px;}
.xe{left:13.356000px;}
.x3{left:63.719987px;}
.xc{left:75.600000px;}
.x6{left:90.755987px;}
.x7{left:117.755987px;}
.x8{left:144.755987px;}
.x10{left:219.630000px;}
.x4{left:263.954987px;}
.x5{left:301.394987px;}
.xd{left:341.535000px;}
.xf{left:344.955000px;}
.xa{left:356.835000px;}
.x12{left:396.615000px;}
.x1{left:490.784987px;}
.x11{left:517.440000px;}
.x2{left:823.139987px;}
.x9{left:839.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.933333pt;}
.ls19{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.291733pt;}
.ls2{letter-spacing:-0.286933pt;}
.lsb{letter-spacing:-0.245867pt;}
.ls10{letter-spacing:-0.220267pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.117867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.031360pt;}
.ls4{letter-spacing:0.078080pt;}
.lsc{letter-spacing:0.085760pt;}
.ls15{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.173867pt;}
.ls12{letter-spacing:0.174080pt;}
.lsa{letter-spacing:0.204800pt;}
.ls17{letter-spacing:0.414720pt;}
.ls11{letter-spacing:27.863040pt;}
.ls7{letter-spacing:29.783040pt;}
.ls13{letter-spacing:31.063040pt;}
.ls6{letter-spacing:41.303040pt;}
.lse{letter-spacing:49.232640pt;}
.ls8{letter-spacing:56.912640pt;}
.ws7{word-spacing:-53.120000pt;}
.ws2{word-spacing:-17.984000pt;}
.ws5{word-spacing:-16.030720pt;}
.ws3{word-spacing:-15.953920pt;}
.ws4{word-spacing:-15.943787pt;}
.ws9{word-spacing:-15.922987pt;}
.ws8{word-spacing:-15.825920pt;}
.wsa{word-spacing:-15.708053pt;}
.ws6{word-spacing:-15.580053pt;}
.wsb{word-spacing:-15.313920pt;}
.ws1{word-spacing:-12.768640pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.025280pt;}
._1{width:0.916480pt;}
._4{width:471.162027pt;}
._5{width:487.147093pt;}
._2{width:732.298667pt;}
._3{width:752.440747pt;}
.fs4{font-size:45.440000pt;}
.fs5{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs8{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs6{font-size:128.000000pt;}
.fs1{font-size:170.880000pt;}
.yb7{bottom:-8.480000pt;}
.yb2{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:5.920000pt;}
.yb9{bottom:7.240000pt;}
.yb1{bottom:14.720000pt;}
.y2{bottom:20.800000pt;}
.yb5{bottom:25.440000pt;}
.y24{bottom:39.200000pt;}
.yb4{bottom:44.960000pt;}
.y23{bottom:65.280000pt;}
.y22{bottom:84.800000pt;}
.yab{bottom:110.560000pt;}
.y20{bottom:118.720000pt;}
.y92{bottom:119.040000pt;}
.y65{bottom:122.880000pt;}
.yaa{bottom:130.080000pt;}
.y91{bottom:138.560000pt;}
.y1f{bottom:140.960000pt;}
.y64{bottom:142.400000pt;}
.ya9{bottom:149.600000pt;}
.y90{bottom:158.080000pt;}
.y63{bottom:161.920000pt;}
.y1e{bottom:163.360000pt;}
.ya8{bottom:168.960000pt;}
.y8f{bottom:177.440000pt;}
.y62{bottom:181.280000pt;}
.y1d{bottom:185.600000pt;}
.ya7{bottom:188.506667pt;}
.y8e{bottom:196.986667pt;}
.y61{bottom:200.826667pt;}
.y1c{bottom:207.866667pt;}
.ya6{bottom:208.026667pt;}
.y8d{bottom:216.506667pt;}
.ya5{bottom:227.546667pt;}
.y1b{bottom:230.106667pt;}
.y8c{bottom:236.026667pt;}
.y60{bottom:236.346667pt;}
.yb0{bottom:238.746667pt;}
.ya4{bottom:246.906667pt;}
.y1a{bottom:252.346667pt;}
.y8b{bottom:255.386667pt;}
.y5f{bottom:255.866667pt;}
.ya3{bottom:266.426667pt;}
.y19{bottom:274.586667pt;}
.y8a{bottom:274.906667pt;}
.y5e{bottom:275.226667pt;}
.ya2{bottom:285.946667pt;}
.y89{bottom:294.426667pt;}
.y5d{bottom:294.746667pt;}
.y18{bottom:296.826667pt;}
.ya1{bottom:305.466667pt;}
.y88{bottom:313.946667pt;}
.y5c{bottom:314.266667pt;}
.y17{bottom:319.226667pt;}
.ya0{bottom:324.826667pt;}
.y87{bottom:333.306667pt;}
.y5b{bottom:333.786667pt;}
.y16{bottom:341.466667pt;}
.y9f{bottom:344.346667pt;}
.y86{bottom:352.826667pt;}
.y5a{bottom:353.146667pt;}
.y15{bottom:363.706667pt;}
.y9e{bottom:363.866667pt;}
.y3c{bottom:365.466667pt;}
.y85{bottom:372.346667pt;}
.y59{bottom:372.666667pt;}
.y9d{bottom:383.386667pt;}
.y14{bottom:385.946667pt;}
.yb8{bottom:391.386667pt;}
.y84{bottom:391.866667pt;}
.y58{bottom:392.186667pt;}
.y9c{bottom:402.786667pt;}
.y13{bottom:408.226667pt;}
.y3b{bottom:409.666667pt;}
.y83{bottom:411.266667pt;}
.y57{bottom:411.746667pt;}
.y9b{bottom:422.306667pt;}
.y12{bottom:430.466667pt;}
.y82{bottom:430.786667pt;}
.y56{bottom:431.106667pt;}
.y9a{bottom:441.826667pt;}
.y81{bottom:450.306667pt;}
.y55{bottom:450.626667pt;}
.y11{bottom:452.706667pt;}
.y3a{bottom:455.906667pt;}
.y99{bottom:461.346667pt;}
.y80{bottom:469.826667pt;}
.y54{bottom:470.146667pt;}
.y10{bottom:475.106667pt;}
.y39{bottom:478.146667pt;}
.y98{bottom:480.706667pt;}
.y7f{bottom:489.346667pt;}
.y53{bottom:489.666667pt;}
.yf{bottom:496.386667pt;}
.y97{bottom:500.226667pt;}
.y38{bottom:500.386667pt;}
.y7e{bottom:508.706667pt;}
.y52{bottom:509.026667pt;}
.yaf{bottom:510.626667pt;}
.ye{bottom:515.906667pt;}
.y96{bottom:519.746667pt;}
.y37{bottom:522.626667pt;}
.y7d{bottom:528.226667pt;}
.y51{bottom:528.546667pt;}
.yae{bottom:528.706667pt;}
.yd{bottom:537.826667pt;}
.y36{bottom:544.866667pt;}
.y7c{bottom:547.746667pt;}
.y50{bottom:548.066667pt;}
.y95{bottom:555.266667pt;}
.yc{bottom:564.066667pt;}
.y35{bottom:567.106667pt;}
.y7b{bottom:567.266667pt;}
.y4f{bottom:567.586667pt;}
.y94{bottom:572.226667pt;}
.y7a{bottom:586.626667pt;}
.y4e{bottom:586.946667pt;}
.y93{bottom:589.186667pt;}
.yb{bottom:590.146667pt;}
.y34{bottom:590.626667pt;}
.y79{bottom:606.173333pt;}
.y4d{bottom:606.493333pt;}
.y33{bottom:611.933333pt;}
.ya{bottom:616.413333pt;}
.y78{bottom:625.693333pt;}
.y4c{bottom:626.013333pt;}
.y77{bottom:645.213333pt;}
.y4b{bottom:645.533333pt;}
.y9{bottom:647.613333pt;}
.y76{bottom:664.573333pt;}
.y4a{bottom:664.893333pt;}
.y8{bottom:673.533333pt;}
.y75{bottom:684.093333pt;}
.y49{bottom:684.413333pt;}
.y32{bottom:684.893333pt;}
.y74{bottom:703.613333pt;}
.y48{bottom:703.933333pt;}
.y31{bottom:707.293333pt;}
.y73{bottom:723.133333pt;}
.y47{bottom:723.453333pt;}
.y7{bottom:723.773333pt;}
.y30{bottom:729.533333pt;}
.y72{bottom:742.493333pt;}
.y46{bottom:742.813333pt;}
.y2f{bottom:751.773333pt;}
.y71{bottom:762.013333pt;}
.y45{bottom:762.333333pt;}
.y2e{bottom:774.013333pt;}
.y6{bottom:779.773333pt;}
.y70{bottom:781.533333pt;}
.y44{bottom:781.853333pt;}
.y2d{bottom:796.253333pt;}
.y6f{bottom:801.053333pt;}
.y43{bottom:801.373333pt;}
.y2c{bottom:818.533333pt;}
.y6e{bottom:820.453333pt;}
.y42{bottom:820.773333pt;}
.y5{bottom:831.813333pt;}
.y6d{bottom:839.973333pt;}
.y41{bottom:840.293333pt;}
.y2b{bottom:840.773333pt;}
.y6c{bottom:859.493333pt;}
.y40{bottom:859.813333pt;}
.y2a{bottom:863.173333pt;}
.y6b{bottom:879.013333pt;}
.y3f{bottom:879.333333pt;}
.yad{bottom:881.413333pt;}
.y4{bottom:883.813333pt;}
.y29{bottom:885.413333pt;}
.y6a{bottom:898.373333pt;}
.yac{bottom:902.213333pt;}
.y28{bottom:907.653333pt;}
.y3e{bottom:914.373333pt;}
.y69{bottom:917.893333pt;}
.yb3{bottom:925.733333pt;}
.y27{bottom:929.893333pt;}
.y3{bottom:935.813333pt;}
.y68{bottom:937.413333pt;}
.y26{bottom:952.133333pt;}
.y67{bottom:956.933333pt;}
.y3d{bottom:958.853333pt;}
.y25{bottom:974.373333pt;}
.y66{bottom:976.293333pt;}
.y1{bottom:979.653333pt;}
.y21{bottom:1025.760000pt;}
.hd{height:20.832000pt;}
.hc{height:45.600000pt;}
.h7{height:48.708438pt;}
.h2{height:54.257500pt;}
.hb{height:58.560000pt;}
.h9{height:59.190000pt;}
.h6{height:61.656250pt;}
.h4{height:72.137812pt;}
.h5{height:74.477812pt;}
.h8{height:123.312500pt;}
.ha{height:146.720000pt;}
.h3{height:159.089280pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:119.072000pt;}
.w3{width:192.506667pt;}
.w5{width:505.693333pt;}
.w4{width:707.200000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:9.600000pt;}
.xe{left:11.872000pt;}
.x3{left:56.639988pt;}
.xc{left:67.200000pt;}
.x6{left:80.671988pt;}
.x7{left:104.671988pt;}
.x8{left:128.671988pt;}
.x10{left:195.226667pt;}
.x4{left:234.626655pt;}
.x5{left:267.906655pt;}
.xd{left:303.586667pt;}
.xf{left:306.626667pt;}
.xa{left:317.186667pt;}
.x12{left:352.546667pt;}
.x1{left:436.253322pt;}
.x11{left:459.946667pt;}
.x2{left:731.679988pt;}
.x9{left:746.079988pt;}
}




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