
    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_98f0cba25ac8fbd9a223d596.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.923828;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_78fc4561348461c3d4400f16.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_1326ea7040da06fb816a8308.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936035;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_ec867b5b93800fe4a915ba76.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5f2db001981e514d900952b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.160156;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_5de9bb2c28728be693097821.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_24d003e486f36d4ded8c95ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_b4a78d26d1c1efd9d3832023.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_a2b1a6cd604531afac6a0491.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_854de09a663fbacf853f8deb.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_25f63370e3368f27ab93873a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.160156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7118416c0051166ed2529128.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.099609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.207600px;}
.ls3{letter-spacing:-0.129600px;}
.ls6{letter-spacing:-0.115200px;}
.ls8{letter-spacing:-0.069000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.092400px;}
.lsb{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.224400px;}
.lsa{letter-spacing:0.247800px;}
.ls14{letter-spacing:0.305400px;}
.ls4{letter-spacing:10.080000px;}
.lsf{letter-spacing:44.784000px;}
.ls9{letter-spacing:49.985280px;}
.lsc{letter-spacing:52.225920px;}
.ls10{letter-spacing:60.145920px;}
.lse{letter-spacing:61.585920px;}
.ls13{letter-spacing:65.185920px;}
.ls1{letter-spacing:73.025280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-63.360000px;}
.wsc{word-spacing:-18.938880px;}
.ws9{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.608440px;}
.ws8{word-spacing:-17.487360px;}
.wsd{word-spacing:-17.424000px;}
.ws3{word-spacing:-17.360640px;}
.ws0{word-spacing:-16.652400px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.444800px;}
.wsb{word-spacing:-0.072000px;}
.ws6{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:1566.345120px;}
._a{margin-left:-3.775680px;}
._5{margin-left:-2.252160px;}
._1{margin-left:-1.126080px;}
._0{width:1.676880px;}
._2{width:2.959920px;}
._4{width:4.127760px;}
._d{width:5.417760px;}
._8{width:6.425280px;}
._9{width:7.439760px;}
._6{width:8.656560px;}
._3{width:10.333440px;}
._7{width:11.856960px;}
._c{width:13.268160px;}
._10{width:14.535360px;}
._f{width:15.776640px;}
._11{width:31.616640px;}
._12{width:33.312960px;}
._e{width:892.474560px;}
._b{width:1143.120000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(36,36,36);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:114.660000px;}
.y33{bottom:118.800000px;}
.y71{bottom:122.220000px;}
.y54{bottom:126.360000px;}
.y24{bottom:144.720000px;}
.y70{bottom:153.750000px;}
.y53{bottom:168.510000px;}
.y23{bottom:174.630000px;}
.y3a{bottom:177.330000px;}
.y6f{bottom:185.070000px;}
.y52{bottom:192.270000px;}
.y22{bottom:204.690000px;}
.y9d{bottom:232.950000px;}
.y51{bottom:234.030000px;}
.y21{bottom:234.210000px;}
.y6e{bottom:236.730000px;}
.y9c{bottom:255.630000px;}
.y50{bottom:258.150000px;}
.y20{bottom:261.750000px;}
.y4f{bottom:281.910000px;}
.y6d{bottom:288.390000px;}
.y1f{bottom:289.470000px;}
.y4e{bottom:305.850000px;}
.y1e{bottom:308.190000px;}
.y6c{bottom:319.890000px;}
.y4d{bottom:329.610000px;}
.y1d{bottom:335.910000px;}
.y6b{bottom:362.010000px;}
.y1c{bottom:363.630000px;}
.y4c{bottom:371.550000px;}
.y6a{bottom:385.770000px;}
.y1b{bottom:391.350000px;}
.y8e{bottom:398.550000px;}
.y4b{bottom:401.655000px;}
.y9b{bottom:410.295000px;}
.y1a{bottom:419.115000px;}
.y37{bottom:423.615000px;}
.y69{bottom:427.575000px;}
.y4a{bottom:431.355000px;}
.y19{bottom:437.835000px;}
.y9a{bottom:440.355000px;}
.y8d{bottom:447.915000px;}
.y49{bottom:452.055000px;}
.y36{bottom:453.495000px;}
.y18{bottom:465.555000px;}
.y8c{bottom:469.155000px;}
.y99{bottom:469.515000px;}
.y68{bottom:469.695000px;}
.y35{bottom:474.375000px;}
.y48{bottom:481.935000px;}
.y17{bottom:484.275000px;}
.y8b{bottom:490.035000px;}
.y67{bottom:493.635000px;}
.y98{bottom:496.155000px;}
.y34{bottom:500.295000px;}
.y8a{bottom:511.095000px;}
.y47{bottom:511.815000px;}
.y16{bottom:511.995000px;}
.y97{bottom:526.215000px;}
.y89{bottom:531.975000px;}
.y66{bottom:535.395000px;}
.y45{bottom:535.575000px;}
.y46{bottom:537.735000px;}
.y15{bottom:539.715000px;}
.y32{bottom:546.015000px;}
.y96{bottom:547.095000px;}
.y88{bottom:552.855000px;}
.y14{bottom:558.435000px;}
.y43{bottom:567.075000px;}
.y95{bottom:568.155000px;}
.y44{bottom:568.875000px;}
.y31{bottom:573.735000px;}
.y87{bottom:573.915000px;}
.y13{bottom:577.155000px;}
.y65{bottom:577.515000px;}
.y94{bottom:589.035000px;}
.y86{bottom:594.795000px;}
.y12{bottom:595.875000px;}
.y38{bottom:596.415000px;}
.y64{bottom:601.275000px;}
.y30{bottom:601.455000px;}
.y39{bottom:605.235000px;}
.y93{bottom:609.915000px;}
.y11{bottom:614.595000px;}
.y85{bottom:615.855000px;}
.y2f{bottom:629.175000px;}
.y92{bottom:630.975000px;}
.y10{bottom:633.135000px;}
.y84{bottom:636.735000px;}
.y63{bottom:643.035000px;}
.y2e{bottom:656.925000px;}
.y83{bottom:657.645000px;}
.yf{bottom:660.705000px;}
.y2d{bottom:675.645000px;}
.y82{bottom:678.705000px;}
.y91{bottom:680.145000px;}
.y62{bottom:685.185000px;}
.ye{bottom:686.985000px;}
.y81{bottom:699.585000px;}
.y2c{bottom:703.185000px;}
.y61{bottom:708.945000px;}
.y90{bottom:711.645000px;}
.yd{bottom:714.705000px;}
.y80{bottom:720.465000px;}
.y2b{bottom:730.905000px;}
.yc{bottom:733.425000px;}
.y7f{bottom:741.525000px;}
.y8f{bottom:742.965000px;}
.y60{bottom:750.705000px;}
.y2a{bottom:758.625000px;}
.yb{bottom:761.145000px;}
.y7e{bottom:762.405000px;}
.ya{bottom:779.865000px;}
.y7d{bottom:783.465000px;}
.y29{bottom:786.345000px;}
.y5f{bottom:792.825000px;}
.y7c{bottom:804.345000px;}
.y9{bottom:807.405000px;}
.y28{bottom:810.465000px;}
.y5e{bottom:816.765000px;}
.y7b{bottom:825.225000px;}
.y8{bottom:835.125000px;}
.y7a{bottom:846.285000px;}
.y7{bottom:853.845000px;}
.y5d{bottom:858.345000px;}
.y79{bottom:877.425000px;}
.y6{bottom:881.565000px;}
.y5c{bottom:900.690000px;}
.y78{bottom:908.970000px;}
.y5{bottom:909.330000px;}
.y5b{bottom:924.450000px;}
.y4{bottom:933.450000px;}
.y42{bottom:936.150000px;}
.y77{bottom:941.910000px;}
.y41{bottom:966.030000px;}
.y5a{bottom:966.210000px;}
.y76{bottom:976.290000px;}
.y40{bottom:995.910000px;}
.y59{bottom:1008.330000px;}
.y75{bottom:1009.230000px;}
.y3f{bottom:1016.970000px;}
.y58{bottom:1032.090000px;}
.y3e{bottom:1037.850000px;}
.y74{bottom:1058.550000px;}
.y3d{bottom:1067.730000px;}
.y57{bottom:1073.850000px;}
.y3{bottom:1087.710000px;}
.y73{bottom:1090.050000px;}
.y3c{bottom:1097.790000px;}
.y27{bottom:1109.670000px;}
.y2{bottom:1115.430000px;}
.y56{bottom:1115.970000px;}
.y3b{bottom:1118.670000px;}
.y72{bottom:1139.550000px;}
.y26{bottom:1139.730000px;}
.y55{bottom:1139.910000px;}
.y1{bottom:1142.970000px;}
.h7{height:43.419375px;}
.h2{height:44.820000px;}
.h3{height:49.680000px;}
.h6{height:54.821250px;}
.h5{height:58.595625px;}
.hb{height:62.296875px;}
.hc{height:63.922500px;}
.h8{height:65.124096px;}
.h4{height:68.084282px;}
.h9{height:70.664062px;}
.ha{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x3{left:133.415987px;}
.x10{left:148.895987px;}
.x4{left:154.649987px;}
.x11{left:175.889987px;}
.x5{left:181.649987px;}
.x13{left:194.069987px;}
.xe{left:208.649987px;}
.xf{left:235.649987px;}
.x12{left:244.829987px;}
.x2{left:328.034987px;}
.x7{left:361.694987px;}
.x14{left:364.034987px;}
.x6{left:413.714987px;}
.xa{left:424.694987px;}
.xc{left:516.884987px;}
.x9{left:523.364987px;}
.xb{left:544.064987px;}
.x8{left:548.924987px;}
.xd{left:597.524987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.184533pt;}
.ls3{letter-spacing:-0.115200pt;}
.ls6{letter-spacing:-0.102400pt;}
.ls8{letter-spacing:-0.061333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.082133pt;}
.lsb{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.199467pt;}
.lsa{letter-spacing:0.220267pt;}
.ls14{letter-spacing:0.271467pt;}
.ls4{letter-spacing:8.960000pt;}
.lsf{letter-spacing:39.808000pt;}
.ls9{letter-spacing:44.431360pt;}
.lsc{letter-spacing:46.423040pt;}
.ls10{letter-spacing:53.463040pt;}
.lse{letter-spacing:54.743040pt;}
.ls13{letter-spacing:57.943040pt;}
.ls1{letter-spacing:64.911360pt;}
.wsa{word-spacing:-56.320000pt;}
.wsc{word-spacing:-16.834560pt;}
.ws9{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.651947pt;}
.ws8{word-spacing:-15.544320pt;}
.wsd{word-spacing:-15.488000pt;}
.ws3{word-spacing:-15.431680pt;}
.ws0{word-spacing:-14.802133pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.617600pt;}
.wsb{word-spacing:-0.064000pt;}
.ws6{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:1392.306773pt;}
._a{margin-left:-3.356160pt;}
._5{margin-left:-2.001920pt;}
._1{margin-left:-1.000960pt;}
._0{width:1.490560pt;}
._2{width:2.631040pt;}
._4{width:3.669120pt;}
._d{width:4.815787pt;}
._8{width:5.711360pt;}
._9{width:6.613120pt;}
._6{width:7.694720pt;}
._3{width:9.185280pt;}
._7{width:10.539520pt;}
._c{width:11.793920pt;}
._10{width:12.920320pt;}
._f{width:14.023680pt;}
._11{width:28.103680pt;}
._12{width:29.611520pt;}
._e{width:793.310720pt;}
._b{width:1016.106667pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:101.920000pt;}
.y33{bottom:105.600000pt;}
.y71{bottom:108.640000pt;}
.y54{bottom:112.320000pt;}
.y24{bottom:128.640000pt;}
.y70{bottom:136.666667pt;}
.y53{bottom:149.786667pt;}
.y23{bottom:155.226667pt;}
.y3a{bottom:157.626667pt;}
.y6f{bottom:164.506667pt;}
.y52{bottom:170.906667pt;}
.y22{bottom:181.946667pt;}
.y9d{bottom:207.066667pt;}
.y51{bottom:208.026667pt;}
.y21{bottom:208.186667pt;}
.y6e{bottom:210.426667pt;}
.y9c{bottom:227.226667pt;}
.y50{bottom:229.466667pt;}
.y20{bottom:232.666667pt;}
.y4f{bottom:250.586667pt;}
.y6d{bottom:256.346667pt;}
.y1f{bottom:257.306667pt;}
.y4e{bottom:271.866667pt;}
.y1e{bottom:273.946667pt;}
.y6c{bottom:284.346667pt;}
.y4d{bottom:292.986667pt;}
.y1d{bottom:298.586667pt;}
.y6b{bottom:321.786667pt;}
.y1c{bottom:323.226667pt;}
.y4c{bottom:330.266667pt;}
.y6a{bottom:342.906667pt;}
.y1b{bottom:347.866667pt;}
.y8e{bottom:354.266667pt;}
.y4b{bottom:357.026667pt;}
.y9b{bottom:364.706667pt;}
.y1a{bottom:372.546667pt;}
.y37{bottom:376.546667pt;}
.y69{bottom:380.066667pt;}
.y4a{bottom:383.426667pt;}
.y19{bottom:389.186667pt;}
.y9a{bottom:391.426667pt;}
.y8d{bottom:398.146667pt;}
.y49{bottom:401.826667pt;}
.y36{bottom:403.106667pt;}
.y18{bottom:413.826667pt;}
.y8c{bottom:417.026667pt;}
.y99{bottom:417.346667pt;}
.y68{bottom:417.506667pt;}
.y35{bottom:421.666667pt;}
.y48{bottom:428.386667pt;}
.y17{bottom:430.466667pt;}
.y8b{bottom:435.586667pt;}
.y67{bottom:438.786667pt;}
.y98{bottom:441.026667pt;}
.y34{bottom:444.706667pt;}
.y8a{bottom:454.306667pt;}
.y47{bottom:454.946667pt;}
.y16{bottom:455.106667pt;}
.y97{bottom:467.746667pt;}
.y89{bottom:472.866667pt;}
.y66{bottom:475.906667pt;}
.y45{bottom:476.066667pt;}
.y46{bottom:477.986667pt;}
.y15{bottom:479.746667pt;}
.y32{bottom:485.346667pt;}
.y96{bottom:486.306667pt;}
.y88{bottom:491.426667pt;}
.y14{bottom:496.386667pt;}
.y43{bottom:504.066667pt;}
.y95{bottom:505.026667pt;}
.y44{bottom:505.666667pt;}
.y31{bottom:509.986667pt;}
.y87{bottom:510.146667pt;}
.y13{bottom:513.026667pt;}
.y65{bottom:513.346667pt;}
.y94{bottom:523.586667pt;}
.y86{bottom:528.706667pt;}
.y12{bottom:529.666667pt;}
.y38{bottom:530.146667pt;}
.y64{bottom:534.466667pt;}
.y30{bottom:534.626667pt;}
.y39{bottom:537.986667pt;}
.y93{bottom:542.146667pt;}
.y11{bottom:546.306667pt;}
.y85{bottom:547.426667pt;}
.y2f{bottom:559.266667pt;}
.y92{bottom:560.866667pt;}
.y10{bottom:562.786667pt;}
.y84{bottom:565.986667pt;}
.y63{bottom:571.586667pt;}
.y2e{bottom:583.933333pt;}
.y83{bottom:584.573333pt;}
.yf{bottom:587.293333pt;}
.y2d{bottom:600.573333pt;}
.y82{bottom:603.293333pt;}
.y91{bottom:604.573333pt;}
.y62{bottom:609.053333pt;}
.ye{bottom:610.653333pt;}
.y81{bottom:621.853333pt;}
.y2c{bottom:625.053333pt;}
.y61{bottom:630.173333pt;}
.y90{bottom:632.573333pt;}
.yd{bottom:635.293333pt;}
.y80{bottom:640.413333pt;}
.y2b{bottom:649.693333pt;}
.yc{bottom:651.933333pt;}
.y7f{bottom:659.133333pt;}
.y8f{bottom:660.413333pt;}
.y60{bottom:667.293333pt;}
.y2a{bottom:674.333333pt;}
.yb{bottom:676.573333pt;}
.y7e{bottom:677.693333pt;}
.ya{bottom:693.213333pt;}
.y7d{bottom:696.413333pt;}
.y29{bottom:698.973333pt;}
.y5f{bottom:704.733333pt;}
.y7c{bottom:714.973333pt;}
.y9{bottom:717.693333pt;}
.y28{bottom:720.413333pt;}
.y5e{bottom:726.013333pt;}
.y7b{bottom:733.533333pt;}
.y8{bottom:742.333333pt;}
.y7a{bottom:752.253333pt;}
.y7{bottom:758.973333pt;}
.y5d{bottom:762.973333pt;}
.y79{bottom:779.933333pt;}
.y6{bottom:783.613333pt;}
.y5c{bottom:800.613333pt;}
.y78{bottom:807.973333pt;}
.y5{bottom:808.293333pt;}
.y5b{bottom:821.733333pt;}
.y4{bottom:829.733333pt;}
.y42{bottom:832.133333pt;}
.y77{bottom:837.253333pt;}
.y41{bottom:858.693333pt;}
.y5a{bottom:858.853333pt;}
.y76{bottom:867.813333pt;}
.y40{bottom:885.253333pt;}
.y59{bottom:896.293333pt;}
.y75{bottom:897.093333pt;}
.y3f{bottom:903.973333pt;}
.y58{bottom:917.413333pt;}
.y3e{bottom:922.533333pt;}
.y74{bottom:940.933333pt;}
.y3d{bottom:949.093333pt;}
.y57{bottom:954.533333pt;}
.y3{bottom:966.853333pt;}
.y73{bottom:968.933333pt;}
.y3c{bottom:975.813333pt;}
.y27{bottom:986.373333pt;}
.y2{bottom:991.493333pt;}
.y56{bottom:991.973333pt;}
.y3b{bottom:994.373333pt;}
.y72{bottom:1012.933333pt;}
.y26{bottom:1013.093333pt;}
.y55{bottom:1013.253333pt;}
.y1{bottom:1015.973333pt;}
.h7{height:38.595000pt;}
.h2{height:39.840000pt;}
.h3{height:44.160000pt;}
.h6{height:48.730000pt;}
.h5{height:52.085000pt;}
.hb{height:55.375000pt;}
.hc{height:56.820000pt;}
.h8{height:57.888085pt;}
.h4{height:60.519362pt;}
.h9{height:62.812500pt;}
.ha{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x3{left:118.591988pt;}
.x10{left:132.351988pt;}
.x4{left:137.466655pt;}
.x11{left:156.346655pt;}
.x5{left:161.466655pt;}
.x13{left:172.506655pt;}
.xe{left:185.466655pt;}
.xf{left:209.466655pt;}
.x12{left:217.626655pt;}
.x2{left:291.586655pt;}
.x7{left:321.506655pt;}
.x14{left:323.586655pt;}
.x6{left:367.746655pt;}
.xa{left:377.506655pt;}
.xc{left:459.453322pt;}
.x9{left:465.213322pt;}
.xb{left:483.613322pt;}
.x8{left:487.933322pt;}
.xd{left:531.133322pt;}
}




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