
    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_099e806f5b331e7f0e4d49c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128418;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_1558303d27dc47ba3d62607c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.758789;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_5763737b6e8b340752030510.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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_21c2b33e031773ae032d86e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.207031;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_8a5e9e0abda8c83120172c74.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_decae407a5a9eb63d2d51656.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1400f763a309b053c90cd755.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{transform:matrix(0.250204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250204,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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.235200px;}
.ls2{letter-spacing:0.259200px;}
.ls3{letter-spacing:0.439200px;}
.ls4{letter-spacing:1.028880px;}
.ls5{letter-spacing:75.838032px;}
.ls6{letter-spacing:223.603200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(51,51,204),0 0.015em rgb(51,51,204),0.015em 0 rgb(51,51,204),0 -0.015em  rgb(51,51,204);}
.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(51,51,204);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-56.368512px;}
.ws1{word-spacing:-56.326320px;}
.ws2{word-spacing:-48.096000px;}
.ws3{word-spacing:-42.192000px;}
.ws4{word-spacing:-30.013432px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-12.582000px;}
._f{margin-left:-4.361760px;}
._1{margin-left:-2.308608px;}
._0{margin-left:-1.154304px;}
._2{width:1.130256px;}
._6{width:2.180880px;}
._7{width:3.231504px;}
._19{width:4.318479px;}
._3{width:9.504000px;}
._4{width:10.944000px;}
._1b{width:106.227323px;}
._5{width:121.248000px;}
._1a{width:133.030200px;}
._16{width:368.724000px;}
._e{width:415.143840px;}
._9{width:416.665344px;}
._18{width:438.720864px;}
._8{width:445.485408px;}
._15{width:461.403840px;}
._d{width:511.528704px;}
._c{width:681.802176px;}
._14{width:682.807440px;}
._10{width:684.469200px;}
._a{width:688.747440px;}
._11{width:690.571200px;}
._13{width:728.347440px;}
._12{width:730.042176px;}
._17{width:766.042176px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(255,255,153);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(51,51,204);}
.fc5{color:rgb(255,0,0);}
.fc0{color:rgb(51,51,153);}
.fs5{font-size:86.400000px;}
.fs11{font-size:107.961987px;}
.fs6{font-size:108.000000px;}
.fsc{font-size:108.144000px;}
.fs9{font-size:115.344000px;}
.fs2{font-size:120.240000px;}
.fsa{font-size:120.384000px;}
.fs4{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs7{font-size:167.760000px;}
.fsb{font-size:167.904000px;}
.fse{font-size:176.832798px;}
.fsf{font-size:176.984586px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:192.384000px;}
.fs8{font-size:216.000000px;}
.fs10{font-size:239.760000px;}
.fsd{font-size:264.240000px;}
.y63{bottom:-64.836000px;}
.y62{bottom:-7.236000px;}
.y0{bottom:0.000000px;}
.y15{bottom:0.719970px;}
.y2e{bottom:4.644000px;}
.y7f{bottom:15.730749px;}
.y7d{bottom:15.745703px;}
.ya4{bottom:17.748000px;}
.y6e{bottom:27.504000px;}
.y90{bottom:29.233624px;}
.y14{bottom:43.920000px;}
.y52{bottom:45.216000px;}
.y61{bottom:50.400000px;}
.y2d{bottom:55.044000px;}
.y87{bottom:58.467098px;}
.y6d{bottom:59.940000px;}
.ya3{bottom:60.948000px;}
.y42{bottom:61.200000px;}
.y5b{bottom:66.420000px;}
.y3d{bottom:71.460000px;}
.y51{bottom:79.776000px;}
.y6c{bottom:86.940000px;}
.y13{bottom:87.120000px;}
.y99{bottom:91.100338px;}
.y41{bottom:95.760000px;}
.y86{bottom:99.537838px;}
.y3c{bottom:100.296000px;}
.y88{bottom:103.401416px;}
.ya2{bottom:104.148000px;}
.y5a{bottom:104.220000px;}
.y2c{bottom:105.480000px;}
.y77{bottom:107.928000px;}
.y60{bottom:108.000000px;}
.y50{bottom:114.372000px;}
.y6b{bottom:121.500000px;}
.y12{bottom:130.356000px;}
.ya{bottom:134.316000px;}
.y59{bottom:143.100000px;}
.ya1{bottom:147.384000px;}
.y4f{bottom:148.932000px;}
.y89{bottom:149.497595px;}
.y2b{bottom:155.880000px;}
.y6a{bottom:156.060000px;}
.y3b{bottom:164.910000px;}
.y11{bottom:173.550000px;}
.y5f{bottom:176.940000px;}
.y76{bottom:177.120000px;}
.y9{bottom:177.510000px;}
.y1f{bottom:181.620000px;}
.y58{bottom:181.980000px;}
.y4e{bottom:183.495000px;}
.ya0{bottom:190.590000px;}
.y69{bottom:190.620000px;}
.y8a{bottom:195.583308px;}
.y3a{bottom:199.470000px;}
.y4d{bottom:218.055000px;}
.y2a{bottom:218.700000px;}
.y8{bottom:220.710000px;}
.y57{bottom:220.890000px;}
.y10{bottom:225.390000px;}
.y9f{bottom:233.790000px;}
.y68{bottom:233.850000px;}
.y39{bottom:234.030000px;}
.y5e{bottom:234.750000px;}
.y1e{bottom:239.220000px;}
.y8b{bottom:240.562485px;}
.y75{bottom:246.705000px;}
.y4c{bottom:252.615000px;}
.y7{bottom:256.710000px;}
.y56{bottom:259.770000px;}
.y67{bottom:268.410000px;}
.yf{bottom:268.635000px;}
.y29{bottom:273.990000px;}
.y9e{bottom:285.660000px;}
.y8c{bottom:286.648197px;}
.y4b{bottom:287.205000px;}
.y1d{bottom:294.330000px;}
.y55{bottom:298.650000px;}
.y6{bottom:299.955000px;}
.y38{bottom:303.195000px;}
.y5d{bottom:303.870000px;}
.y66{bottom:312.510000px;}
.ye{bottom:320.475000px;}
.y4a{bottom:321.765000px;}
.y28{bottom:324.390000px;}
.y9d{bottom:328.860000px;}
.y80{bottom:331.128413px;}
.y8d{bottom:332.748863px;}
.y84{bottom:334.492879px;}
.y81{bottom:335.614368px;}
.y5{bottom:335.955000px;}
.y1c{bottom:337.530000px;}
.y37{bottom:337.755000px;}
.y85{bottom:342.343301px;}
.y65{bottom:346.170000px;}
.y49{bottom:356.325000px;}
.y5c{bottom:361.470000px;}
.yd{bottom:363.675000px;}
.y4{bottom:371.955000px;}
.y36{bottom:372.315000px;}
.y40{bottom:373.215000px;}
.y27{bottom:374.790000px;}
.y54{bottom:376.455000px;}
.y8e{bottom:378.834575px;}
.y9c{bottom:380.700000px;}
.y1b{bottom:380.730000px;}
.y64{bottom:380.775000px;}
.y74{bottom:385.665000px;}
.y93{bottom:397.980193px;}
.y83{bottom:399.688760px;}
.y7e{bottom:403.053227px;}
.y35{bottom:403.305000px;}
.y94{bottom:412.589454px;}
.y8f{bottom:423.813752px;}
.y9b{bottom:423.900000px;}
.y92{bottom:436.215484px;}
.y73{bottom:454.890000px;}
.y98{bottom:455.325653px;}
.y91{bottom:457.568631px;}
.y34{bottom:460.905000px;}
.y96{bottom:464.327470px;}
.y9a{bottom:469.650000px;}
.y95{bottom:482.316150px;}
.y97{bottom:483.437639px;}
.y7c{bottom:485.101346px;}
.y24{bottom:498.990000px;}
.y48{bottom:507.570000px;}
.y33{bottom:518.505000px;}
.y82{bottom:519.942264px;}
.y72{bottom:524.445000px;}
.y26{bottom:531.030000px;}
.y47{bottom:550.770000px;}
.y23{bottom:556.590000px;}
.y1a{bottom:573.450000px;}
.y25{bottom:574.230000px;}
.y3{bottom:576.870000px;}
.y31{bottom:585.390000px;}
.y46{bottom:596.490000px;}
.y18{bottom:597.450000px;}
.y22{bottom:606.270000px;}
.y53{bottom:608.250000px;}
.yc{bottom:615.990000px;}
.y19{bottom:616.650000px;}
.y7b{bottom:624.165000px;}
.y79{bottom:625.425000px;}
.y32{bottom:628.530000px;}
.y7a{bottom:629.610000px;}
.y71{bottom:630.870000px;}
.y2{bottom:634.470000px;}
.y78{bottom:642.495000px;}
.y21{bottom:642.990000px;}
.y30{bottom:646.590000px;}
.y45{bottom:646.920000px;}
.y17{bottom:654.150000px;}
.y70{bottom:658.650000px;}
.yb{bottom:659.190000px;}
.y3f{bottom:659.235000px;}
.y1{bottom:692.070000px;}
.y44{bottom:694.800000px;}
.y6f{bottom:697.755000px;}
.y20{bottom:700.635000px;}
.y2f{bottom:704.235000px;}
.y16{bottom:709.050000px;}
.y3e{bottom:709.095000px;}
.y43{bottom:738.000000px;}
.h20{height:50.579144px;}
.h22{height:50.616527px;}
.h15{height:91.968750px;}
.h1a{height:92.091375px;}
.h3{height:102.391875px;}
.ha{height:108.052734px;}
.h18{height:108.843750px;}
.h19{height:108.988875px;}
.h21{height:112.600979px;}
.hf{height:120.298711px;}
.he{height:120.442781px;}
.h5{height:122.625000px;}
.h4{height:122.747625px;}
.h10{height:142.858125px;}
.h6{height:144.070312px;}
.h7{height:144.214383px;}
.h11{height:145.125000px;}
.h14{height:145.270125px;}
.h2{height:163.704375px;}
.h1{height:163.827000px;}
.hb{height:167.841914px;}
.h1c{height:167.985984px;}
.h12{height:169.070625px;}
.h13{height:169.215750px;}
.h1d{height:176.919143px;}
.h1e{height:177.071005px;}
.h9{height:192.333867px;}
.h8{height:192.477938px;}
.h17{height:193.741875px;}
.h16{height:193.887000px;}
.hc{height:197.592427px;}
.hd{height:216.105469px;}
.h1f{height:239.877070px;}
.h1b{height:264.369023px;}
.h23{height:471.025290px;}
.h0{height:810.000000px;}
.w1{width:64.089295px;}
.w2{width:66.334104px;}
.w3{width:710.482026px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x50{left:5.612022px;}
.x59{left:47.215816px;}
.x20{left:57.492000px;}
.x58{left:69.701319px;}
.x24{left:71.424000px;}
.x27{left:72.504000px;}
.x36{left:81.324000px;}
.x35{left:84.744000px;}
.x25{left:87.804000px;}
.x65{left:89.784000px;}
.x30{left:91.620000px;}
.x29{left:92.844000px;}
.x3d{left:96.804000px;}
.x28{left:97.884000px;}
.x14{left:100.080000px;}
.x41{left:102.132000px;}
.x2c{left:104.580000px;}
.x23{left:105.984000px;}
.x63{left:108.324000px;}
.x1a{left:109.656000px;}
.xd{left:112.176000px;}
.x8{left:114.336000px;}
.x1{left:119.016000px;}
.x2f{left:120.960000px;}
.x4{left:122.256000px;}
.x44{left:129.528000px;}
.x10{left:136.116000px;}
.x42{left:137.808000px;}
.x1c{left:140.436000px;}
.x19{left:142.596000px;}
.xb{left:146.376000px;}
.x31{left:147.636000px;}
.x9{left:149.616000px;}
.x3b{left:154.050000px;}
.x6{left:155.730000px;}
.x60{left:160.170000px;}
.x66{left:165.750000px;}
.x62{left:177.450000px;}
.x21{left:182.550000px;}
.x1e{left:184.710000px;}
.x3f{left:189.870000px;}
.x1f{left:191.010000px;}
.x33{left:194.250000px;}
.x4b{left:209.265000px;}
.x4a{left:217.365000px;}
.x57{left:221.239616px;}
.x67{left:241.560000px;}
.x11{left:246.990000px;}
.x4e{left:249.630000px;}
.xf{left:254.010000px;}
.x37{left:264.960000px;}
.x45{left:266.475000px;}
.x34{left:277.380000px;}
.x18{left:288.975000px;}
.x38{left:290.160000px;}
.x61{left:305.100000px;}
.xc{left:308.955000px;}
.x2{left:316.695000px;}
.x1b{left:327.855000px;}
.x4f{left:334.789534px;}
.x1d{left:338.655000px;}
.xe{left:356.835000px;}
.x5a{left:360.289534px;}
.x3e{left:363.240000px;}
.x2a{left:366.120000px;}
.x3a{left:368.535000px;}
.x13{left:372.270000px;}
.x51{left:377.523214px;}
.x2d{left:402.915000px;}
.x4d{left:406.980000px;}
.x15{left:413.670000px;}
.x32{left:420.555000px;}
.x3c{left:421.740000px;}
.x40{left:424.695000px;}
.x22{left:427.215000px;}
.x48{left:445.500000px;}
.x26{left:447.330000px;}
.x46{left:449.640000px;}
.x4c{left:457.560000px;}
.x5{left:476.175000px;}
.x7{left:479.415000px;}
.x5b{left:482.818688px;}
.x52{left:531.517106px;}
.x16{left:535.755000px;}
.x47{left:537.480000px;}
.x49{left:539.100000px;}
.xa{left:540.210000px;}
.x12{left:544.245000px;}
.x43{left:546.480000px;}
.x2b{left:548.490000px;}
.x64{left:551.730000px;}
.x17{left:557.205000px;}
.x3{left:561.165000px;}
.x39{left:563.430000px;}
.x2e{left:565.665000px;}
.x53{left:611.312580px;}
.x5c{left:636.812580px;}
.x54{left:665.307718px;}
.x5d{left:690.807717px;}
.x55{left:746.225597px;}
.x5e{left:771.725596px;}
.x56{left:817.056801px;}
.x5f{left:842.556801px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.209067pt;}
.ls2{letter-spacing:0.230400pt;}
.ls3{letter-spacing:0.390400pt;}
.ls4{letter-spacing:0.914560pt;}
.ls5{letter-spacing:67.411584pt;}
.ls6{letter-spacing:198.758400pt;}
.ws5{word-spacing:-50.105344pt;}
.ws1{word-spacing:-50.067840pt;}
.ws2{word-spacing:-42.752000pt;}
.ws3{word-spacing:-37.504000pt;}
.ws4{word-spacing:-26.678607pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-11.184000pt;}
._f{margin-left:-3.877120pt;}
._1{margin-left:-2.052096pt;}
._0{margin-left:-1.026048pt;}
._2{width:1.004672pt;}
._6{width:1.938560pt;}
._7{width:2.872448pt;}
._19{width:3.838648pt;}
._3{width:8.448000pt;}
._4{width:9.728000pt;}
._1b{width:94.424287pt;}
._5{width:107.776000pt;}
._1a{width:118.249067pt;}
._16{width:327.754667pt;}
._e{width:369.016747pt;}
._9{width:370.369195pt;}
._18{width:389.974101pt;}
._8{width:395.987029pt;}
._15{width:410.136747pt;}
._d{width:454.692181pt;}
._c{width:606.046379pt;}
._14{width:606.939947pt;}
._10{width:608.417067pt;}
._a{width:612.219947pt;}
._11{width:613.841067pt;}
._13{width:647.419947pt;}
._12{width:648.926379pt;}
._17{width:680.926379pt;}
.fs5{font-size:76.800000pt;}
.fs11{font-size:95.966211pt;}
.fs6{font-size:96.000000pt;}
.fsc{font-size:96.128000pt;}
.fs9{font-size:102.528000pt;}
.fs2{font-size:106.880000pt;}
.fsa{font-size:107.008000pt;}
.fs4{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs7{font-size:149.120000pt;}
.fsb{font-size:149.248000pt;}
.fse{font-size:157.184710pt;}
.fsf{font-size:157.319632pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:171.008000pt;}
.fs8{font-size:192.000000pt;}
.fs10{font-size:213.120000pt;}
.fsd{font-size:234.880000pt;}
.y63{bottom:-57.632000pt;}
.y62{bottom:-6.432000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:0.639973pt;}
.y2e{bottom:4.128000pt;}
.y7f{bottom:13.982888pt;}
.y7d{bottom:13.996180pt;}
.ya4{bottom:15.776000pt;}
.y6e{bottom:24.448000pt;}
.y90{bottom:25.985443pt;}
.y14{bottom:39.040000pt;}
.y52{bottom:40.192000pt;}
.y61{bottom:44.800000pt;}
.y2d{bottom:48.928000pt;}
.y87{bottom:51.970754pt;}
.y6d{bottom:53.280000pt;}
.ya3{bottom:54.176000pt;}
.y42{bottom:54.400000pt;}
.y5b{bottom:59.040000pt;}
.y3d{bottom:63.520000pt;}
.y51{bottom:70.912000pt;}
.y6c{bottom:77.280000pt;}
.y13{bottom:77.440000pt;}
.y99{bottom:80.978079pt;}
.y41{bottom:85.120000pt;}
.y86{bottom:88.478079pt;}
.y3c{bottom:89.152000pt;}
.y88{bottom:91.912369pt;}
.ya2{bottom:92.576000pt;}
.y5a{bottom:92.640000pt;}
.y2c{bottom:93.760000pt;}
.y77{bottom:95.936000pt;}
.y60{bottom:96.000000pt;}
.y50{bottom:101.664000pt;}
.y6b{bottom:108.000000pt;}
.y12{bottom:115.872000pt;}
.ya{bottom:119.392000pt;}
.y59{bottom:127.200000pt;}
.ya1{bottom:131.008000pt;}
.y4f{bottom:132.384000pt;}
.y89{bottom:132.886751pt;}
.y2b{bottom:138.560000pt;}
.y6a{bottom:138.720000pt;}
.y3b{bottom:146.586667pt;}
.y11{bottom:154.266667pt;}
.y5f{bottom:157.280000pt;}
.y76{bottom:157.440000pt;}
.y9{bottom:157.786667pt;}
.y1f{bottom:161.440000pt;}
.y58{bottom:161.760000pt;}
.y4e{bottom:163.106667pt;}
.ya0{bottom:169.413333pt;}
.y69{bottom:169.440000pt;}
.y8a{bottom:173.851829pt;}
.y3a{bottom:177.306667pt;}
.y4d{bottom:193.826667pt;}
.y2a{bottom:194.400000pt;}
.y8{bottom:196.186667pt;}
.y57{bottom:196.346667pt;}
.y10{bottom:200.346667pt;}
.y9f{bottom:207.813333pt;}
.y68{bottom:207.866667pt;}
.y39{bottom:208.026667pt;}
.y5e{bottom:208.666667pt;}
.y1e{bottom:212.640000pt;}
.y8b{bottom:213.833320pt;}
.y75{bottom:219.293333pt;}
.y4c{bottom:224.546667pt;}
.y7{bottom:228.186667pt;}
.y56{bottom:230.906667pt;}
.y67{bottom:238.586667pt;}
.yf{bottom:238.786667pt;}
.y29{bottom:243.546667pt;}
.y9e{bottom:253.920000pt;}
.y8c{bottom:254.798397pt;}
.y4b{bottom:255.293333pt;}
.y1d{bottom:261.626667pt;}
.y55{bottom:265.466667pt;}
.y6{bottom:266.626667pt;}
.y38{bottom:269.506667pt;}
.y5d{bottom:270.106667pt;}
.y66{bottom:277.786667pt;}
.ye{bottom:284.866667pt;}
.y4a{bottom:286.013333pt;}
.y28{bottom:288.346667pt;}
.y9d{bottom:292.320000pt;}
.y80{bottom:294.336367pt;}
.y8d{bottom:295.776767pt;}
.y84{bottom:297.327004pt;}
.y81{bottom:298.323882pt;}
.y5{bottom:298.626667pt;}
.y1c{bottom:300.026667pt;}
.y37{bottom:300.226667pt;}
.y85{bottom:304.305156pt;}
.y65{bottom:307.706667pt;}
.y49{bottom:316.733333pt;}
.y5c{bottom:321.306667pt;}
.yd{bottom:323.266667pt;}
.y4{bottom:330.626667pt;}
.y36{bottom:330.946667pt;}
.y40{bottom:331.746667pt;}
.y27{bottom:333.146667pt;}
.y54{bottom:334.626667pt;}
.y8e{bottom:336.741845pt;}
.y9c{bottom:338.400000pt;}
.y1b{bottom:338.426667pt;}
.y64{bottom:338.466667pt;}
.y74{bottom:342.813333pt;}
.y93{bottom:353.760172pt;}
.y83{bottom:355.278898pt;}
.y7e{bottom:358.269535pt;}
.y35{bottom:358.493333pt;}
.y94{bottom:366.746181pt;}
.y8f{bottom:376.723335pt;}
.y9b{bottom:376.800000pt;}
.y92{bottom:387.747097pt;}
.y73{bottom:404.346667pt;}
.y98{bottom:404.733914pt;}
.y91{bottom:406.727672pt;}
.y34{bottom:409.693333pt;}
.y96{bottom:412.735529pt;}
.y9a{bottom:417.466667pt;}
.y95{bottom:428.725466pt;}
.y97{bottom:429.722345pt;}
.y7c{bottom:431.201197pt;}
.y24{bottom:443.546667pt;}
.y48{bottom:451.173333pt;}
.y33{bottom:460.893333pt;}
.y82{bottom:462.170902pt;}
.y72{bottom:466.173333pt;}
.y26{bottom:472.026667pt;}
.y47{bottom:489.573333pt;}
.y23{bottom:494.746667pt;}
.y1a{bottom:509.733333pt;}
.y25{bottom:510.426667pt;}
.y3{bottom:512.773333pt;}
.y31{bottom:520.346667pt;}
.y46{bottom:530.213333pt;}
.y18{bottom:531.066667pt;}
.y22{bottom:538.906667pt;}
.y53{bottom:540.666667pt;}
.yc{bottom:547.546667pt;}
.y19{bottom:548.133333pt;}
.y7b{bottom:554.813333pt;}
.y79{bottom:555.933333pt;}
.y32{bottom:558.693333pt;}
.y7a{bottom:559.653333pt;}
.y71{bottom:560.773333pt;}
.y2{bottom:563.973333pt;}
.y78{bottom:571.106667pt;}
.y21{bottom:571.546667pt;}
.y30{bottom:574.746667pt;}
.y45{bottom:575.040000pt;}
.y17{bottom:581.466667pt;}
.y70{bottom:585.466667pt;}
.yb{bottom:585.946667pt;}
.y3f{bottom:585.986667pt;}
.y1{bottom:615.173333pt;}
.y44{bottom:617.600000pt;}
.y6f{bottom:620.226667pt;}
.y20{bottom:622.786667pt;}
.y2f{bottom:625.986667pt;}
.y16{bottom:630.266667pt;}
.y3e{bottom:630.306667pt;}
.y43{bottom:656.000000pt;}
.h20{height:44.959239pt;}
.h22{height:44.992469pt;}
.h15{height:81.750000pt;}
.h1a{height:81.859000pt;}
.h3{height:91.015000pt;}
.ha{height:96.046875pt;}
.h18{height:96.750000pt;}
.h19{height:96.879000pt;}
.h21{height:100.089759pt;}
.hf{height:106.932187pt;}
.he{height:107.060250pt;}
.h5{height:109.000000pt;}
.h4{height:109.109000pt;}
.h10{height:126.985000pt;}
.h6{height:128.062500pt;}
.h7{height:128.190562pt;}
.h11{height:129.000000pt;}
.h14{height:129.129000pt;}
.h2{height:145.515000pt;}
.h1{height:145.624000pt;}
.hb{height:149.192812pt;}
.h1c{height:149.320875pt;}
.h12{height:150.285000pt;}
.h13{height:150.414000pt;}
.h1d{height:157.261460pt;}
.h1e{height:157.396448pt;}
.h9{height:170.963437pt;}
.h8{height:171.091500pt;}
.h17{height:172.215000pt;}
.h16{height:172.344000pt;}
.hc{height:175.637713pt;}
.hd{height:192.093750pt;}
.h1f{height:213.224062pt;}
.h1b{height:234.994687pt;}
.h23{height:418.689146pt;}
.h0{height:720.000000pt;}
.w1{width:56.968262pt;}
.w2{width:58.963648pt;}
.w3{width:631.539579pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x50{left:4.988464pt;}
.x59{left:41.969614pt;}
.x20{left:51.104000pt;}
.x58{left:61.956728pt;}
.x24{left:63.488000pt;}
.x27{left:64.448000pt;}
.x36{left:72.288000pt;}
.x35{left:75.328000pt;}
.x25{left:78.048000pt;}
.x65{left:79.808000pt;}
.x30{left:81.440000pt;}
.x29{left:82.528000pt;}
.x3d{left:86.048000pt;}
.x28{left:87.008000pt;}
.x14{left:88.960000pt;}
.x41{left:90.784000pt;}
.x2c{left:92.960000pt;}
.x23{left:94.208000pt;}
.x63{left:96.288000pt;}
.x1a{left:97.472000pt;}
.xd{left:99.712000pt;}
.x8{left:101.632000pt;}
.x1{left:105.792000pt;}
.x2f{left:107.520000pt;}
.x4{left:108.672000pt;}
.x44{left:115.136000pt;}
.x10{left:120.992000pt;}
.x42{left:122.496000pt;}
.x1c{left:124.832000pt;}
.x19{left:126.752000pt;}
.xb{left:130.112000pt;}
.x31{left:131.232000pt;}
.x9{left:132.992000pt;}
.x3b{left:136.933333pt;}
.x6{left:138.426667pt;}
.x60{left:142.373333pt;}
.x66{left:147.333333pt;}
.x62{left:157.733333pt;}
.x21{left:162.266667pt;}
.x1e{left:164.186667pt;}
.x3f{left:168.773333pt;}
.x1f{left:169.786667pt;}
.x33{left:172.666667pt;}
.x4b{left:186.013333pt;}
.x4a{left:193.213333pt;}
.x57{left:196.657436pt;}
.x67{left:214.720000pt;}
.x11{left:219.546667pt;}
.x4e{left:221.893333pt;}
.xf{left:225.786667pt;}
.x37{left:235.520000pt;}
.x45{left:236.866667pt;}
.x34{left:246.560000pt;}
.x18{left:256.866667pt;}
.x38{left:257.920000pt;}
.x61{left:271.200000pt;}
.xc{left:274.626667pt;}
.x2{left:281.506667pt;}
.x1b{left:291.426667pt;}
.x4f{left:297.590697pt;}
.x1d{left:301.026667pt;}
.xe{left:317.186667pt;}
.x5a{left:320.257364pt;}
.x3e{left:322.880000pt;}
.x2a{left:325.440000pt;}
.x3a{left:327.586667pt;}
.x13{left:330.906667pt;}
.x51{left:335.576190pt;}
.x2d{left:358.146667pt;}
.x4d{left:361.760000pt;}
.x15{left:367.706667pt;}
.x32{left:373.826667pt;}
.x3c{left:374.880000pt;}
.x40{left:377.506667pt;}
.x22{left:379.746667pt;}
.x48{left:396.000000pt;}
.x26{left:397.626667pt;}
.x46{left:399.680000pt;}
.x4c{left:406.720000pt;}
.x5{left:423.266667pt;}
.x7{left:426.146667pt;}
.x5b{left:429.172167pt;}
.x52{left:472.459650pt;}
.x16{left:476.226667pt;}
.x47{left:477.760000pt;}
.x49{left:479.200000pt;}
.xa{left:480.186667pt;}
.x12{left:483.773333pt;}
.x43{left:485.760000pt;}
.x2b{left:487.546667pt;}
.x64{left:490.426667pt;}
.x17{left:495.293333pt;}
.x3{left:498.813333pt;}
.x39{left:500.826667pt;}
.x2e{left:502.813333pt;}
.x53{left:543.388960pt;}
.x5c{left:566.055627pt;}
.x54{left:591.384638pt;}
.x5d{left:614.051304pt;}
.x55{left:663.311642pt;}
.x5e{left:685.978308pt;}
.x56{left:726.272712pt;}
.x5f{left:748.939378pt;}
}




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