
    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_90ba5993a6c541cac6dcabd1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9995c057830dc8c57a81e067.woff')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_f132d46cf82d74ab9c2384fa.woff')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_773ed8aae5a6d4c91e736824.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b82658a0a6c77a6494522cbc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_0300db0b99baed92c5f078dc.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_19dee1f78133e1dfb3ea84e0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b21256c0a0652b225b244a64.woff')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_d7f989e011ca6daa3997c9bc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.884277;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);}
.v3{vertical-align:-24.480000px;}
.v4{vertical-align:-21.600000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls10{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.422000px;}
.lse{letter-spacing:-0.954000px;}
.ls15{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.726000px;}
.ls4{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.466800px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls6{letter-spacing:0.020160px;}
.lsb{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.466560px;}
.ls16{letter-spacing:0.507000px;}
.ls11{letter-spacing:0.699840px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:3.600000px;}
.ls12{letter-spacing:6.600000px;}
.lsc{letter-spacing:10.800000px;}
.lsd{letter-spacing:13.680000px;}
.ls14{letter-spacing:16.306560px;}
.ls1{letter-spacing:19.440000px;}
.ls13{letter-spacing:46.558560px;}
.lsa{letter-spacing:63.838560px;}
.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;}
}
.ws8{word-spacing:-60.480000px;}
.wse{word-spacing:-15.768000px;}
.wsd{word-spacing:-15.627000px;}
.ws2{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.653200px;}
.ws9{word-spacing:-14.166000px;}
.wsa{word-spacing:-13.698000px;}
.wsb{word-spacing:-13.680000px;}
.ws5{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.419840px;}
.ws4{word-spacing:-9.732960px;}
.ws0{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.000000px;}
.ws6{word-spacing:-8.994000px;}
.ws7{word-spacing:0.000000px;}
._9{margin-left:-3.380640px;}
._0{margin-left:-2.016000px;}
._4{margin-left:-1.008000px;}
._1{width:1.008000px;}
._2{width:2.016000px;}
._3{width:3.144000px;}
._8{width:4.435200px;}
._b{width:6.312480px;}
._a{width:7.338240px;}
._c{width:9.259680px;}
._16{width:10.287360px;}
._12{width:11.404320px;}
._11{width:12.634080px;}
._13{width:14.091840px;}
._14{width:16.501440px;}
._5{width:18.385920px;}
._7{width:20.113440px;}
._6{width:21.792960px;}
._d{width:22.861440px;}
._15{width:24.603360px;}
._18{width:26.195520px;}
._17{width:27.336960px;}
._1c{width:30.243360px;}
._1d{width:31.368960px;}
._e{width:33.143040px;}
._10{width:34.214400px;}
._f{width:35.216640px;}
._1a{width:38.586240px;}
._1b{width:39.761760px;}
._19{width:40.985280px;}
._1f{width:43.023360px;}
._1e{width:45.175440px;}
.fc7{color:rgb(128,100,162);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,29,53);}
.fc6{color:rgb(14,16,26);}
.fc2{color:rgb(0,176,240);}
.fc8{color:rgb(34,34,34);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(127,127,127);}
.fs3{font-size:38.880000px;}
.fs1{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.240000px;}
.y4{bottom:78.156000px;}
.y52{bottom:113.796000px;}
.y6d{bottom:115.596000px;}
.yec{bottom:117.756000px;}
.y9c{bottom:118.836000px;}
.ybe{bottom:121.356000px;}
.y77{bottom:136.836000px;}
.y51{bottom:139.716000px;}
.y6c{bottom:141.516000px;}
.yeb{bottom:143.676000px;}
.y9b{bottom:144.756000px;}
.ybd{bottom:147.276000px;}
.y76{bottom:162.750000px;}
.y50{bottom:165.630000px;}
.ycc{bottom:166.710000px;}
.y6b{bottom:167.430000px;}
.yea{bottom:169.590000px;}
.y9a{bottom:170.670000px;}
.ybc{bottom:173.190000px;}
.y2a{bottom:178.590000px;}
.y75{bottom:188.670000px;}
.y4f{bottom:192.630000px;}
.y6a{bottom:192.990000px;}
.ye9{bottom:195.195000px;}
.y99{bottom:196.275000px;}
.ybb{bottom:199.155000px;}
.y29{bottom:204.555000px;}
.y74{bottom:214.635000px;}
.y4e{bottom:218.595000px;}
.y69{bottom:218.955000px;}
.ycb{bottom:219.675000px;}
.y98{bottom:222.195000px;}
.yba{bottom:224.715000px;}
.y28{bottom:230.475000px;}
.y73{bottom:240.195000px;}
.y4d{bottom:244.155000px;}
.y68{bottom:244.875000px;}
.yca{bottom:245.235000px;}
.y97{bottom:248.115000px;}
.ye8{bottom:249.555000px;}
.yb9{bottom:250.635000px;}
.y72{bottom:253.875000px;}
.y27{bottom:256.035000px;}
.y4c{bottom:270.075000px;}
.y67{bottom:270.795000px;}
.yc9{bottom:272.235000px;}
.y96{bottom:274.035000px;}
.ye7{bottom:275.475000px;}
.yb8{bottom:276.555000px;}
.y26{bottom:281.955000px;}
.y4b{bottom:295.995000px;}
.y66{bottom:296.715000px;}
.yc8{bottom:298.155000px;}
.yef{bottom:299.235000px;}
.y95{bottom:299.955000px;}
.ye6{bottom:301.395000px;}
.yb7{bottom:302.475000px;}
.y25{bottom:308.595000px;}
.y4a{bottom:321.945000px;}
.y65{bottom:322.665000px;}
.yee{bottom:324.825000px;}
.yc7{bottom:325.185000px;}
.y94{bottom:325.905000px;}
.ye5{bottom:327.345000px;}
.yb6{bottom:328.425000px;}
.y24{bottom:336.345000px;}
.y64{bottom:348.585000px;}
.y49{bottom:348.945000px;}
.yc6{bottom:351.105000px;}
.y93{bottom:351.825000px;}
.ye4{bottom:353.265000px;}
.yb5{bottom:354.345000px;}
.y23{bottom:362.265000px;}
.y63{bottom:374.505000px;}
.y48{bottom:374.865000px;}
.yc5{bottom:377.025000px;}
.y92{bottom:377.745000px;}
.ye3{bottom:379.185000px;}
.yb4{bottom:380.265000px;}
.y22{bottom:388.185000px;}
.y62{bottom:400.065000px;}
.y47{bottom:400.785000px;}
.yc4{bottom:402.945000px;}
.y91{bottom:403.305000px;}
.ye2{bottom:405.105000px;}
.yb3{bottom:406.185000px;}
.y21{bottom:414.105000px;}
.y61{bottom:425.985000px;}
.y46{bottom:426.345000px;}
.y90{bottom:429.225000px;}
.yc3{bottom:429.585000px;}
.ye1{bottom:430.665000px;}
.yb2{bottom:431.745000px;}
.y20{bottom:440.025000px;}
.y60{bottom:451.950000px;}
.y45{bottom:452.310000px;}
.y8f{bottom:455.190000px;}
.yc2{bottom:455.550000px;}
.ye0{bottom:456.630000px;}
.yb1{bottom:457.710000px;}
.y1f{bottom:465.990000px;}
.y5f{bottom:477.870000px;}
.y44{bottom:479.310000px;}
.y8e{bottom:481.110000px;}
.yc1{bottom:482.550000px;}
.yb0{bottom:483.630000px;}
.y1e{bottom:491.550000px;}
.y5e{bottom:503.790000px;}
.y43{bottom:505.230000px;}
.y8d{bottom:507.030000px;}
.yc0{bottom:508.470000px;}
.yaf{bottom:509.550000px;}
.y1d{bottom:517.470000px;}
.y5d{bottom:529.710000px;}
.y42{bottom:531.150000px;}
.y8c{bottom:532.950000px;}
.y71{bottom:533.310000px;}
.ydf{bottom:534.390000px;}
.yae{bottom:535.470000px;}
.y1c{bottom:543.390000px;}
.y70{bottom:550.590000px;}
.y5c{bottom:555.630000px;}
.y41{bottom:557.070000px;}
.y8b{bottom:558.870000px;}
.yde{bottom:560.310000px;}
.yad{bottom:561.390000px;}
.y1b{bottom:569.310000px;}
.y5b{bottom:581.580000px;}
.y40{bottom:583.020000px;}
.y8a{bottom:584.460000px;}
.ydd{bottom:586.260000px;}
.yac{bottom:587.340000px;}
.y1a{bottom:595.260000px;}
.y5a{bottom:607.140000px;}
.y3f{bottom:608.940000px;}
.y89{bottom:610.380000px;}
.ydc{bottom:612.180000px;}
.yab{bottom:613.260000px;}
.y19{bottom:621.180000px;}
.y59{bottom:633.060000px;}
.y3e{bottom:634.500000px;}
.y88{bottom:636.300000px;}
.ydb{bottom:637.740000px;}
.yaa{bottom:638.820000px;}
.y18{bottom:647.100000px;}
.y58{bottom:658.980000px;}
.y3d{bottom:660.420000px;}
.y87{bottom:662.220000px;}
.yda{bottom:663.660000px;}
.ya9{bottom:664.740000px;}
.y17{bottom:673.020000px;}
.y57{bottom:685.620000px;}
.y3c{bottom:686.340000px;}
.y86{bottom:688.140000px;}
.yd9{bottom:689.580000px;}
.ya8{bottom:690.660000px;}
.y16{bottom:699.690000px;}
.y3b{bottom:712.290000px;}
.y56{bottom:713.010000px;}
.y85{bottom:714.090000px;}
.yd8{bottom:715.530000px;}
.ya7{bottom:716.610000px;}
.y15{bottom:727.050000px;}
.y3a{bottom:739.290000px;}
.y84{bottom:740.010000px;}
.yd7{bottom:741.450000px;}
.ybf{bottom:742.530000px;}
.ya6{bottom:747.930000px;}
.y14{bottom:752.970000px;}
.y39{bottom:765.210000px;}
.y83{bottom:765.930000px;}
.yd6{bottom:767.370000px;}
.ya5{bottom:768.450000px;}
.y13{bottom:782.850000px;}
.y38{bottom:791.130000px;}
.y82{bottom:791.490000px;}
.yd5{bottom:793.290000px;}
.ya4{bottom:794.370000px;}
.y12{bottom:808.770000px;}
.y37{bottom:817.050000px;}
.y81{bottom:817.410000px;}
.yd4{bottom:818.850000px;}
.ya3{bottom:819.930000px;}
.y11{bottom:834.375000px;}
.y6f{bottom:836.895000px;}
.y36{bottom:842.655000px;}
.y80{bottom:843.375000px;}
.y55{bottom:843.735000px;}
.yd3{bottom:844.815000px;}
.ya2{bottom:845.895000px;}
.y6e{bottom:854.175000px;}
.y10{bottom:866.415000px;}
.y7f{bottom:869.295000px;}
.y35{bottom:869.655000px;}
.yd2{bottom:870.735000px;}
.ya1{bottom:871.815000px;}
.yf{bottom:886.215000px;}
.y7e{bottom:895.215000px;}
.y34{bottom:895.575000px;}
.yd1{bottom:896.655000px;}
.ya0{bottom:897.735000px;}
.ye{bottom:912.135000px;}
.y7d{bottom:921.135000px;}
.y33{bottom:921.495000px;}
.yed{bottom:921.855000px;}
.yd0{bottom:922.575000px;}
.y9f{bottom:923.655000px;}
.yd{bottom:938.055000px;}
.y32{bottom:947.415000px;}
.y7c{bottom:947.775000px;}
.ycf{bottom:948.495000px;}
.y9e{bottom:949.575000px;}
.yc{bottom:964.005000px;}
.y54{bottom:973.365000px;}
.y31{bottom:974.445000px;}
.y7b{bottom:975.165000px;}
.y9d{bottom:975.525000px;}
.yb{bottom:993.525000px;}
.y30{bottom:1000.365000px;}
.y7a{bottom:1001.445000px;}
.ya{bottom:1024.845000px;}
.y2f{bottom:1025.925000px;}
.y79{bottom:1027.005000px;}
.y9{bottom:1050.765000px;}
.y2e{bottom:1051.845000px;}
.y78{bottom:1052.925000px;}
.y8{bottom:1070.925000px;}
.y53{bottom:1077.810000px;}
.y2d{bottom:1078.890000px;}
.y7{bottom:1096.530000px;}
.yce{bottom:1103.730000px;}
.y2c{bottom:1104.810000px;}
.y6{bottom:1126.410000px;}
.ycd{bottom:1129.650000px;}
.y2b{bottom:1130.730000px;}
.y3{bottom:1148.730000px;}
.y2{bottom:1170.690000px;}
.y1{bottom:1193.370000px;}
.h6{height:38.158594px;}
.ha{height:39.183750px;}
.h10{height:54.219375px;}
.hf{height:54.386719px;}
.h9{height:59.328281px;}
.hb{height:59.357813px;}
.h7{height:59.758594px;}
.h11{height:59.878594px;}
.he{height:59.938594px;}
.h8{height:60.952500px;}
.hd{height:62.163910px;}
.h5{height:63.663750px;}
.hc{height:66.757500px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h12{height:74.004654px;}
.h4{height:78.367500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x3{left:135.035987px;}
.x4{left:162.074987px;}
.x2{left:239.864987px;}
.x5{left:650.054987px;}
.x6{left:653.654987px;}
.x7{left:658.334987px;}
@media print{
.v3{vertical-align:-21.760000pt;}
.v4{vertical-align:-19.200000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.264000pt;}
.lse{letter-spacing:-0.848000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.645333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.414933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls6{letter-spacing:0.017920pt;}
.lsb{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.414720pt;}
.ls16{letter-spacing:0.450667pt;}
.ls11{letter-spacing:0.622080pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:3.200000pt;}
.ls12{letter-spacing:5.866667pt;}
.lsc{letter-spacing:9.600000pt;}
.lsd{letter-spacing:12.160000pt;}
.ls14{letter-spacing:14.494720pt;}
.ls1{letter-spacing:17.280000pt;}
.ls13{letter-spacing:41.385387pt;}
.lsa{letter-spacing:56.745387pt;}
.ws8{word-spacing:-53.760000pt;}
.wse{word-spacing:-14.016000pt;}
.wsd{word-spacing:-13.890667pt;}
.ws2{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.025067pt;}
.ws9{word-spacing:-12.592000pt;}
.wsa{word-spacing:-12.176000pt;}
.wsb{word-spacing:-12.160000pt;}
.ws5{word-spacing:-9.280000pt;}
.wsc{word-spacing:-9.262080pt;}
.ws4{word-spacing:-8.651520pt;}
.ws0{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws6{word-spacing:-7.994667pt;}
.ws7{word-spacing:0.000000pt;}
._9{margin-left:-3.005013pt;}
._0{margin-left:-1.792000pt;}
._4{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._2{width:1.792000pt;}
._3{width:2.794667pt;}
._8{width:3.942400pt;}
._b{width:5.611093pt;}
._a{width:6.522880pt;}
._c{width:8.230827pt;}
._16{width:9.144320pt;}
._12{width:10.137173pt;}
._11{width:11.230293pt;}
._13{width:12.526080pt;}
._14{width:14.667947pt;}
._5{width:16.343040pt;}
._7{width:17.878613pt;}
._6{width:19.371520pt;}
._d{width:20.321280pt;}
._15{width:21.869653pt;}
._18{width:23.284907pt;}
._17{width:24.299520pt;}
._1c{width:26.882987pt;}
._1d{width:27.883520pt;}
._e{width:29.460480pt;}
._10{width:30.412800pt;}
._f{width:31.303680pt;}
._1a{width:34.298880pt;}
._1b{width:35.343787pt;}
._19{width:36.431360pt;}
._1f{width:38.242987pt;}
._1e{width:40.155947pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.880000pt;}
.y4{bottom:69.472000pt;}
.y52{bottom:101.152000pt;}
.y6d{bottom:102.752000pt;}
.yec{bottom:104.672000pt;}
.y9c{bottom:105.632000pt;}
.ybe{bottom:107.872000pt;}
.y77{bottom:121.632000pt;}
.y51{bottom:124.192000pt;}
.y6c{bottom:125.792000pt;}
.yeb{bottom:127.712000pt;}
.y9b{bottom:128.672000pt;}
.ybd{bottom:130.912000pt;}
.y76{bottom:144.666667pt;}
.y50{bottom:147.226667pt;}
.ycc{bottom:148.186667pt;}
.y6b{bottom:148.826667pt;}
.yea{bottom:150.746667pt;}
.y9a{bottom:151.706667pt;}
.ybc{bottom:153.946667pt;}
.y2a{bottom:158.746667pt;}
.y75{bottom:167.706667pt;}
.y4f{bottom:171.226667pt;}
.y6a{bottom:171.546667pt;}
.ye9{bottom:173.506667pt;}
.y99{bottom:174.466667pt;}
.ybb{bottom:177.026667pt;}
.y29{bottom:181.826667pt;}
.y74{bottom:190.786667pt;}
.y4e{bottom:194.306667pt;}
.y69{bottom:194.626667pt;}
.ycb{bottom:195.266667pt;}
.y98{bottom:197.506667pt;}
.yba{bottom:199.746667pt;}
.y28{bottom:204.866667pt;}
.y73{bottom:213.506667pt;}
.y4d{bottom:217.026667pt;}
.y68{bottom:217.666667pt;}
.yca{bottom:217.986667pt;}
.y97{bottom:220.546667pt;}
.ye8{bottom:221.826667pt;}
.yb9{bottom:222.786667pt;}
.y72{bottom:225.666667pt;}
.y27{bottom:227.586667pt;}
.y4c{bottom:240.066667pt;}
.y67{bottom:240.706667pt;}
.yc9{bottom:241.986667pt;}
.y96{bottom:243.586667pt;}
.ye7{bottom:244.866667pt;}
.yb8{bottom:245.826667pt;}
.y26{bottom:250.626667pt;}
.y4b{bottom:263.106667pt;}
.y66{bottom:263.746667pt;}
.yc8{bottom:265.026667pt;}
.yef{bottom:265.986667pt;}
.y95{bottom:266.626667pt;}
.ye6{bottom:267.906667pt;}
.yb7{bottom:268.866667pt;}
.y25{bottom:274.306667pt;}
.y4a{bottom:286.173333pt;}
.y65{bottom:286.813333pt;}
.yee{bottom:288.733333pt;}
.yc7{bottom:289.053333pt;}
.y94{bottom:289.693333pt;}
.ye5{bottom:290.973333pt;}
.yb6{bottom:291.933333pt;}
.y24{bottom:298.973333pt;}
.y64{bottom:309.853333pt;}
.y49{bottom:310.173333pt;}
.yc6{bottom:312.093333pt;}
.y93{bottom:312.733333pt;}
.ye4{bottom:314.013333pt;}
.yb5{bottom:314.973333pt;}
.y23{bottom:322.013333pt;}
.y63{bottom:332.893333pt;}
.y48{bottom:333.213333pt;}
.yc5{bottom:335.133333pt;}
.y92{bottom:335.773333pt;}
.ye3{bottom:337.053333pt;}
.yb4{bottom:338.013333pt;}
.y22{bottom:345.053333pt;}
.y62{bottom:355.613333pt;}
.y47{bottom:356.253333pt;}
.yc4{bottom:358.173333pt;}
.y91{bottom:358.493333pt;}
.ye2{bottom:360.093333pt;}
.yb3{bottom:361.053333pt;}
.y21{bottom:368.093333pt;}
.y61{bottom:378.653333pt;}
.y46{bottom:378.973333pt;}
.y90{bottom:381.533333pt;}
.yc3{bottom:381.853333pt;}
.ye1{bottom:382.813333pt;}
.yb2{bottom:383.773333pt;}
.y20{bottom:391.133333pt;}
.y60{bottom:401.733333pt;}
.y45{bottom:402.053333pt;}
.y8f{bottom:404.613333pt;}
.yc2{bottom:404.933333pt;}
.ye0{bottom:405.893333pt;}
.yb1{bottom:406.853333pt;}
.y1f{bottom:414.213333pt;}
.y5f{bottom:424.773333pt;}
.y44{bottom:426.053333pt;}
.y8e{bottom:427.653333pt;}
.yc1{bottom:428.933333pt;}
.yb0{bottom:429.893333pt;}
.y1e{bottom:436.933333pt;}
.y5e{bottom:447.813333pt;}
.y43{bottom:449.093333pt;}
.y8d{bottom:450.693333pt;}
.yc0{bottom:451.973333pt;}
.yaf{bottom:452.933333pt;}
.y1d{bottom:459.973333pt;}
.y5d{bottom:470.853333pt;}
.y42{bottom:472.133333pt;}
.y8c{bottom:473.733333pt;}
.y71{bottom:474.053333pt;}
.ydf{bottom:475.013333pt;}
.yae{bottom:475.973333pt;}
.y1c{bottom:483.013333pt;}
.y70{bottom:489.413333pt;}
.y5c{bottom:493.893333pt;}
.y41{bottom:495.173333pt;}
.y8b{bottom:496.773333pt;}
.yde{bottom:498.053333pt;}
.yad{bottom:499.013333pt;}
.y1b{bottom:506.053333pt;}
.y5b{bottom:516.960000pt;}
.y40{bottom:518.240000pt;}
.y8a{bottom:519.520000pt;}
.ydd{bottom:521.120000pt;}
.yac{bottom:522.080000pt;}
.y1a{bottom:529.120000pt;}
.y5a{bottom:539.680000pt;}
.y3f{bottom:541.280000pt;}
.y89{bottom:542.560000pt;}
.ydc{bottom:544.160000pt;}
.yab{bottom:545.120000pt;}
.y19{bottom:552.160000pt;}
.y59{bottom:562.720000pt;}
.y3e{bottom:564.000000pt;}
.y88{bottom:565.600000pt;}
.ydb{bottom:566.880000pt;}
.yaa{bottom:567.840000pt;}
.y18{bottom:575.200000pt;}
.y58{bottom:585.760000pt;}
.y3d{bottom:587.040000pt;}
.y87{bottom:588.640000pt;}
.yda{bottom:589.920000pt;}
.ya9{bottom:590.880000pt;}
.y17{bottom:598.240000pt;}
.y57{bottom:609.440000pt;}
.y3c{bottom:610.080000pt;}
.y86{bottom:611.680000pt;}
.yd9{bottom:612.960000pt;}
.ya8{bottom:613.920000pt;}
.y16{bottom:621.946667pt;}
.y3b{bottom:633.146667pt;}
.y56{bottom:633.786667pt;}
.y85{bottom:634.746667pt;}
.yd8{bottom:636.026667pt;}
.ya7{bottom:636.986667pt;}
.y15{bottom:646.266667pt;}
.y3a{bottom:657.146667pt;}
.y84{bottom:657.786667pt;}
.yd7{bottom:659.066667pt;}
.ybf{bottom:660.026667pt;}
.ya6{bottom:664.826667pt;}
.y14{bottom:669.306667pt;}
.y39{bottom:680.186667pt;}
.y83{bottom:680.826667pt;}
.yd6{bottom:682.106667pt;}
.ya5{bottom:683.066667pt;}
.y13{bottom:695.866667pt;}
.y38{bottom:703.226667pt;}
.y82{bottom:703.546667pt;}
.yd5{bottom:705.146667pt;}
.ya4{bottom:706.106667pt;}
.y12{bottom:718.906667pt;}
.y37{bottom:726.266667pt;}
.y81{bottom:726.586667pt;}
.yd4{bottom:727.866667pt;}
.ya3{bottom:728.826667pt;}
.y11{bottom:741.666667pt;}
.y6f{bottom:743.906667pt;}
.y36{bottom:749.026667pt;}
.y80{bottom:749.666667pt;}
.y55{bottom:749.986667pt;}
.yd3{bottom:750.946667pt;}
.ya2{bottom:751.906667pt;}
.y6e{bottom:759.266667pt;}
.y10{bottom:770.146667pt;}
.y7f{bottom:772.706667pt;}
.y35{bottom:773.026667pt;}
.yd2{bottom:773.986667pt;}
.ya1{bottom:774.946667pt;}
.yf{bottom:787.746667pt;}
.y7e{bottom:795.746667pt;}
.y34{bottom:796.066667pt;}
.yd1{bottom:797.026667pt;}
.ya0{bottom:797.986667pt;}
.ye{bottom:810.786667pt;}
.y7d{bottom:818.786667pt;}
.y33{bottom:819.106667pt;}
.yed{bottom:819.426667pt;}
.yd0{bottom:820.066667pt;}
.y9f{bottom:821.026667pt;}
.yd{bottom:833.826667pt;}
.y32{bottom:842.146667pt;}
.y7c{bottom:842.466667pt;}
.ycf{bottom:843.106667pt;}
.y9e{bottom:844.066667pt;}
.yc{bottom:856.893333pt;}
.y54{bottom:865.213333pt;}
.y31{bottom:866.173333pt;}
.y7b{bottom:866.813333pt;}
.y9d{bottom:867.133333pt;}
.yb{bottom:883.133333pt;}
.y30{bottom:889.213333pt;}
.y7a{bottom:890.173333pt;}
.ya{bottom:910.973333pt;}
.y2f{bottom:911.933333pt;}
.y79{bottom:912.893333pt;}
.y9{bottom:934.013333pt;}
.y2e{bottom:934.973333pt;}
.y78{bottom:935.933333pt;}
.y8{bottom:951.933333pt;}
.y53{bottom:958.053333pt;}
.y2d{bottom:959.013333pt;}
.y7{bottom:974.693333pt;}
.yce{bottom:981.093333pt;}
.y2c{bottom:982.053333pt;}
.y6{bottom:1001.253333pt;}
.ycd{bottom:1004.133333pt;}
.y2b{bottom:1005.093333pt;}
.y3{bottom:1021.093333pt;}
.y2{bottom:1040.613333pt;}
.y1{bottom:1060.773333pt;}
.h6{height:33.918750pt;}
.ha{height:34.830000pt;}
.h10{height:48.195000pt;}
.hf{height:48.343750pt;}
.h9{height:52.736250pt;}
.hb{height:52.762500pt;}
.h7{height:53.118750pt;}
.h11{height:53.225417pt;}
.he{height:53.278750pt;}
.h8{height:54.180000pt;}
.hd{height:55.256809pt;}
.h5{height:56.590000pt;}
.hc{height:59.340000pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h12{height:65.781915pt;}
.h4{height:69.660000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x3{left:120.031988pt;}
.x4{left:144.066655pt;}
.x2{left:213.213322pt;}
.x5{left:577.826655pt;}
.x6{left:581.026655pt;}
.x7{left:585.186655pt;}
}




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