
    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_0e909fa77ba1c77101d80c4c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_eb08f39acf3dbdbdcb1f0f86.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976562;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_501150cc8ae69934e92b0db8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_f54231fa047509e1c3bdf9d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_e37b705bcefffd70870b687d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_b191dc2c2c18c5c0b38cf5ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_54f332aad4af73bdb651eeb9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_210400f1009c287266ce1be8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6f1d91e8828bf1bfe9018294.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967773;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_38ec17e069c354f41e2b3aae.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_d3b7584b2e64fbdc4d5322b5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967773;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;}
.m4{transform:matrix(0.000000,-0.249676,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249676,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249676,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{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);}
.m1{transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-65.520000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.620000px;}
.v2{vertical-align:79.200000px;}
.ls14{letter-spacing:-1.354111px;}
.ls11{letter-spacing:-0.901317px;}
.lse{letter-spacing:-0.566603px;}
.ls10{letter-spacing:-0.000011px;}
.lsc{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.027360px;}
.lsa{letter-spacing:0.041008px;}
.ls12{letter-spacing:0.123023px;}
.lsd{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.982478px;}
.ls15{letter-spacing:0.983754px;}
.lsb{letter-spacing:39.557421px;}
.ls2{letter-spacing:51.336000px;}
.ls3{letter-spacing:51.639840px;}
.ls4{letter-spacing:51.759840px;}
.ls0{letter-spacing:58.633200px;}
.ls1{letter-spacing:58.749840px;}
.ls8{letter-spacing:177.465600px;}
.ls5{letter-spacing:177.516000px;}
.ls9{letter-spacing:177.636000px;}
.ls7{letter-spacing:223.149600px;}
.ls6{letter-spacing:223.200000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(30,100,200),0 0.015em rgb(30,100,200),0.015em 0 rgb(30,100,200),0 -0.015em  rgb(30,100,200);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(30,100,200);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-70.560000px;}
.ws3{word-spacing:-70.200000px;}
.ws5{word-spacing:-56.160000px;}
.ws9{word-spacing:-56.159989px;}
.ws6{word-spacing:-51.554160px;}
.ws4{word-spacing:-51.526800px;}
.wsa{word-spacing:-39.514162px;}
.ws8{word-spacing:-32.544000px;}
.ws7{word-spacing:-0.095760px;}
.wsb{word-spacing:0.000000px;}
.ws2{word-spacing:2325.480000px;}
.ws0{word-spacing:6068.460000px;}
._8{margin-left:-2397.931540px;}
._9{margin-left:-459.288825px;}
._a{margin-left:-434.559426px;}
._5{margin-left:-3.851760px;}
._2{margin-left:-2.492880px;}
._3{margin-left:-1.318320px;}
._0{width:1.055520px;}
._c{width:2.058358px;}
._1{width:3.071760px;}
._b{width:4.373871px;}
._d{width:38.414502px;}
._4{width:57.457440px;}
._7{width:278.852892px;}
._6{width:279.876378px;}
.fc4{color:transparent;}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(30,100,200);}
.fs13{font-size:66.637640px;}
.fs8{font-size:80.782968px;}
.fsf{font-size:82.015556px;}
.fs11{font-size:82.122046px;}
.fs10{font-size:83.040751px;}
.fsc{font-size:95.760000px;}
.fse{font-size:144.000000px;}
.fs12{font-size:148.653196px;}
.fs14{font-size:149.678390px;}
.fs5{font-size:175.680000px;}
.fs15{font-size:202.636726px;}
.fsd{font-size:239.760000px;}
.fs4{font-size:264.240000px;}
.fsb{font-size:264.384000px;}
.fs9{font-size:288.000000px;}
.fsa{font-size:288.144000px;}
.fs6{font-size:293.760000px;}
.fs2{font-size:300.240000px;}
.fs3{font-size:360.000000px;}
.fs7{font-size:360.144000px;}
.fs1{font-size:432.000000px;}
.fs0{font-size:527.760000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:17.055209px;}
.y35{bottom:46.529519px;}
.yf{bottom:67.747290px;}
.y36{bottom:77.541766px;}
.y44{bottom:82.667677px;}
.y4d{bottom:83.592000px;}
.y3e{bottom:85.230733px;}
.y43{bottom:103.171567px;}
.y41{bottom:119.830947px;}
.y40{bottom:140.334835px;}
.y37{bottom:140.334926px;}
.y4c{bottom:141.192000px;}
.y42{bottom:164.683228px;}
.y4b{bottom:198.795000px;}
.y4a{bottom:199.539860px;}
.y38{bottom:203.384388px;}
.y49{bottom:227.732624px;}
.y3f{bottom:261.051544px;}
.y39{bottom:266.177548px;}
.y48{bottom:285.399764px;}
.y3a{bottom:330.508500px;}
.y19{bottom:364.170000px;}
.y3b{bottom:393.301661px;}
.y47{bottom:399.708860px;}
.y45{bottom:408.935686px;}
.y46{bottom:440.972937px;}
.y18{bottom:450.570000px;}
.y3c{bottom:456.351120px;}
.y17{bottom:536.970000px;}
.y2f{bottom:873.360000px;}
.y2a{bottom:998.355000px;}
.y32{bottom:1081.080000px;}
.y31{bottom:1124.280000px;}
.y30{bottom:1167.480000px;}
.y2d{bottom:1243.185000px;}
.y2c{bottom:1283.070000px;}
.y2e{bottom:1313.820000px;}
.y2b{bottom:1326.270000px;}
.y16{bottom:1407.030000px;}
.y27{bottom:1407.495000px;}
.y6{bottom:1519.380000px;}
.y26{bottom:1647.285000px;}
.y25{bottom:1787.325000px;}
.y24{bottom:1892.880000px;}
.y23{bottom:1972.080000px;}
.y22{bottom:2051.280000px;}
.y15{bottom:2124.105000px;}
.y21{bottom:2177.250000px;}
.y20{bottom:2392.050000px;}
.y1b{bottom:2440.830000px;}
.y1f{bottom:2729.805000px;}
.y1d{bottom:2835.390000px;}
.y1e{bottom:2860.455000px;}
.y1c{bottom:2931.480000px;}
.y14{bottom:2936.085000px;}
.yd{bottom:3039.945000px;}
.y1a{bottom:3044.190000px;}
.ye{bottom:3184.477481px;}
.y34{bottom:3266.292502px;}
.y13{bottom:3309.510000px;}
.y12{bottom:3388.710000px;}
.y11{bottom:3467.910000px;}
.y10{bottom:3547.110000px;}
.y29{bottom:3697.560000px;}
.y28{bottom:3783.960000px;}
.yb{bottom:3789.390000px;}
.y33{bottom:3866.070000px;}
.ya{bottom:3868.590000px;}
.y9{bottom:3947.790000px;}
.y8{bottom:4026.990000px;}
.y7{bottom:4106.190000px;}
.yc{bottom:4209.630000px;}
.y5{bottom:4322.985000px;}
.y2{bottom:4515.510000px;}
.y1{bottom:4659.150000px;}
.y4{bottom:4821.765000px;}
.y3{bottom:4926.210000px;}
.h18{height:50.628988px;}
.h14{height:62.312600px;}
.h16{height:62.393508px;}
.h15{height:63.091508px;}
.h10{height:72.755156px;}
.hc{height:80.349075px;}
.h17{height:108.876853px;}
.h19{height:109.627727px;}
.h12{height:143.226562px;}
.h1a{height:148.415571px;}
.h11{height:175.605469px;}
.h7{height:193.535156px;}
.hf{height:193.640625px;}
.h8{height:207.871875px;}
.hd{height:210.937500px;}
.he{height:211.042969px;}
.h9{height:215.156250px;}
.h4{height:219.902344px;}
.h5{height:263.671875px;}
.ha{height:263.777344px;}
.h6{height:268.291875px;}
.h3{height:316.406250px;}
.h2{height:386.542969px;}
.hb{height:430.001330px;}
.h13{height:513.879046px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w3{width:753.099044px;}
.w4{width:902.059515px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x28{left:25.523764px;}
.x26{left:41.691504px;}
.x25{left:48.363960px;}
.x1{left:118.115947px;}
.x29{left:129.202792px;}
.x5{left:143.171947px;}
.x21{left:155.594947px;}
.x19{left:157.784947px;}
.x7{left:160.467015px;}
.x32{left:176.679619px;}
.x1c{left:179.669947px;}
.x2c{left:216.970778px;}
.x2d{left:218.767205px;}
.x2b{left:232.625274px;}
.x27{left:281.385286px;}
.x2a{left:299.606082px;}
.x6{left:303.014947px;}
.x1a{left:333.644947px;}
.x2{left:337.964947px;}
.x8{left:362.305740px;}
.x1b{left:366.224947px;}
.x24{left:367.613425px;}
.x17{left:404.249947px;}
.x31{left:408.417760px;}
.x30{left:540.839541px;}
.x2e{left:569.325587px;}
.x1d{left:589.829947px;}
.x2f{left:780.019952px;}
.x1f{left:824.504947px;}
.x20{left:831.344947px;}
.x1e{left:857.444947px;}
.x4{left:943.634947px;}
.x9{left:945.719947px;}
.x16{left:1184.729947px;}
.x3{left:1268.099947px;}
.xa{left:1296.539947px;}
.x12{left:1299.854947px;}
.xb{left:1317.884947px;}
.x11{left:1365.509947px;}
.x14{left:1381.934947px;}
.x23{left:1816.989243px;}
.x33{left:1844.069947px;}
.xd{left:1908.614947px;}
.xc{left:1914.194947px;}
.x22{left:1921.394947px;}
.x36{left:1987.919947px;}
.x35{left:2359.109947px;}
.x13{left:2538.464947px;}
.xf{left:2553.014947px;}
.x10{left:2559.419947px;}
.x15{left:2560.574947px;}
.x34{left:2654.669947px;}
.x18{left:2744.534947px;}
.xe{left:2902.289947px;}
@media print{
.v3{vertical-align:-58.240000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.106667pt;}
.v2{vertical-align:70.400000pt;}
.ls14{letter-spacing:-1.203654pt;}
.ls11{letter-spacing:-0.801170pt;}
.lse{letter-spacing:-0.503647pt;}
.ls10{letter-spacing:-0.000010pt;}
.lsc{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.024320pt;}
.lsa{letter-spacing:0.036451pt;}
.ls12{letter-spacing:0.109354pt;}
.lsd{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.873314pt;}
.ls15{letter-spacing:0.874448pt;}
.lsb{letter-spacing:35.162152pt;}
.ls2{letter-spacing:45.632000pt;}
.ls3{letter-spacing:45.902080pt;}
.ls4{letter-spacing:46.008747pt;}
.ls0{letter-spacing:52.118400pt;}
.ls1{letter-spacing:52.222080pt;}
.ls8{letter-spacing:157.747200pt;}
.ls5{letter-spacing:157.792000pt;}
.ls9{letter-spacing:157.898667pt;}
.ls7{letter-spacing:198.355200pt;}
.ls6{letter-spacing:198.400000pt;}
.ws1{word-spacing:-62.720000pt;}
.ws3{word-spacing:-62.400000pt;}
.ws5{word-spacing:-49.920000pt;}
.ws9{word-spacing:-49.919990pt;}
.ws6{word-spacing:-45.825920pt;}
.ws4{word-spacing:-45.801600pt;}
.wsa{word-spacing:-35.123699pt;}
.ws8{word-spacing:-28.928000pt;}
.ws7{word-spacing:-0.085120pt;}
.wsb{word-spacing:0.000000pt;}
.ws2{word-spacing:2067.093333pt;}
.ws0{word-spacing:5394.186667pt;}
._8{margin-left:-2131.494702pt;}
._9{margin-left:-408.256733pt;}
._a{margin-left:-386.275045pt;}
._5{margin-left:-3.423787pt;}
._2{margin-left:-2.215893pt;}
._3{margin-left:-1.171840pt;}
._0{width:0.938240pt;}
._c{width:1.829652pt;}
._1{width:2.730453pt;}
._b{width:3.887885pt;}
._d{width:34.146224pt;}
._4{width:51.073280pt;}
._7{width:247.869237pt;}
._6{width:248.779002pt;}
.fs13{font-size:59.233457pt;}
.fs8{font-size:71.807082pt;}
.fsf{font-size:72.902717pt;}
.fs11{font-size:72.997375pt;}
.fs10{font-size:73.814001pt;}
.fsc{font-size:85.120000pt;}
.fse{font-size:128.000000pt;}
.fs12{font-size:132.136174pt;}
.fs14{font-size:133.047458pt;}
.fs5{font-size:156.160000pt;}
.fs15{font-size:180.121534pt;}
.fsd{font-size:213.120000pt;}
.fs4{font-size:234.880000pt;}
.fsb{font-size:235.008000pt;}
.fs9{font-size:256.000000pt;}
.fsa{font-size:256.128000pt;}
.fs6{font-size:261.120000pt;}
.fs2{font-size:266.880000pt;}
.fs3{font-size:320.000000pt;}
.fs7{font-size:320.128000pt;}
.fs1{font-size:384.000000pt;}
.fs0{font-size:469.120000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:15.160186pt;}
.y35{bottom:41.359572pt;}
.yf{bottom:60.219813pt;}
.y36{bottom:68.926014pt;}
.y44{bottom:73.482379pt;}
.y4d{bottom:74.304000pt;}
.y3e{bottom:75.760651pt;}
.y43{bottom:91.708059pt;}
.y41{bottom:106.516397pt;}
.y40{bottom:124.742075pt;}
.y37{bottom:124.742157pt;}
.y4c{bottom:125.504000pt;}
.y42{bottom:146.385092pt;}
.y4b{bottom:176.706667pt;}
.y4a{bottom:177.368764pt;}
.y38{bottom:180.786122pt;}
.y49{bottom:202.428999pt;}
.y3f{bottom:232.045817pt;}
.y39{bottom:236.602265pt;}
.y48{bottom:253.688679pt;}
.y3a{bottom:293.785333pt;}
.y19{bottom:323.706667pt;}
.y3b{bottom:349.601476pt;}
.y47{bottom:355.296764pt;}
.y45{bottom:363.498387pt;}
.y46{bottom:391.975944pt;}
.y18{bottom:400.506667pt;}
.y3c{bottom:405.645440pt;}
.y17{bottom:477.306667pt;}
.y2f{bottom:776.320000pt;}
.y2a{bottom:887.426667pt;}
.y32{bottom:960.960000pt;}
.y31{bottom:999.360000pt;}
.y30{bottom:1037.760000pt;}
.y2d{bottom:1105.053333pt;}
.y2c{bottom:1140.506667pt;}
.y2e{bottom:1167.840000pt;}
.y2b{bottom:1178.906667pt;}
.y16{bottom:1250.693333pt;}
.y27{bottom:1251.106667pt;}
.y6{bottom:1350.560000pt;}
.y26{bottom:1464.253333pt;}
.y25{bottom:1588.733333pt;}
.y24{bottom:1682.560000pt;}
.y23{bottom:1752.960000pt;}
.y22{bottom:1823.360000pt;}
.y15{bottom:1888.093333pt;}
.y21{bottom:1935.333333pt;}
.y20{bottom:2126.266667pt;}
.y1b{bottom:2169.626667pt;}
.y1f{bottom:2426.493333pt;}
.y1d{bottom:2520.346667pt;}
.y1e{bottom:2542.626667pt;}
.y1c{bottom:2605.760000pt;}
.y14{bottom:2609.853333pt;}
.yd{bottom:2702.173333pt;}
.y1a{bottom:2705.946667pt;}
.ye{bottom:2830.646650pt;}
.y34{bottom:2903.371113pt;}
.y13{bottom:2941.786667pt;}
.y12{bottom:3012.186667pt;}
.y11{bottom:3082.586667pt;}
.y10{bottom:3152.986667pt;}
.y29{bottom:3286.720000pt;}
.y28{bottom:3363.520000pt;}
.yb{bottom:3368.346667pt;}
.y33{bottom:3436.506667pt;}
.ya{bottom:3438.746667pt;}
.y9{bottom:3509.146667pt;}
.y8{bottom:3579.546667pt;}
.y7{bottom:3649.946667pt;}
.yc{bottom:3741.893333pt;}
.y5{bottom:3842.653333pt;}
.y2{bottom:4013.786667pt;}
.y1{bottom:4141.466667pt;}
.y4{bottom:4286.013333pt;}
.y3{bottom:4378.853333pt;}
.h18{height:45.003545pt;}
.h14{height:55.388978pt;}
.h16{height:55.460896pt;}
.h15{height:56.081340pt;}
.h10{height:64.671250pt;}
.hc{height:71.421400pt;}
.h17{height:96.779424pt;}
.h19{height:97.446869pt;}
.h12{height:127.312500pt;}
.h1a{height:131.924952pt;}
.h11{height:156.093750pt;}
.h7{height:172.031250pt;}
.hf{height:172.125000pt;}
.h8{height:184.775000pt;}
.hd{height:187.500000pt;}
.he{height:187.593750pt;}
.h9{height:191.250000pt;}
.h4{height:195.468750pt;}
.h5{height:234.375000pt;}
.ha{height:234.468750pt;}
.h6{height:238.481667pt;}
.h3{height:281.250000pt;}
.h2{height:343.593750pt;}
.hb{height:382.223405pt;}
.h13{height:456.781374pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w3{width:669.421372pt;}
.w4{width:801.830680pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x28{left:22.687790pt;}
.x26{left:37.059115pt;}
.x25{left:42.990187pt;}
.x1{left:104.991953pt;}
.x29{left:114.846926pt;}
.x5{left:127.263953pt;}
.x21{left:138.306619pt;}
.x19{left:140.253286pt;}
.x7{left:142.637346pt;}
.x32{left:157.048550pt;}
.x1c{left:159.706619pt;}
.x2c{left:192.862914pt;}
.x2d{left:194.459738pt;}
.x2b{left:206.778021pt;}
.x27{left:250.120254pt;}
.x2a{left:266.316518pt;}
.x6{left:269.346619pt;}
.x1a{left:296.573286pt;}
.x2{left:300.413286pt;}
.x8{left:322.049546pt;}
.x1b{left:325.533286pt;}
.x24{left:326.767489pt;}
.x17{left:359.333286pt;}
.x31{left:363.038009pt;}
.x30{left:480.746259pt;}
.x2e{left:506.067188pt;}
.x1d{left:524.293286pt;}
.x2f{left:693.351068pt;}
.x1f{left:732.893286pt;}
.x20{left:738.973286pt;}
.x1e{left:762.173286pt;}
.x4{left:838.786619pt;}
.x9{left:840.639953pt;}
.x16{left:1053.093286pt;}
.x3{left:1127.199953pt;}
.xa{left:1152.479953pt;}
.x12{left:1155.426619pt;}
.xb{left:1171.453286pt;}
.x11{left:1213.786619pt;}
.x14{left:1228.386619pt;}
.x23{left:1615.101549pt;}
.x33{left:1639.173286pt;}
.xd{left:1696.546619pt;}
.xc{left:1701.506619pt;}
.x22{left:1707.906619pt;}
.x36{left:1767.039953pt;}
.x35{left:2096.986619pt;}
.x13{left:2256.413286pt;}
.xf{left:2269.346619pt;}
.x10{left:2275.039953pt;}
.x15{left:2276.066619pt;}
.x34{left:2359.706619pt;}
.x18{left:2439.586619pt;}
.xe{left:2579.813286pt;}
}




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