
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_856e04b7a5de80fcf9f09d3f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0fb1daae9c396a2fd8bab035.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_2afe5788ae746bcbedf54a44.woff2')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_f4a4670a9056afef98a7433f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_979aa370d25949e9e65cec08.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8bda75355cf870db9f409a46.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_063ac979d1401dcf8bd8007f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a45303ee553177b61ca7ee54.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3341ce5c7ef9f113927f2a39.woff2')format("woff");}.ffc{font-family:ffc;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);}
.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;}
.ls9{letter-spacing:-0.900000px;}
.ls12{letter-spacing:-0.684000px;}
.lsc{letter-spacing:-0.378600px;}
.ls5{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.341400px;}
.ls6{letter-spacing:-0.018720px;}
.ls13{letter-spacing:-0.009360px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028080px;}
.ls16{letter-spacing:0.037440px;}
.ls11{letter-spacing:0.256200px;}
.lse{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.ls17{letter-spacing:1.260000px;}
.lsb{letter-spacing:3.420000px;}
.ls18{letter-spacing:4.140000px;}
.lsf{letter-spacing:17.100000px;}
.ls19{letter-spacing:21.221280px;}
.lsa{letter-spacing:25.860000px;}
.ls10{letter-spacing:29.340000px;}
.lsd{letter-spacing:30.060000px;}
.ls3{letter-spacing:32.940000px;}
.ls15{letter-spacing:45.900000px;}
.ls14{letter-spacing:64.026720px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws7{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.060000px;}
.wsa{word-spacing:-21.050640px;}
.ws3{word-spacing:-21.041280px;}
.ws6{word-spacing:-20.718600px;}
.ws5{word-spacing:-20.700000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-0.322440px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._2c{margin-left:-20.672640px;}
._7{margin-left:-2.372400px;}
._1{margin-left:-1.126080px;}
._3{width:1.029120px;}
._16{width:2.046480px;}
._4{width:3.070320px;}
._9{width:4.473360px;}
._5{width:5.728320px;}
._8{width:6.907680px;}
._19{width:8.113440px;}
._14{width:9.266400px;}
._15{width:10.420560px;}
._1a{width:12.214800px;}
._e{width:13.681200px;}
._10{width:15.668640px;}
._11{width:16.963200px;}
._22{width:18.058320px;}
._1d{width:19.627920px;}
._28{width:22.337280px;}
._a{width:23.671440px;}
._b{width:25.077360px;}
._26{width:26.123520px;}
._25{width:27.178320px;}
._6{width:28.388880px;}
._29{width:29.469600px;}
._1b{width:30.494880px;}
._1c{width:31.647360px;}
._f{width:32.654880px;}
._18{width:33.811920px;}
._1e{width:35.881680px;}
._13{width:36.945840px;}
._12{width:38.191680px;}
._27{width:39.406560px;}
._17{width:40.988880px;}
._c{width:42.288480px;}
._d{width:43.498800px;}
._24{width:44.809920px;}
._23{width:45.826560px;}
._1f{width:48.353760px;}
._20{width:50.153760px;}
._21{width:51.973920px;}
._2a{width:89.976720px;}
._2b{width:91.108560px;}
._2d{width:94.464000px;}
._2f{width:168.564240px;}
._2e{width:170.094240px;}
._2{width:638.842080px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.940000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.800000px;}
.yaa{bottom:80.460000px;}
.yc6{bottom:82.440000px;}
.y35{bottom:98.100000px;}
.y8f{bottom:101.340000px;}
.y62{bottom:106.740000px;}
.y92{bottom:106.920000px;}
.y4a{bottom:107.100000px;}
.y74{bottom:112.860000px;}
.ya9{bottom:116.640000px;}
.yc5{bottom:118.620000px;}
.yb6{bottom:119.160000px;}
.y1f{bottom:128.556000px;}
.y34{bottom:134.496000px;}
.y8e{bottom:137.556000px;}
.y49{bottom:143.496000px;}
.y73{bottom:149.256000px;}
.ya8{bottom:152.850000px;}
.yc4{bottom:155.010000px;}
.yb5{bottom:155.370000px;}
.y86{bottom:158.430000px;}
.y61{bottom:164.550000px;}
.y1e{bottom:164.910000px;}
.y33{bottom:170.670000px;}
.y48{bottom:179.670000px;}
.y72{bottom:185.430000px;}
.yc3{bottom:191.190000px;}
.yb4{bottom:191.550000px;}
.y8d{bottom:194.610000px;}
.y60{bottom:200.550000px;}
.y1d{bottom:201.090000px;}
.y32{bottom:206.850000px;}
.ya7{bottom:210.270000px;}
.y47{bottom:215.850000px;}
.y85{bottom:216.030000px;}
.y71{bottom:221.610000px;}
.yc2{bottom:227.370000px;}
.yb3{bottom:227.910000px;}
.y5f{bottom:236.910000px;}
.y31{bottom:243.030000px;}
.ya6{bottom:246.270000px;}
.y46{bottom:252.030000px;}
.y70{bottom:257.790000px;}
.y1c{bottom:258.510000px;}
.yc1{bottom:263.550000px;}
.yb2{bottom:264.090000px;}
.y68{bottom:272.910000px;}
.y5e{bottom:273.090000px;}
.y30{bottom:279.210000px;}
.ya5{bottom:282.630000px;}
.y84{bottom:288.210000px;}
.y45{bottom:288.390000px;}
.y6f{bottom:294.150000px;}
.yc0{bottom:299.910000px;}
.yb1{bottom:300.270000px;}
.y5d{bottom:309.270000px;}
.y8c{bottom:309.450000px;}
.y2f{bottom:315.570000px;}
.y1b{bottom:315.750000px;}
.y83{bottom:324.570000px;}
.y6e{bottom:330.330000px;}
.y67{bottom:330.510000px;}
.ybf{bottom:336.090000px;}
.yb0{bottom:336.450000px;}
.ya4{bottom:339.330000px;}
.y44{bottom:345.090000px;}
.y8b{bottom:345.450000px;}
.y1a{bottom:351.750000px;}
.y97{bottom:360.750000px;}
.y66{bottom:366.510000px;}
.y5c{bottom:366.690000px;}
.ybe{bottom:372.270000px;}
.yaf{bottom:372.810000px;}
.y8a{bottom:381.855000px;}
.y82{bottom:382.035000px;}
.y19{bottom:387.975000px;}
.ya3{bottom:397.155000px;}
.y5b{bottom:402.735000px;}
.y43{bottom:402.915000px;}
.ybd{bottom:408.495000px;}
.yae{bottom:417.675000px;}
.y96{bottom:417.855000px;}
.y81{bottom:418.035000px;}
.y18{bottom:424.155000px;}
.ya2{bottom:433.155000px;}
.y42{bottom:438.915000px;}
.ybc{bottom:444.855000px;}
.y80{bottom:454.215000px;}
.y17{bottom:460.515000px;}
.ya1{bottom:469.515000px;}
.y65{bottom:474.915000px;}
.yad{bottom:475.095000px;}
.y41{bottom:475.275000px;}
.y95{bottom:475.455000px;}
.ybb{bottom:481.035000px;}
.y7f{bottom:490.395000px;}
.y16{bottom:496.695000px;}
.ya0{bottom:505.695000px;}
.y40{bottom:511.455000px;}
.yba{bottom:517.215000px;}
.y7e{bottom:526.755000px;}
.y5a{bottom:532.695000px;}
.y15{bottom:532.875000px;}
.y9f{bottom:541.875000px;}
.y3f{bottom:547.635000px;}
.yb9{bottom:553.395000px;}
.y7d{bottom:562.935000px;}
.y59{bottom:568.695000px;}
.y64{bottom:568.875000px;}
.y14{bottom:569.055000px;}
.y2e{bottom:569.235000px;}
.y9e{bottom:578.055000px;}
.y3e{bottom:583.815000px;}
.yb8{bottom:589.755000px;}
.y7c{bottom:599.115000px;}
.y58{bottom:604.875000px;}
.y13{bottom:605.415000px;}
.y9d{bottom:614.415000px;}
.y3d{bottom:620.175000px;}
.y2d{bottom:625.935000px;}
.y7b{bottom:635.325000px;}
.y6d{bottom:640.905000px;}
.y57{bottom:641.085000px;}
.y12{bottom:641.625000px;}
.y9c{bottom:650.625000px;}
.y91{bottom:656.025000px;}
.y3c{bottom:656.385000px;}
.y89{bottom:656.565000px;}
.yb7{bottom:662.145000px;}
.yac{bottom:662.325000px;}
.y2c{bottom:671.145000px;}
.y7a{bottom:671.505000px;}
.y56{bottom:677.445000px;}
.y11{bottom:677.805000px;}
.y3b{bottom:692.565000px;}
.yab{bottom:698.325000px;}
.y6c{bottom:698.505000px;}
.y9b{bottom:707.685000px;}
.y79{bottom:707.865000px;}
.y55{bottom:713.625000px;}
.y10{bottom:714.165000px;}
.y3a{bottom:728.745000px;}
.y2b{bottom:728.925000px;}
.y6b{bottom:734.505000px;}
.y78{bottom:744.045000px;}
.y54{bottom:749.805000px;}
.y2a{bottom:765.105000px;}
.y9a{bottom:765.285000px;}
.yf{bottom:770.865000px;}
.y90{bottom:771.045000px;}
.y77{bottom:780.225000px;}
.y29{bottom:801.285000px;}
.y6a{bottom:807.045000px;}
.y53{bottom:807.225000px;}
.ye{bottom:816.045000px;}
.yc8{bottom:816.225000px;}
.y94{bottom:821.985000px;}
.y28{bottom:837.465000px;}
.y76{bottom:837.645000px;}
.y52{bottom:843.225000px;}
.y88{bottom:858.345000px;}
.yd{bottom:861.405000px;}
.y27{bottom:873.645000px;}
.y51{bottom:879.405000px;}
.y93{bottom:879.585000px;}
.yc{bottom:906.630000px;}
.yc7{bottom:906.810000px;}
.y26{bottom:910.050000px;}
.y50{bottom:915.810000px;}
.y87{bottom:915.990000px;}
.y25{bottom:946.230000px;}
.yb{bottom:951.810000px;}
.y4f{bottom:951.990000px;}
.y24{bottom:982.410000px;}
.y39{bottom:982.590000px;}
.y4e{bottom:988.170000px;}
.ya{bottom:996.990000px;}
.y99{bottom:1018.590000px;}
.y23{bottom:1018.770000px;}
.y4d{bottom:1024.350000px;}
.y38{bottom:1039.290000px;}
.y75{bottom:1039.470000px;}
.y9{bottom:1042.350000px;}
.y69{bottom:1060.350000px;}
.y4c{bottom:1060.710000px;}
.y22{bottom:1075.470000px;}
.y98{bottom:1075.650000px;}
.y8{bottom:1087.530000px;}
.y4b{bottom:1096.890000px;}
.y37{bottom:1097.070000px;}
.y7{bottom:1123.710000px;}
.y36{bottom:1133.070000px;}
.y21{bottom:1133.250000px;}
.y6{bottom:1159.920000px;}
.y20{bottom:1169.280000px;}
.y63{bottom:1169.460000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.600000px;}
.h9{height:58.819922px;}
.h8{height:59.436914px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h7{height:82.635820px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.ha{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:16.410000px;}
.x4{left:20.550000px;}
.x1{left:95.796000px;}
.x5{left:104.796000px;}
.x15{left:110.556000px;}
.x2{left:111.636000px;}
.xf{left:117.036000px;}
.x14{left:121.536000px;}
.x18{left:122.796000px;}
.x11{left:124.596000px;}
.x7{left:129.276000px;}
.x12{left:133.056000px;}
.x19{left:149.796000px;}
.x10{left:171.030000px;}
.x6{left:172.830000px;}
.xa{left:246.990000px;}
.xe{left:313.275000px;}
.x8{left:325.515000px;}
.x1a{left:413.535000px;}
.x3{left:438.915000px;}
.x16{left:474.225000px;}
.xc{left:503.205000px;}
.xb{left:531.285000px;}
.xd{left:553.785000px;}
.x9{left:579.165000px;}
.x13{left:757.590000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.800000pt;}
.ls12{letter-spacing:-0.608000pt;}
.lsc{letter-spacing:-0.336533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.303467pt;}
.ls6{letter-spacing:-0.016640pt;}
.ls13{letter-spacing:-0.008320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024960pt;}
.ls16{letter-spacing:0.033280pt;}
.ls11{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls17{letter-spacing:1.120000pt;}
.lsb{letter-spacing:3.040000pt;}
.ls18{letter-spacing:3.680000pt;}
.lsf{letter-spacing:15.200000pt;}
.ls19{letter-spacing:18.863360pt;}
.lsa{letter-spacing:22.986667pt;}
.ls10{letter-spacing:26.080000pt;}
.lsd{letter-spacing:26.720000pt;}
.ls3{letter-spacing:29.280000pt;}
.ls15{letter-spacing:40.800000pt;}
.ls14{letter-spacing:56.912640pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.wsb{word-spacing:-53.120000pt;}
.ws7{word-spacing:-19.040000pt;}
.ws9{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.711680pt;}
.ws3{word-spacing:-18.703360pt;}
.ws6{word-spacing:-18.416533pt;}
.ws5{word-spacing:-18.400000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-0.286613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._2c{margin-left:-18.375680pt;}
._7{margin-left:-2.108800pt;}
._1{margin-left:-1.000960pt;}
._3{width:0.914773pt;}
._16{width:1.819093pt;}
._4{width:2.729173pt;}
._9{width:3.976320pt;}
._5{width:5.091840pt;}
._8{width:6.140160pt;}
._19{width:7.211947pt;}
._14{width:8.236800pt;}
._15{width:9.262720pt;}
._1a{width:10.857600pt;}
._e{width:12.161067pt;}
._10{width:13.927680pt;}
._11{width:15.078400pt;}
._22{width:16.051840pt;}
._1d{width:17.447040pt;}
._28{width:19.855360pt;}
._a{width:21.041280pt;}
._b{width:22.290987pt;}
._26{width:23.220907pt;}
._25{width:24.158507pt;}
._6{width:25.234560pt;}
._29{width:26.195200pt;}
._1b{width:27.106560pt;}
._1c{width:28.130987pt;}
._f{width:29.026560pt;}
._18{width:30.055040pt;}
._1e{width:31.894827pt;}
._13{width:32.840747pt;}
._12{width:33.948160pt;}
._27{width:35.028053pt;}
._17{width:36.434560pt;}
._c{width:37.589760pt;}
._d{width:38.665600pt;}
._24{width:39.831040pt;}
._23{width:40.734720pt;}
._1f{width:42.981120pt;}
._20{width:44.581120pt;}
._21{width:46.199040pt;}
._2a{width:79.979307pt;}
._2b{width:80.985387pt;}
._2d{width:83.968000pt;}
._2f{width:149.834880pt;}
._2e{width:151.194880pt;}
._2{width:567.859627pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.280000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.600000pt;}
.yaa{bottom:71.520000pt;}
.yc6{bottom:73.280000pt;}
.y35{bottom:87.200000pt;}
.y8f{bottom:90.080000pt;}
.y62{bottom:94.880000pt;}
.y92{bottom:95.040000pt;}
.y4a{bottom:95.200000pt;}
.y74{bottom:100.320000pt;}
.ya9{bottom:103.680000pt;}
.yc5{bottom:105.440000pt;}
.yb6{bottom:105.920000pt;}
.y1f{bottom:114.272000pt;}
.y34{bottom:119.552000pt;}
.y8e{bottom:122.272000pt;}
.y49{bottom:127.552000pt;}
.y73{bottom:132.672000pt;}
.ya8{bottom:135.866667pt;}
.yc4{bottom:137.786667pt;}
.yb5{bottom:138.106667pt;}
.y86{bottom:140.826667pt;}
.y61{bottom:146.266667pt;}
.y1e{bottom:146.586667pt;}
.y33{bottom:151.706667pt;}
.y48{bottom:159.706667pt;}
.y72{bottom:164.826667pt;}
.yc3{bottom:169.946667pt;}
.yb4{bottom:170.266667pt;}
.y8d{bottom:172.986667pt;}
.y60{bottom:178.266667pt;}
.y1d{bottom:178.746667pt;}
.y32{bottom:183.866667pt;}
.ya7{bottom:186.906667pt;}
.y47{bottom:191.866667pt;}
.y85{bottom:192.026667pt;}
.y71{bottom:196.986667pt;}
.yc2{bottom:202.106667pt;}
.yb3{bottom:202.586667pt;}
.y5f{bottom:210.586667pt;}
.y31{bottom:216.026667pt;}
.ya6{bottom:218.906667pt;}
.y46{bottom:224.026667pt;}
.y70{bottom:229.146667pt;}
.y1c{bottom:229.786667pt;}
.yc1{bottom:234.266667pt;}
.yb2{bottom:234.746667pt;}
.y68{bottom:242.586667pt;}
.y5e{bottom:242.746667pt;}
.y30{bottom:248.186667pt;}
.ya5{bottom:251.226667pt;}
.y84{bottom:256.186667pt;}
.y45{bottom:256.346667pt;}
.y6f{bottom:261.466667pt;}
.yc0{bottom:266.586667pt;}
.yb1{bottom:266.906667pt;}
.y5d{bottom:274.906667pt;}
.y8c{bottom:275.066667pt;}
.y2f{bottom:280.506667pt;}
.y1b{bottom:280.666667pt;}
.y83{bottom:288.506667pt;}
.y6e{bottom:293.626667pt;}
.y67{bottom:293.786667pt;}
.ybf{bottom:298.746667pt;}
.yb0{bottom:299.066667pt;}
.ya4{bottom:301.626667pt;}
.y44{bottom:306.746667pt;}
.y8b{bottom:307.066667pt;}
.y1a{bottom:312.666667pt;}
.y97{bottom:320.666667pt;}
.y66{bottom:325.786667pt;}
.y5c{bottom:325.946667pt;}
.ybe{bottom:330.906667pt;}
.yaf{bottom:331.386667pt;}
.y8a{bottom:339.426667pt;}
.y82{bottom:339.586667pt;}
.y19{bottom:344.866667pt;}
.ya3{bottom:353.026667pt;}
.y5b{bottom:357.986667pt;}
.y43{bottom:358.146667pt;}
.ybd{bottom:363.106667pt;}
.yae{bottom:371.266667pt;}
.y96{bottom:371.426667pt;}
.y81{bottom:371.586667pt;}
.y18{bottom:377.026667pt;}
.ya2{bottom:385.026667pt;}
.y42{bottom:390.146667pt;}
.ybc{bottom:395.426667pt;}
.y80{bottom:403.746667pt;}
.y17{bottom:409.346667pt;}
.ya1{bottom:417.346667pt;}
.y65{bottom:422.146667pt;}
.yad{bottom:422.306667pt;}
.y41{bottom:422.466667pt;}
.y95{bottom:422.626667pt;}
.ybb{bottom:427.586667pt;}
.y7f{bottom:435.906667pt;}
.y16{bottom:441.506667pt;}
.ya0{bottom:449.506667pt;}
.y40{bottom:454.626667pt;}
.yba{bottom:459.746667pt;}
.y7e{bottom:468.226667pt;}
.y5a{bottom:473.506667pt;}
.y15{bottom:473.666667pt;}
.y9f{bottom:481.666667pt;}
.y3f{bottom:486.786667pt;}
.yb9{bottom:491.906667pt;}
.y7d{bottom:500.386667pt;}
.y59{bottom:505.506667pt;}
.y64{bottom:505.666667pt;}
.y14{bottom:505.826667pt;}
.y2e{bottom:505.986667pt;}
.y9e{bottom:513.826667pt;}
.y3e{bottom:518.946667pt;}
.yb8{bottom:524.226667pt;}
.y7c{bottom:532.546667pt;}
.y58{bottom:537.666667pt;}
.y13{bottom:538.146667pt;}
.y9d{bottom:546.146667pt;}
.y3d{bottom:551.266667pt;}
.y2d{bottom:556.386667pt;}
.y7b{bottom:564.733333pt;}
.y6d{bottom:569.693333pt;}
.y57{bottom:569.853333pt;}
.y12{bottom:570.333333pt;}
.y9c{bottom:578.333333pt;}
.y91{bottom:583.133333pt;}
.y3c{bottom:583.453333pt;}
.y89{bottom:583.613333pt;}
.yb7{bottom:588.573333pt;}
.yac{bottom:588.733333pt;}
.y2c{bottom:596.573333pt;}
.y7a{bottom:596.893333pt;}
.y56{bottom:602.173333pt;}
.y11{bottom:602.493333pt;}
.y3b{bottom:615.613333pt;}
.yab{bottom:620.733333pt;}
.y6c{bottom:620.893333pt;}
.y9b{bottom:629.053333pt;}
.y79{bottom:629.213333pt;}
.y55{bottom:634.333333pt;}
.y10{bottom:634.813333pt;}
.y3a{bottom:647.773333pt;}
.y2b{bottom:647.933333pt;}
.y6b{bottom:652.893333pt;}
.y78{bottom:661.373333pt;}
.y54{bottom:666.493333pt;}
.y2a{bottom:680.093333pt;}
.y9a{bottom:680.253333pt;}
.yf{bottom:685.213333pt;}
.y90{bottom:685.373333pt;}
.y77{bottom:693.533333pt;}
.y29{bottom:712.253333pt;}
.y6a{bottom:717.373333pt;}
.y53{bottom:717.533333pt;}
.ye{bottom:725.373333pt;}
.yc8{bottom:725.533333pt;}
.y94{bottom:730.653333pt;}
.y28{bottom:744.413333pt;}
.y76{bottom:744.573333pt;}
.y52{bottom:749.533333pt;}
.y88{bottom:762.973333pt;}
.yd{bottom:765.693333pt;}
.y27{bottom:776.573333pt;}
.y51{bottom:781.693333pt;}
.y93{bottom:781.853333pt;}
.yc{bottom:805.893333pt;}
.yc7{bottom:806.053333pt;}
.y26{bottom:808.933333pt;}
.y50{bottom:814.053333pt;}
.y87{bottom:814.213333pt;}
.y25{bottom:841.093333pt;}
.yb{bottom:846.053333pt;}
.y4f{bottom:846.213333pt;}
.y24{bottom:873.253333pt;}
.y39{bottom:873.413333pt;}
.y4e{bottom:878.373333pt;}
.ya{bottom:886.213333pt;}
.y99{bottom:905.413333pt;}
.y23{bottom:905.573333pt;}
.y4d{bottom:910.533333pt;}
.y38{bottom:923.813333pt;}
.y75{bottom:923.973333pt;}
.y9{bottom:926.533333pt;}
.y69{bottom:942.533333pt;}
.y4c{bottom:942.853333pt;}
.y22{bottom:955.973333pt;}
.y98{bottom:956.133333pt;}
.y8{bottom:966.693333pt;}
.y4b{bottom:975.013333pt;}
.y37{bottom:975.173333pt;}
.y7{bottom:998.853333pt;}
.y36{bottom:1007.173333pt;}
.y21{bottom:1007.333333pt;}
.y6{bottom:1031.040000pt;}
.y20{bottom:1039.360000pt;}
.y63{bottom:1039.520000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.200000pt;}
.h9{height:52.284375pt;}
.h8{height:52.832812pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h7{height:73.454062pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.ha{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:14.586667pt;}
.x4{left:18.266667pt;}
.x1{left:85.152000pt;}
.x5{left:93.152000pt;}
.x15{left:98.272000pt;}
.x2{left:99.232000pt;}
.xf{left:104.032000pt;}
.x14{left:108.032000pt;}
.x18{left:109.152000pt;}
.x11{left:110.752000pt;}
.x7{left:114.912000pt;}
.x12{left:118.272000pt;}
.x19{left:133.152000pt;}
.x10{left:152.026667pt;}
.x6{left:153.626667pt;}
.xa{left:219.546667pt;}
.xe{left:278.466667pt;}
.x8{left:289.346667pt;}
.x1a{left:367.586667pt;}
.x3{left:390.146667pt;}
.x16{left:421.533333pt;}
.xc{left:447.293333pt;}
.xb{left:472.253333pt;}
.xd{left:492.253333pt;}
.x9{left:514.813333pt;}
.x13{left:673.413333pt;}
}




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