
    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_bc7c3ecc7ed4fc92c14df784.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_29cd5ac3cd1de6d2d5f6a1c9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ac159060a1d2a8bbcba3aacc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_870cf133ba4e1322d07eff43.woff2')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_d8190d162ff0ecd7eb2db082.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_3ecc9ab92b71f23ab15cfa5d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f625f8f0839c137077a791c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053711;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_0898e713dbe71c6fda9e8a16.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_f4c1adfa3cb0ede71cda7144.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053711;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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.120000px;}
.v5{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.880000px;}
.v4{vertical-align:24.120000px;}
.v2{vertical-align:29.880000px;}
.v1{vertical-align:85.680000px;}
.ls8{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.027600px;}
.ls15{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.022200px;}
.lsa{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.126000px;}
.ls6{letter-spacing:0.139200px;}
.lsd{letter-spacing:0.144000px;}
.lse{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.444000px;}
.ls17{letter-spacing:5.940000px;}
.ls14{letter-spacing:8.220000px;}
.ls13{letter-spacing:83.160000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-54.000000px;}
.ws3{word-spacing:-20.430000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.650000px;}
.ws5{word-spacing:-14.220000px;}
.ws4{word-spacing:-14.192400px;}
.wsf{word-spacing:-13.626000px;}
.ws9{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.wse{word-spacing:-13.482000px;}
.ws8{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.374000px;}
.ws6{word-spacing:-9.000000px;}
.wsd{word-spacing:-8.712000px;}
.wsb{word-spacing:0.000000px;}
.ws11{word-spacing:4.446000px;}
.ws10{word-spacing:31.464000px;}
._1{margin-left:-3.141018px;}
._0{margin-left:-1.031976px;}
._3{width:1.080606px;}
._5{width:2.837988px;}
._4{width:4.698000px;}
._7{width:5.832000px;}
._a{width:6.858000px;}
._9{width:8.262000px;}
._e{width:10.211760px;}
._c{width:11.340216px;}
._b{width:12.371976px;}
._8{width:14.975982px;}
._6{width:25.200000px;}
._2{width:165.909036px;}
._d{width:956.885754px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs6{font-size:42.120000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.fs5{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:2.970000px;}
.y89{bottom:3.060000px;}
.y31{bottom:6.570000px;}
.y33{bottom:6.750000px;}
.ya6{bottom:6.780000px;}
.y36{bottom:6.840000px;}
.y8e{bottom:6.870000px;}
.y30{bottom:7.560000px;}
.y62{bottom:7.650000px;}
.y87{bottom:18.540000px;}
.y60{bottom:18.570000px;}
.y88{bottom:18.810000px;}
.y2e{bottom:19.260000px;}
.y1{bottom:76.620000px;}
.ycf{bottom:99.210000px;}
.yb7{bottom:102.450000px;}
.y58{bottom:114.060000px;}
.yce{bottom:114.690000px;}
.yb6{bottom:118.290000px;}
.y57{bottom:129.540000px;}
.yb5{bottom:134.130000px;}
.ycd{bottom:140.700000px;}
.y2a{bottom:154.110000px;}
.y85{bottom:159.330000px;}
.yb4{bottom:165.630000px;}
.y29{bottom:169.680000px;}
.ycc{bottom:172.200000px;}
.yb3{bottom:182.280000px;}
.y84{bottom:182.550000px;}
.y28{bottom:185.160000px;}
.yb2{bottom:198.030000px;}
.y27{bottom:200.730000px;}
.y56{bottom:203.610000px;}
.y83{bottom:205.770000px;}
.yb1{bottom:214.590000px;}
.y26{bottom:216.210000px;}
.y55{bottom:219.090000px;}
.y82{bottom:229.080000px;}
.yb0{bottom:230.160000px;}
.y25{bottom:231.690000px;}
.y81{bottom:252.300000px;}
.yaf{bottom:259.140000px;}
.y24{bottom:262.650000px;}
.y80{bottom:275.520000px;}
.yae{bottom:282.360000px;}
.y23{bottom:293.880000px;}
.y7f{bottom:298.830000px;}
.yad{bottom:305.580000px;}
.y7e{bottom:322.050000px;}
.y54{bottom:327.000000px;}
.yac{bottom:328.890000px;}
.y22{bottom:334.020000px;}
.y7d{bottom:345.270000px;}
.y21{bottom:349.590000px;}
.yab{bottom:352.110000px;}
.y53{bottom:358.500000px;}
.y20{bottom:365.070000px;}
.y7c{bottom:368.580000px;}
.y52{bottom:374.070000px;}
.yaa{bottom:375.330000px;}
.y1f{bottom:380.640000px;}
.y51{bottom:389.550000px;}
.y7b{bottom:391.800000px;}
.y1e{bottom:396.120000px;}
.ya9{bottom:398.640000px;}
.y7a{bottom:415.020000px;}
.ya8{bottom:421.860000px;}
.y1d{bottom:427.350000px;}
.y79{bottom:440.580000px;}
.y1c{bottom:442.830000px;}
.ya7{bottom:445.080000px;}
.y1b{bottom:458.400000px;}
.y78{bottom:463.800000px;}
.ya5{bottom:468.390000px;}
.y1a{bottom:473.880000px;}
.y50{bottom:482.460000px;}
.y77{bottom:487.050000px;}
.y19{bottom:489.480000px;}
.ya4{bottom:491.640000px;}
.y4f{bottom:497.940000px;}
.ycb{bottom:502.620000px;}
.y18{bottom:504.960000px;}
.y76{bottom:510.360000px;}
.ya3{bottom:514.860000px;}
.yca{bottom:518.100000px;}
.y4e{bottom:529.170000px;}
.y75{bottom:533.580000px;}
.yc9{bottom:533.670000px;}
.y17{bottom:535.920000px;}
.ya2{bottom:540.420000px;}
.y4d{bottom:544.650000px;}
.yc8{bottom:549.240000px;}
.y74{bottom:556.800000px;}
.y4c{bottom:560.220000px;}
.ya1{bottom:563.640000px;}
.yc7{bottom:564.810000px;}
.y4b{bottom:575.700000px;}
.y73{bottom:580.110000px;}
.yc6{bottom:580.290000px;}
.y16{bottom:582.180000px;}
.ya0{bottom:586.860000px;}
.y4a{bottom:591.270000px;}
.yc5{bottom:595.950000px;}
.y72{bottom:603.330000px;}
.y49{bottom:606.750000px;}
.y9f{bottom:610.170000px;}
.yc4{bottom:611.430000px;}
.y15{bottom:616.740000px;}
.y48{bottom:622.320000px;}
.y71{bottom:626.550000px;}
.yc3{bottom:627.990000px;}
.y14{bottom:632.220000px;}
.y9e{bottom:633.390000px;}
.yc2{bottom:643.470000px;}
.y13{bottom:647.790000px;}
.y70{bottom:649.860000px;}
.y47{bottom:653.550000px;}
.y9d{bottom:656.610000px;}
.yc1{bottom:660.120000px;}
.y12{bottom:663.270000px;}
.y46{bottom:669.030000px;}
.y6f{bottom:673.080000px;}
.yc0{bottom:675.600000px;}
.y11{bottom:678.840000px;}
.y9c{bottom:679.920000px;}
.ye3{bottom:680.730000px;}
.y45{bottom:684.600000px;}
.ybf{bottom:691.170000px;}
.y10{bottom:694.410000px;}
.y6e{bottom:696.300000px;}
.y44{bottom:700.080000px;}
.y9b{bottom:703.140000px;}
.ye2{bottom:711.960000px;}
.yf{bottom:716.640000px;}
.y6d{bottom:719.610000px;}
.ybe{bottom:722.310000px;}
.y9a{bottom:726.360000px;}
.ye1{bottom:727.530000px;}
.y43{bottom:731.310000px;}
.y6c{bottom:742.830000px;}
.ye0{bottom:743.100000px;}
.y42{bottom:746.790000px;}
.y99{bottom:749.670000px;}
.ydf{bottom:758.760000px;}
.ye{bottom:761.460000px;}
.y41{bottom:762.360000px;}
.y6b{bottom:766.050000px;}
.y98{bottom:772.890000px;}
.yde{bottom:774.330000px;}
.yd{bottom:776.940000px;}
.y40{bottom:777.840000px;}
.y6a{bottom:789.360000px;}
.ydd{bottom:789.900000px;}
.yc{bottom:792.510000px;}
.y3f{bottom:793.320000px;}
.y97{bottom:796.110000px;}
.ydc{bottom:805.560000px;}
.y69{bottom:812.580000px;}
.ydb{bottom:821.130000px;}
.y96{bottom:821.670000px;}
.y3e{bottom:824.550000px;}
.yb{bottom:827.160000px;}
.y68{bottom:835.800000px;}
.y3d{bottom:840.120000px;}
.y95{bottom:844.890000px;}
.yda{bottom:846.870000px;}
.ya{bottom:848.760000px;}
.y3c{bottom:855.600000px;}
.y67{bottom:859.110000px;}
.y94{bottom:868.110000px;}
.y3b{bottom:871.170000px;}
.y9{bottom:877.380000px;}
.yd9{bottom:878.370000px;}
.y66{bottom:882.330000px;}
.y3a{bottom:886.650000px;}
.y93{bottom:891.420000px;}
.y39{bottom:902.130000px;}
.yd8{bottom:904.110000px;}
.y65{bottom:905.550000px;}
.y8{bottom:912.300000px;}
.y92{bottom:914.640000px;}
.y64{bottom:928.860000px;}
.y38{bottom:933.090000px;}
.yd7{bottom:935.520000px;}
.y91{bottom:937.860000px;}
.y7{bottom:951.270000px;}
.y63{bottom:952.080000px;}
.y90{bottom:961.170000px;}
.yd6{bottom:961.350000px;}
.y61{bottom:975.300000px;}
.y6{bottom:975.390000px;}
.y37{bottom:977.640000px;}
.y8f{bottom:984.390000px;}
.yd5{bottom:992.760000px;}
.y35{bottom:1000.860000px;}
.y8d{bottom:1007.610000px;}
.yd4{bottom:1018.530000px;}
.y34{bottom:1024.200000px;}
.ybd{bottom:1029.150000px;}
.y8c{bottom:1030.950000px;}
.y4{bottom:1034.100000px;}
.y5e{bottom:1035.900000px;}
.y5{bottom:1039.140000px;}
.ybc{bottom:1044.720000px;}
.y32{bottom:1047.420000px;}
.yd3{bottom:1050.030000px;}
.y8b{bottom:1054.170000px;}
.y3{bottom:1057.320000px;}
.ybb{bottom:1060.200000px;}
.yd2{bottom:1065.510000px;}
.y5d{bottom:1067.130000px;}
.y2d{bottom:1070.640000px;}
.yba{bottom:1075.770000px;}
.y8a{bottom:1077.390000px;}
.y5c{bottom:1082.700000px;}
.yb9{bottom:1091.250000px;}
.yd1{bottom:1091.340000px;}
.y2f{bottom:1093.950000px;}
.y5b{bottom:1098.450000px;}
.y86{bottom:1102.950000px;}
.y5a{bottom:1114.020000px;}
.yb8{bottom:1122.480000px;}
.yd0{bottom:1122.750000px;}
.y59{bottom:1138.050000px;}
.y2c{bottom:1138.320000px;}
.y2{bottom:1157.940000px;}
.y2b{bottom:1192.860000px;}
.h13{height:22.500000px;}
.h14{height:22.522500px;}
.h17{height:22.530000px;}
.h12{height:24.750000px;}
.h15{height:31.072500px;}
.h18{height:31.320000px;}
.hb{height:35.314453px;}
.h11{height:48.060000px;}
.ha{height:52.971680px;}
.hd{height:52.998047px;}
.hc{height:54.421875px;}
.h6{height:55.796836px;}
.he{height:59.434453px;}
.hf{height:59.452031px;}
.h16{height:60.401250px;}
.h2{height:64.657617px;}
.h10{height:66.394687px;}
.h9{height:72.329063px;}
.h3{height:72.562500px;}
.h4{height:81.632812px;}
.h7{height:84.535312px;}
.h8{height:96.870938px;}
.h5{height:143.004375px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w6{width:76.320000px;}
.w7{width:77.070000px;}
.w9{width:84.690000px;}
.wa{width:84.720000px;}
.w8{width:90.000000px;}
.w2{width:116.094000px;}
.we{width:116.640000px;}
.wd{width:125.670000px;}
.w11{width:137.610000px;}
.wc{width:137.640000px;}
.w3{width:153.750000px;}
.wb{width:163.980000px;}
.w10{width:164.010000px;}
.w5{width:169.770000px;}
.w4{width:175.050000px;}
.w12{width:428.010000px;}
.wf{width:545.010000px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x24{left:7.740000px;}
.x10{left:10.890000px;}
.x1e{left:14.400000px;}
.x1f{left:17.730000px;}
.x1c{left:19.800000px;}
.x20{left:23.220000px;}
.x17{left:25.020000px;}
.x1d{left:26.640000px;}
.x19{left:28.380000px;}
.xd{left:31.500000px;}
.x38{left:33.570000px;}
.x1b{left:35.460000px;}
.x39{left:36.900000px;}
.x16{left:41.340000px;}
.x6{left:43.650000px;}
.x2b{left:45.000000px;}
.x9{left:46.620000px;}
.x31{left:47.790000px;}
.x2d{left:50.430000px;}
.x2a{left:53.850000px;}
.x2f{left:57.180000px;}
.x37{left:59.580000px;}
.x14{left:61.830000px;}
.x2c{left:63.450000px;}
.x36{left:65.610000px;}
.x12{left:66.996000px;}
.x3c{left:74.250000px;}
.x29{left:78.570000px;}
.x3d{left:101.250000px;}
.xf{left:145.110000px;}
.x3b{left:154.110000px;}
.x3a{left:163.470000px;}
.x7{left:169.140000px;}
.x23{left:180.570000px;}
.x8{left:198.120000px;}
.x28{left:203.790000px;}
.x30{left:215.580000px;}
.x2e{left:221.970000px;}
.x33{left:239.070000px;}
.x4{left:244.020000px;}
.x22{left:251.580000px;}
.x32{left:259.860000px;}
.x11{left:261.660000px;}
.x2{left:270.210000px;}
.x3e{left:275.340000px;}
.xe{left:284.970000px;}
.x3{left:290.460000px;}
.x40{left:310.350000px;}
.x42{left:333.840000px;}
.x18{left:338.340000px;}
.x25{left:344.910000px;}
.xc{left:355.620000px;}
.x3f{left:373.200000px;}
.x21{left:381.120000px;}
.xb{left:394.980000px;}
.x34{left:403.440000px;}
.xa{left:412.170000px;}
.x13{left:415.770000px;}
.x41{left:417.480000px;}
.x1{left:440.610000px;}
.x26{left:482.910000px;}
.x5{left:506.490000px;}
.x35{left:541.410000px;}
.x15{left:591.180000px;}
.x27{left:608.940000px;}
.x1a{left:676.260000px;}
@media print{
.v3{vertical-align:-21.440000pt;}
.v5{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.560000pt;}
.v4{vertical-align:21.440000pt;}
.v2{vertical-align:26.560000pt;}
.v1{vertical-align:76.160000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.024533pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.019733pt;}
.lsa{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.112000pt;}
.ls6{letter-spacing:0.123733pt;}
.lsd{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.394667pt;}
.ls17{letter-spacing:5.280000pt;}
.ls14{letter-spacing:7.306667pt;}
.ls13{letter-spacing:73.920000pt;}
.wsc{word-spacing:-48.000000pt;}
.ws3{word-spacing:-18.160000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.800000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws4{word-spacing:-12.615467pt;}
.wsf{word-spacing:-12.112000pt;}
.ws9{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.984000pt;}
.ws8{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.888000pt;}
.ws6{word-spacing:-8.000000pt;}
.wsd{word-spacing:-7.744000pt;}
.wsb{word-spacing:0.000000pt;}
.ws11{word-spacing:3.952000pt;}
.ws10{word-spacing:27.968000pt;}
._1{margin-left:-2.792016pt;}
._0{margin-left:-0.917312pt;}
._3{width:0.960539pt;}
._5{width:2.522656pt;}
._4{width:4.176000pt;}
._7{width:5.184000pt;}
._a{width:6.096000pt;}
._9{width:7.344000pt;}
._e{width:9.077120pt;}
._c{width:10.080192pt;}
._b{width:10.997312pt;}
._8{width:13.311984pt;}
._6{width:22.400000pt;}
._2{width:147.474699pt;}
._d{width:850.565114pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.440000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.fs5{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:2.640000pt;}
.y89{bottom:2.720000pt;}
.y31{bottom:5.840000pt;}
.y33{bottom:6.000000pt;}
.ya6{bottom:6.026667pt;}
.y36{bottom:6.080000pt;}
.y8e{bottom:6.106667pt;}
.y30{bottom:6.720000pt;}
.y62{bottom:6.800000pt;}
.y87{bottom:16.480000pt;}
.y60{bottom:16.506667pt;}
.y88{bottom:16.720000pt;}
.y2e{bottom:17.120000pt;}
.y1{bottom:68.106667pt;}
.ycf{bottom:88.186667pt;}
.yb7{bottom:91.066667pt;}
.y58{bottom:101.386667pt;}
.yce{bottom:101.946667pt;}
.yb6{bottom:105.146667pt;}
.y57{bottom:115.146667pt;}
.yb5{bottom:119.226667pt;}
.ycd{bottom:125.066667pt;}
.y2a{bottom:136.986667pt;}
.y85{bottom:141.626667pt;}
.yb4{bottom:147.226667pt;}
.y29{bottom:150.826667pt;}
.ycc{bottom:153.066667pt;}
.yb3{bottom:162.026667pt;}
.y84{bottom:162.266667pt;}
.y28{bottom:164.586667pt;}
.yb2{bottom:176.026667pt;}
.y27{bottom:178.426667pt;}
.y56{bottom:180.986667pt;}
.y83{bottom:182.906667pt;}
.yb1{bottom:190.746667pt;}
.y26{bottom:192.186667pt;}
.y55{bottom:194.746667pt;}
.y82{bottom:203.626667pt;}
.yb0{bottom:204.586667pt;}
.y25{bottom:205.946667pt;}
.y81{bottom:224.266667pt;}
.yaf{bottom:230.346667pt;}
.y24{bottom:233.466667pt;}
.y80{bottom:244.906667pt;}
.yae{bottom:250.986667pt;}
.y23{bottom:261.226667pt;}
.y7f{bottom:265.626667pt;}
.yad{bottom:271.626667pt;}
.y7e{bottom:286.266667pt;}
.y54{bottom:290.666667pt;}
.yac{bottom:292.346667pt;}
.y22{bottom:296.906667pt;}
.y7d{bottom:306.906667pt;}
.y21{bottom:310.746667pt;}
.yab{bottom:312.986667pt;}
.y53{bottom:318.666667pt;}
.y20{bottom:324.506667pt;}
.y7c{bottom:327.626667pt;}
.y52{bottom:332.506667pt;}
.yaa{bottom:333.626667pt;}
.y1f{bottom:338.346667pt;}
.y51{bottom:346.266667pt;}
.y7b{bottom:348.266667pt;}
.y1e{bottom:352.106667pt;}
.ya9{bottom:354.346667pt;}
.y7a{bottom:368.906667pt;}
.ya8{bottom:374.986667pt;}
.y1d{bottom:379.866667pt;}
.y79{bottom:391.626667pt;}
.y1c{bottom:393.626667pt;}
.ya7{bottom:395.626667pt;}
.y1b{bottom:407.466667pt;}
.y78{bottom:412.266667pt;}
.ya5{bottom:416.346667pt;}
.y1a{bottom:421.226667pt;}
.y50{bottom:428.853333pt;}
.y77{bottom:432.933333pt;}
.y19{bottom:435.093333pt;}
.ya4{bottom:437.013333pt;}
.y4f{bottom:442.613333pt;}
.ycb{bottom:446.773333pt;}
.y18{bottom:448.853333pt;}
.y76{bottom:453.653333pt;}
.ya3{bottom:457.653333pt;}
.yca{bottom:460.533333pt;}
.y4e{bottom:470.373333pt;}
.y75{bottom:474.293333pt;}
.yc9{bottom:474.373333pt;}
.y17{bottom:476.373333pt;}
.ya2{bottom:480.373333pt;}
.y4d{bottom:484.133333pt;}
.yc8{bottom:488.213333pt;}
.y74{bottom:494.933333pt;}
.y4c{bottom:497.973333pt;}
.ya1{bottom:501.013333pt;}
.yc7{bottom:502.053333pt;}
.y4b{bottom:511.733333pt;}
.y73{bottom:515.653333pt;}
.yc6{bottom:515.813333pt;}
.y16{bottom:517.493333pt;}
.ya0{bottom:521.653333pt;}
.y4a{bottom:525.573333pt;}
.yc5{bottom:529.733333pt;}
.y72{bottom:536.293333pt;}
.y49{bottom:539.333333pt;}
.y9f{bottom:542.373333pt;}
.yc4{bottom:543.493333pt;}
.y15{bottom:548.213333pt;}
.y48{bottom:553.173333pt;}
.y71{bottom:556.933333pt;}
.yc3{bottom:558.213333pt;}
.y14{bottom:561.973333pt;}
.y9e{bottom:563.013333pt;}
.yc2{bottom:571.973333pt;}
.y13{bottom:575.813333pt;}
.y70{bottom:577.653333pt;}
.y47{bottom:580.933333pt;}
.y9d{bottom:583.653333pt;}
.yc1{bottom:586.773333pt;}
.y12{bottom:589.573333pt;}
.y46{bottom:594.693333pt;}
.y6f{bottom:598.293333pt;}
.yc0{bottom:600.533333pt;}
.y11{bottom:603.413333pt;}
.y9c{bottom:604.373333pt;}
.ye3{bottom:605.093333pt;}
.y45{bottom:608.533333pt;}
.ybf{bottom:614.373333pt;}
.y10{bottom:617.253333pt;}
.y6e{bottom:618.933333pt;}
.y44{bottom:622.293333pt;}
.y9b{bottom:625.013333pt;}
.ye2{bottom:632.853333pt;}
.yf{bottom:637.013333pt;}
.y6d{bottom:639.653333pt;}
.ybe{bottom:642.053333pt;}
.y9a{bottom:645.653333pt;}
.ye1{bottom:646.693333pt;}
.y43{bottom:650.053333pt;}
.y6c{bottom:660.293333pt;}
.ye0{bottom:660.533333pt;}
.y42{bottom:663.813333pt;}
.y99{bottom:666.373333pt;}
.ydf{bottom:674.453333pt;}
.ye{bottom:676.853333pt;}
.y41{bottom:677.653333pt;}
.y6b{bottom:680.933333pt;}
.y98{bottom:687.013333pt;}
.yde{bottom:688.293333pt;}
.yd{bottom:690.613333pt;}
.y40{bottom:691.413333pt;}
.y6a{bottom:701.653333pt;}
.ydd{bottom:702.133333pt;}
.yc{bottom:704.453333pt;}
.y3f{bottom:705.173333pt;}
.y97{bottom:707.653333pt;}
.ydc{bottom:716.053333pt;}
.y69{bottom:722.293333pt;}
.ydb{bottom:729.893333pt;}
.y96{bottom:730.373333pt;}
.y3e{bottom:732.933333pt;}
.yb{bottom:735.253333pt;}
.y68{bottom:742.933333pt;}
.y3d{bottom:746.773333pt;}
.y95{bottom:751.013333pt;}
.yda{bottom:752.773333pt;}
.ya{bottom:754.453333pt;}
.y3c{bottom:760.533333pt;}
.y67{bottom:763.653333pt;}
.y94{bottom:771.653333pt;}
.y3b{bottom:774.373333pt;}
.y9{bottom:779.893333pt;}
.yd9{bottom:780.773333pt;}
.y66{bottom:784.293333pt;}
.y3a{bottom:788.133333pt;}
.y93{bottom:792.373333pt;}
.y39{bottom:801.893333pt;}
.yd8{bottom:803.653333pt;}
.y65{bottom:804.933333pt;}
.y8{bottom:810.933333pt;}
.y92{bottom:813.013333pt;}
.y64{bottom:825.653333pt;}
.y38{bottom:829.413333pt;}
.yd7{bottom:831.573333pt;}
.y91{bottom:833.653333pt;}
.y7{bottom:845.573333pt;}
.y63{bottom:846.293333pt;}
.y90{bottom:854.373333pt;}
.yd6{bottom:854.533333pt;}
.y61{bottom:866.933333pt;}
.y6{bottom:867.013333pt;}
.y37{bottom:869.013333pt;}
.y8f{bottom:875.013333pt;}
.yd5{bottom:882.453333pt;}
.y35{bottom:889.653333pt;}
.y8d{bottom:895.653333pt;}
.yd4{bottom:905.360000pt;}
.y34{bottom:910.400000pt;}
.ybd{bottom:914.800000pt;}
.y8c{bottom:916.400000pt;}
.y4{bottom:919.200000pt;}
.y5e{bottom:920.800000pt;}
.y5{bottom:923.680000pt;}
.ybc{bottom:928.640000pt;}
.y32{bottom:931.040000pt;}
.yd3{bottom:933.360000pt;}
.y8b{bottom:937.040000pt;}
.y3{bottom:939.840000pt;}
.ybb{bottom:942.400000pt;}
.yd2{bottom:947.120000pt;}
.y5d{bottom:948.560000pt;}
.y2d{bottom:951.680000pt;}
.yba{bottom:956.240000pt;}
.y8a{bottom:957.680000pt;}
.y5c{bottom:962.400000pt;}
.yb9{bottom:970.000000pt;}
.yd1{bottom:970.080000pt;}
.y2f{bottom:972.400000pt;}
.y5b{bottom:976.400000pt;}
.y86{bottom:980.400000pt;}
.y5a{bottom:990.240000pt;}
.yb8{bottom:997.760000pt;}
.yd0{bottom:998.000000pt;}
.y59{bottom:1011.600000pt;}
.y2c{bottom:1011.840000pt;}
.y2{bottom:1029.280000pt;}
.y2b{bottom:1060.320000pt;}
.h13{height:20.000000pt;}
.h14{height:20.020000pt;}
.h17{height:20.026667pt;}
.h12{height:22.000000pt;}
.h15{height:27.620000pt;}
.h18{height:27.840000pt;}
.hb{height:31.390625pt;}
.h11{height:42.720000pt;}
.ha{height:47.085938pt;}
.hd{height:47.109375pt;}
.hc{height:48.375000pt;}
.h6{height:49.597187pt;}
.he{height:52.830625pt;}
.hf{height:52.846250pt;}
.h16{height:53.690000pt;}
.h2{height:57.473437pt;}
.h10{height:59.017500pt;}
.h9{height:64.292500pt;}
.h3{height:64.500000pt;}
.h4{height:72.562500pt;}
.h7{height:75.142500pt;}
.h8{height:86.107500pt;}
.h5{height:127.115000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w6{width:67.840000pt;}
.w7{width:68.506667pt;}
.w9{width:75.280000pt;}
.wa{width:75.306667pt;}
.w8{width:80.000000pt;}
.w2{width:103.194667pt;}
.we{width:103.680000pt;}
.wd{width:111.706667pt;}
.w11{width:122.320000pt;}
.wc{width:122.346667pt;}
.w3{width:136.666667pt;}
.wb{width:145.760000pt;}
.w10{width:145.786667pt;}
.w5{width:150.906667pt;}
.w4{width:155.600000pt;}
.w12{width:380.453333pt;}
.wf{width:484.453333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x24{left:6.880000pt;}
.x10{left:9.680000pt;}
.x1e{left:12.800000pt;}
.x1f{left:15.760000pt;}
.x1c{left:17.600000pt;}
.x20{left:20.640000pt;}
.x17{left:22.240000pt;}
.x1d{left:23.680000pt;}
.x19{left:25.226667pt;}
.xd{left:28.000000pt;}
.x38{left:29.840000pt;}
.x1b{left:31.520000pt;}
.x39{left:32.800000pt;}
.x16{left:36.746667pt;}
.x6{left:38.800000pt;}
.x2b{left:40.000000pt;}
.x9{left:41.440000pt;}
.x31{left:42.480000pt;}
.x2d{left:44.826667pt;}
.x2a{left:47.866667pt;}
.x2f{left:50.826667pt;}
.x37{left:52.960000pt;}
.x14{left:54.960000pt;}
.x2c{left:56.400000pt;}
.x36{left:58.320000pt;}
.x12{left:59.552000pt;}
.x3c{left:66.000000pt;}
.x29{left:69.840000pt;}
.x3d{left:90.000000pt;}
.xf{left:128.986667pt;}
.x3b{left:136.986667pt;}
.x3a{left:145.306667pt;}
.x7{left:150.346667pt;}
.x23{left:160.506667pt;}
.x8{left:176.106667pt;}
.x28{left:181.146667pt;}
.x30{left:191.626667pt;}
.x2e{left:197.306667pt;}
.x33{left:212.506667pt;}
.x4{left:216.906667pt;}
.x22{left:223.626667pt;}
.x32{left:230.986667pt;}
.x11{left:232.586667pt;}
.x2{left:240.186667pt;}
.x3e{left:244.746667pt;}
.xe{left:253.306667pt;}
.x3{left:258.186667pt;}
.x40{left:275.866667pt;}
.x42{left:296.746667pt;}
.x18{left:300.746667pt;}
.x25{left:306.586667pt;}
.xc{left:316.106667pt;}
.x3f{left:331.733333pt;}
.x21{left:338.773333pt;}
.xb{left:351.093333pt;}
.x34{left:358.613333pt;}
.xa{left:366.373333pt;}
.x13{left:369.573333pt;}
.x41{left:371.093333pt;}
.x1{left:391.653333pt;}
.x26{left:429.253333pt;}
.x5{left:450.213333pt;}
.x35{left:481.253333pt;}
.x15{left:525.493333pt;}
.x27{left:541.280000pt;}
.x1a{left:601.120000pt;}
}




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