
    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_e31f8816ac263d85b0ebdc7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.988281;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_dcf3c8db8d67880db7103399.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4ccb156d5cd278f11819ae3d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c1c4384c9e085f11c5ac62f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_e9ce7161fa4d15ff325019fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.703613;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_898eb21f35853732de419457.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752441;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_ed396107601cc32b73dbd3ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.886230;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_1784736c965f20dad2ec0777.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7c6eeec6f17a1bf56ef98d1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988281;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_dc9a9184a734766a3f542138.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.927734;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_91b3bece4b3ff7d87fcfb712.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.928223;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_a737575bd85cc5122a898115.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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b7f78f903c21f1fb8b8b5480.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.988281;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:ffe;src:url('chunks/assets/font_fd494aa2fdbe5d0b47bbc5d0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.988281;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;}
.ls13{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.ls8{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.720000px;}
.ls14{letter-spacing:1.008000px;}
.lsb{letter-spacing:1.152000px;}
.ls12{letter-spacing:15.408000px;}
.ls4{letter-spacing:19.584000px;}
.ls16{letter-spacing:26.928000px;}
.ls18{letter-spacing:31.968000px;}
.ls10{letter-spacing:47.088000px;}
.lse{letter-spacing:102.528000px;}
.lsf{letter-spacing:205.608000px;}
.ls15{letter-spacing:260.928000px;}
.ls11{letter-spacing:378.408000px;}
.ls17{letter-spacing:404.328000px;}
.ls19{letter-spacing:599.328000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-95.760000px;}
.ws3{word-spacing:-54.360000px;}
.ws0{word-spacing:-54.000000px;}
.ws9{word-spacing:-23.328000px;}
.ws7{word-spacing:-22.968000px;}
.ws4{word-spacing:-22.752000px;}
.ws6{word-spacing:-22.608000px;}
.ws8{word-spacing:-22.176000px;}
.wsa{word-spacing:-21.744000px;}
.ws5{word-spacing:-21.096000px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-8.255520px;}
._1{margin-left:-6.246000px;}
._16{margin-left:-4.536000px;}
._2{margin-left:-2.760000px;}
._0{margin-left:-1.458000px;}
._3{width:1.158000px;}
._5{width:2.252160px;}
._6{width:3.776400px;}
._1d{width:5.160000px;}
._a{width:6.175440px;}
._4{width:7.418880px;}
._10{width:9.216000px;}
._e{width:10.440000px;}
._d{width:11.664000px;}
._17{width:13.176000px;}
._f{width:14.472000px;}
._12{width:16.128000px;}
._21{width:17.208000px;}
._30{width:18.720000px;}
._29{width:20.616000px;}
._c{width:21.672000px;}
._1c{width:24.696000px;}
._23{width:25.704000px;}
._22{width:26.784000px;}
._2b{width:28.224000px;}
._1b{width:29.322000px;}
._1a{width:30.672000px;}
._13{width:31.968000px;}
._31{width:32.994000px;}
._b{width:34.056000px;}
._1e{width:35.640000px;}
._18{width:36.840000px;}
._19{width:38.010000px;}
._28{width:39.744000px;}
._27{width:40.968000px;}
._33{width:42.108000px;}
._2d{width:43.272000px;}
._2c{width:44.352000px;}
._35{width:45.354000px;}
._2a{width:47.106000px;}
._14{width:48.456000px;}
._24{width:49.680000px;}
._2f{width:51.624000px;}
._2e{width:52.704000px;}
._26{width:53.718000px;}
._25{width:54.840000px;}
._3c{width:57.600000px;}
._3b{width:58.680000px;}
._3d{width:59.688000px;}
._15{width:61.344000px;}
._45{width:63.018000px;}
._44{width:64.296000px;}
._38{width:66.906000px;}
._11{width:68.544000px;}
._39{width:70.200000px;}
._3f{width:71.208000px;}
._49{width:72.288000px;}
._20{width:73.368000px;}
._1f{width:74.376000px;}
._36{width:75.600000px;}
._37{width:76.758000px;}
._3a{width:78.312000px;}
._4a{width:80.028000px;}
._32{width:81.144000px;}
._4b{width:82.146000px;}
._3e{width:84.240000px;}
._34{width:88.104000px;}
._46{width:96.618000px;}
._41{width:97.860000px;}
._40{width:99.000000px;}
._42{width:100.848000px;}
._43{width:102.618000px;}
._47{width:105.696000px;}
._48{width:107.004000px;}
._8{width:116.588160px;}
._9{width:117.961920px;}
._4c{width:205.632000px;}
._4d{width:207.252000px;}
._50{width:260.640000px;}
._4e{width:377.928000px;}
._51{width:404.352000px;}
._52{width:599.868000px;}
._53{width:723.420000px;}
._4f{width:1574.784000px;}
.fc7{color:rgb(22,62,100);}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc2{color:rgb(0,176,240);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(100,100,100);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs9{font-size:84.384000px;}
.fs8{font-size:95.760000px;}
.fs7{font-size:144.000000px;}
.y20{bottom:-24.480000px;}
.y1a{bottom:-12.570000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.411000px;}
.y2c{bottom:3.420000px;}
.y4{bottom:3.591000px;}
.y2a{bottom:3.600000px;}
.yc{bottom:5.076000px;}
.y18{bottom:5.745000px;}
.y1c{bottom:9.540000px;}
.y5f{bottom:10.800000px;}
.yb{bottom:21.456000px;}
.y17{bottom:24.825000px;}
.y1f{bottom:33.660000px;}
.ya{bottom:42.516000px;}
.y16{bottom:43.725000px;}
.y26{bottom:50.415000px;}
.y28{bottom:57.060000px;}
.y2{bottom:57.096000px;}
.y1e{bottom:57.780000px;}
.y15{bottom:62.670000px;}
.y9{bottom:65.520000px;}
.y29{bottom:68.940000px;}
.y3{bottom:68.985000px;}
.y25{bottom:69.135000px;}
.y2b{bottom:71.100000px;}
.y5{bottom:71.145000px;}
.y27{bottom:72.540000px;}
.y1{bottom:72.576000px;}
.y14{bottom:81.750000px;}
.y24{bottom:91.815000px;}
.y13{bottom:100.650000px;}
.y12{bottom:119.730000px;}
.y5d{bottom:119.880000px;}
.y23{bottom:120.255000px;}
.y11{bottom:138.630000px;}
.y5c{bottom:141.120000px;}
.y22{bottom:151.215000px;}
.y10{bottom:157.710000px;}
.y5b{bottom:162.180000px;}
.yf{bottom:176.610000px;}
.y5a{bottom:183.450000px;}
.yd{bottom:183.465000px;}
.y19{bottom:183.600000px;}
.ye{bottom:195.510000px;}
.y59{bottom:204.690000px;}
.y58{bottom:225.930000px;}
.y57{bottom:247.170000px;}
.y56{bottom:268.230000px;}
.y55{bottom:289.470000px;}
.y54{bottom:310.710000px;}
.y53{bottom:331.950000px;}
.y52{bottom:353.010000px;}
.y51{bottom:374.250000px;}
.y50{bottom:395.490000px;}
.y4f{bottom:416.775000px;}
.y4e{bottom:437.835000px;}
.y4d{bottom:459.075000px;}
.y1d{bottom:475.845000px;}
.y4c{bottom:480.315000px;}
.y4b{bottom:501.555000px;}
.y4a{bottom:522.795000px;}
.y49{bottom:543.855000px;}
.y48{bottom:565.095000px;}
.y47{bottom:586.335000px;}
.y46{bottom:607.575000px;}
.y45{bottom:628.635000px;}
.y21{bottom:641.115000px;}
.y44{bottom:649.875000px;}
.y43{bottom:671.145000px;}
.y42{bottom:692.385000px;}
.y8{bottom:707.550000px;}
.y41{bottom:713.625000px;}
.y40{bottom:734.685000px;}
.y7{bottom:743.730000px;}
.y3f{bottom:755.925000px;}
.y3e{bottom:777.165000px;}
.y3d{bottom:798.405000px;}
.y3c{bottom:819.465000px;}
.y3b{bottom:840.705000px;}
.y1b{bottom:843.300000px;}
.y3a{bottom:861.945000px;}
.y39{bottom:883.185000px;}
.y38{bottom:904.290000px;}
.y37{bottom:925.530000px;}
.y36{bottom:946.770000px;}
.y35{bottom:968.010000px;}
.y34{bottom:989.250000px;}
.y33{bottom:1010.310000px;}
.y32{bottom:1031.550000px;}
.y31{bottom:1052.790000px;}
.y30{bottom:1074.030000px;}
.y2f{bottom:1095.090000px;}
.y2e{bottom:1116.330000px;}
.y2d{bottom:1137.570000px;}
.y5e{bottom:1145.880000px;}
.h5{height:15.660000px;}
.h4{height:17.820000px;}
.h9{height:30.912187px;}
.hd{height:34.920000px;}
.h19{height:37.980000px;}
.h2{height:46.804219px;}
.h8{height:49.746094px;}
.h15{height:51.328125px;}
.h3{height:52.998047px;}
.h18{height:56.390625px;}
.h7{height:61.200000px;}
.h6{height:62.184375px;}
.hb{height:65.010937px;}
.h10{height:65.977031px;}
.h14{height:68.266406px;}
.h1b{height:74.004654px;}
.he{height:84.898125px;}
.h1a{height:85.043250px;}
.hf{height:86.220000px;}
.h13{height:93.983203px;}
.h12{height:102.656250px;}
.h11{height:185.625000px;}
.hc{height:210.420000px;}
.ha{height:210.435000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.h16{height:1262.880000px;}
.h17{height:1263.000000px;}
.wc{width:9.540000px;}
.w2{width:9.585000px;}
.w3{width:19.845000px;}
.wd{width:20.340000px;}
.we{width:178.200000px;}
.w7{width:264.420000px;}
.w4{width:416.160000px;}
.w9{width:546.015000px;}
.w6{width:621.900000px;}
.w5{width:622.005000px;}
.w8{width:746.550000px;}
.wa{width:892.980000px;}
.wb{width:893.250000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:10.836000px;}
.xc{left:31.935000px;}
.x4{left:37.080000px;}
.x9{left:42.465000px;}
.x5{left:59.940000px;}
.x1{left:108.000000px;}
.xa{left:135.036000px;}
.x8{left:184.185000px;}
.xf{left:189.030000px;}
.xd{left:216.030000px;}
.xe{left:243.030000px;}
.x6{left:247.005000px;}
.xb{left:345.420000px;}
.x7{left:373.200000px;}
.x3{left:511.635000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls8{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.896000pt;}
.lsb{letter-spacing:1.024000pt;}
.ls12{letter-spacing:13.696000pt;}
.ls4{letter-spacing:17.408000pt;}
.ls16{letter-spacing:23.936000pt;}
.ls18{letter-spacing:28.416000pt;}
.ls10{letter-spacing:41.856000pt;}
.lse{letter-spacing:91.136000pt;}
.lsf{letter-spacing:182.762667pt;}
.ls15{letter-spacing:231.936000pt;}
.ls11{letter-spacing:336.362667pt;}
.ls17{letter-spacing:359.402667pt;}
.ls19{letter-spacing:532.736000pt;}
.ws1{word-spacing:-85.120000pt;}
.ws3{word-spacing:-48.320000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws9{word-spacing:-20.736000pt;}
.ws7{word-spacing:-20.416000pt;}
.ws4{word-spacing:-20.224000pt;}
.ws6{word-spacing:-20.096000pt;}
.ws8{word-spacing:-19.712000pt;}
.wsa{word-spacing:-19.328000pt;}
.ws5{word-spacing:-18.752000pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-7.338240pt;}
._1{margin-left:-5.552000pt;}
._16{margin-left:-4.032000pt;}
._2{margin-left:-2.453333pt;}
._0{margin-left:-1.296000pt;}
._3{width:1.029333pt;}
._5{width:2.001920pt;}
._6{width:3.356800pt;}
._1d{width:4.586667pt;}
._a{width:5.489280pt;}
._4{width:6.594560pt;}
._10{width:8.192000pt;}
._e{width:9.280000pt;}
._d{width:10.368000pt;}
._17{width:11.712000pt;}
._f{width:12.864000pt;}
._12{width:14.336000pt;}
._21{width:15.296000pt;}
._30{width:16.640000pt;}
._29{width:18.325333pt;}
._c{width:19.264000pt;}
._1c{width:21.952000pt;}
._23{width:22.848000pt;}
._22{width:23.808000pt;}
._2b{width:25.088000pt;}
._1b{width:26.064000pt;}
._1a{width:27.264000pt;}
._13{width:28.416000pt;}
._31{width:29.328000pt;}
._b{width:30.272000pt;}
._1e{width:31.680000pt;}
._18{width:32.746667pt;}
._19{width:33.786667pt;}
._28{width:35.328000pt;}
._27{width:36.416000pt;}
._33{width:37.429333pt;}
._2d{width:38.464000pt;}
._2c{width:39.424000pt;}
._35{width:40.314667pt;}
._2a{width:41.872000pt;}
._14{width:43.072000pt;}
._24{width:44.160000pt;}
._2f{width:45.888000pt;}
._2e{width:46.848000pt;}
._26{width:47.749333pt;}
._25{width:48.746667pt;}
._3c{width:51.200000pt;}
._3b{width:52.160000pt;}
._3d{width:53.056000pt;}
._15{width:54.528000pt;}
._45{width:56.016000pt;}
._44{width:57.152000pt;}
._38{width:59.472000pt;}
._11{width:60.928000pt;}
._39{width:62.400000pt;}
._3f{width:63.296000pt;}
._49{width:64.256000pt;}
._20{width:65.216000pt;}
._1f{width:66.112000pt;}
._36{width:67.200000pt;}
._37{width:68.229333pt;}
._3a{width:69.610667pt;}
._4a{width:71.136000pt;}
._32{width:72.128000pt;}
._4b{width:73.018667pt;}
._3e{width:74.880000pt;}
._34{width:78.314667pt;}
._46{width:85.882667pt;}
._41{width:86.986667pt;}
._40{width:88.000000pt;}
._42{width:89.642667pt;}
._43{width:91.216000pt;}
._47{width:93.952000pt;}
._48{width:95.114667pt;}
._8{width:103.633920pt;}
._9{width:104.855040pt;}
._4c{width:182.784000pt;}
._4d{width:184.224000pt;}
._50{width:231.680000pt;}
._4e{width:335.936000pt;}
._51{width:359.424000pt;}
._52{width:533.216000pt;}
._53{width:643.040000pt;}
._4f{width:1399.808000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs9{font-size:75.008000pt;}
.fs8{font-size:85.120000pt;}
.fs7{font-size:128.000000pt;}
.y20{bottom:-21.760000pt;}
.y1a{bottom:-11.173333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.032000pt;}
.y2c{bottom:3.040000pt;}
.y4{bottom:3.192000pt;}
.y2a{bottom:3.200000pt;}
.yc{bottom:4.512000pt;}
.y18{bottom:5.106667pt;}
.y1c{bottom:8.480000pt;}
.y5f{bottom:9.600000pt;}
.yb{bottom:19.072000pt;}
.y17{bottom:22.066667pt;}
.y1f{bottom:29.920000pt;}
.ya{bottom:37.792000pt;}
.y16{bottom:38.866667pt;}
.y26{bottom:44.813333pt;}
.y28{bottom:50.720000pt;}
.y2{bottom:50.752000pt;}
.y1e{bottom:51.360000pt;}
.y15{bottom:55.706667pt;}
.y9{bottom:58.240000pt;}
.y29{bottom:61.280000pt;}
.y3{bottom:61.320000pt;}
.y25{bottom:61.453333pt;}
.y2b{bottom:63.200000pt;}
.y5{bottom:63.240000pt;}
.y27{bottom:64.480000pt;}
.y1{bottom:64.512000pt;}
.y14{bottom:72.666667pt;}
.y24{bottom:81.613333pt;}
.y13{bottom:89.466667pt;}
.y12{bottom:106.426667pt;}
.y5d{bottom:106.560000pt;}
.y23{bottom:106.893333pt;}
.y11{bottom:123.226667pt;}
.y5c{bottom:125.440000pt;}
.y22{bottom:134.413333pt;}
.y10{bottom:140.186667pt;}
.y5b{bottom:144.160000pt;}
.yf{bottom:156.986667pt;}
.y5a{bottom:163.066667pt;}
.yd{bottom:163.080000pt;}
.y19{bottom:163.200000pt;}
.ye{bottom:173.786667pt;}
.y59{bottom:181.946667pt;}
.y58{bottom:200.826667pt;}
.y57{bottom:219.706667pt;}
.y56{bottom:238.426667pt;}
.y55{bottom:257.306667pt;}
.y54{bottom:276.186667pt;}
.y53{bottom:295.066667pt;}
.y52{bottom:313.786667pt;}
.y51{bottom:332.666667pt;}
.y50{bottom:351.546667pt;}
.y4f{bottom:370.466667pt;}
.y4e{bottom:389.186667pt;}
.y4d{bottom:408.066667pt;}
.y1d{bottom:422.973333pt;}
.y4c{bottom:426.946667pt;}
.y4b{bottom:445.826667pt;}
.y4a{bottom:464.706667pt;}
.y49{bottom:483.426667pt;}
.y48{bottom:502.306667pt;}
.y47{bottom:521.186667pt;}
.y46{bottom:540.066667pt;}
.y45{bottom:558.786667pt;}
.y21{bottom:569.880000pt;}
.y44{bottom:577.666667pt;}
.y43{bottom:596.573333pt;}
.y42{bottom:615.453333pt;}
.y8{bottom:628.933333pt;}
.y41{bottom:634.333333pt;}
.y40{bottom:653.053333pt;}
.y7{bottom:661.093333pt;}
.y3f{bottom:671.933333pt;}
.y3e{bottom:690.813333pt;}
.y3d{bottom:709.693333pt;}
.y3c{bottom:728.413333pt;}
.y3b{bottom:747.293333pt;}
.y1b{bottom:749.600000pt;}
.y3a{bottom:766.173333pt;}
.y39{bottom:785.053333pt;}
.y38{bottom:803.813333pt;}
.y37{bottom:822.693333pt;}
.y36{bottom:841.573333pt;}
.y35{bottom:860.453333pt;}
.y34{bottom:879.333333pt;}
.y33{bottom:898.053333pt;}
.y32{bottom:916.933333pt;}
.y31{bottom:935.813333pt;}
.y30{bottom:954.693333pt;}
.y2f{bottom:973.413333pt;}
.y2e{bottom:992.293333pt;}
.y2d{bottom:1011.173333pt;}
.y5e{bottom:1018.560000pt;}
.h5{height:13.920000pt;}
.h4{height:15.840000pt;}
.h9{height:27.477500pt;}
.hd{height:31.040000pt;}
.h19{height:33.760000pt;}
.h2{height:41.603750pt;}
.h8{height:44.218750pt;}
.h15{height:45.625000pt;}
.h3{height:47.109375pt;}
.h18{height:50.125000pt;}
.h7{height:54.400000pt;}
.h6{height:55.275000pt;}
.hb{height:57.787500pt;}
.h10{height:58.646250pt;}
.h14{height:60.681250pt;}
.h1b{height:65.781915pt;}
.he{height:75.465000pt;}
.h1a{height:75.594000pt;}
.hf{height:76.640000pt;}
.h13{height:83.540625pt;}
.h12{height:91.250000pt;}
.h11{height:165.000000pt;}
.hc{height:187.040000pt;}
.ha{height:187.053333pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.h16{height:1122.560000pt;}
.h17{height:1122.666667pt;}
.wc{width:8.480000pt;}
.w2{width:8.520000pt;}
.w3{width:17.640000pt;}
.wd{width:18.080000pt;}
.we{width:158.400000pt;}
.w7{width:235.040000pt;}
.w4{width:369.920000pt;}
.w9{width:485.346667pt;}
.w6{width:552.800000pt;}
.w5{width:552.893333pt;}
.w8{width:663.600000pt;}
.wa{width:793.760000pt;}
.wb{width:794.000000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:9.632000pt;}
.xc{left:28.386667pt;}
.x4{left:32.960000pt;}
.x9{left:37.746667pt;}
.x5{left:53.280000pt;}
.x1{left:96.000000pt;}
.xa{left:120.032000pt;}
.x8{left:163.720000pt;}
.xf{left:168.026667pt;}
.xd{left:192.026667pt;}
.xe{left:216.026667pt;}
.x6{left:219.560000pt;}
.xb{left:307.040000pt;}
.x7{left:331.733333pt;}
.x3{left:454.786667pt;}
}




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