
    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_a3ca45a911658c8bdfe3eee7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.750000;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_a2bb13608fd283d16ce60efa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_551f01b5676cc08bfa28254d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_0c04e20facee26da0e500587.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.030273;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_d4554e0c1895ced7f8d301a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.030273;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_467f61b131836bca8837786e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_9823fcf056e550776670d7a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_57fc94c6759972873d2002eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_22a3aca8d07871e194da812a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.904297;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_b235869d46fced8a34dd88be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_80f62b4efc22e39d488431c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_720dd73b67961158f957558a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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;}
.ls5{letter-spacing:-0.794880px;}
.lsa{letter-spacing:-0.648000px;}
.ls1{letter-spacing:-0.396000px;}
.lsd{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.054000px;}
.ls3{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.132480px;}
.ls7{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.280800px;}
.ls2{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.360000px;}
.lse{letter-spacing:12.386880px;}
.lsb{letter-spacing:54.864000px;}
.ls11{letter-spacing:203.796000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-63.000000px;}
.ws0{word-spacing:-28.836000px;}
.ws6{word-spacing:-16.488000px;}
.ws3{word-spacing:-16.416000px;}
.ws12{word-spacing:-16.344000px;}
.ws5{word-spacing:-16.272000px;}
.ws4{word-spacing:-16.128000px;}
.ws13{word-spacing:-16.056000px;}
.ws15{word-spacing:-15.912000px;}
.ws14{word-spacing:-15.624000px;}
.ws19{word-spacing:-12.096000px;}
.ws11{word-spacing:-0.792000px;}
.wsa{word-spacing:-0.648000px;}
.wse{word-spacing:-0.504000px;}
.ws10{word-spacing:-0.360000px;}
.ws1b{word-spacing:-0.324000px;}
.ws17{word-spacing:-0.288000px;}
.ws1d{word-spacing:-0.270000px;}
.ws18{word-spacing:-0.216000px;}
.wsb{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.072000px;}
.ws1c{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:0.072000px;}
.ws1a{word-spacing:0.132480px;}
.ws16{word-spacing:0.144000px;}
.wsc{word-spacing:0.216000px;}
.ws9{word-spacing:0.504000px;}
.wsf{word-spacing:0.648000px;}
.ws7{word-spacing:0.794880px;}
._a{margin-left:-32.274000px;}
._6{margin-left:-9.912000px;}
._7{margin-left:-7.692000px;}
._5{margin-left:-6.048000px;}
._4{margin-left:-4.464000px;}
._2{margin-left:-3.456000px;}
._0{margin-left:-1.584000px;}
._1{width:1.728000px;}
._3{width:2.820000px;}
._b{width:166.086000px;}
._c{width:203.796000px;}
._9{width:871.983360px;}
._8{width:925.968960px;}
.fc3{color:transparent;}
.fc2{color:rgb(238,123,8);}
.fc6{color:rgb(68,84,106);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(89,89,89);}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y4{bottom:-0.375000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.750000px;}
.y19{bottom:58.506480px;}
.y18{bottom:78.660000px;}
.y45{bottom:118.080000px;}
.y67{bottom:120.600000px;}
.y44{bottom:140.040000px;}
.y66{bottom:154.800000px;}
.y5b{bottom:160.920000px;}
.y43{bottom:162.000000px;}
.y65{bottom:181.260000px;}
.y5a{bottom:183.060000px;}
.y42{bottom:183.960000px;}
.y41{bottom:205.920000px;}
.y40{bottom:227.880000px;}
.y59{bottom:228.960000px;}
.y3f{bottom:249.840000px;}
.y58{bottom:251.820000px;}
.y3e{bottom:271.800000px;}
.y57{bottom:273.780000px;}
.y3d{bottom:293.940000px;}
.y56{bottom:295.740000px;}
.y3c{bottom:315.900000px;}
.y55{bottom:317.700000px;}
.y3b{bottom:337.860000px;}
.y54{bottom:339.660000px;}
.y17{bottom:352.245000px;}
.y3a{bottom:359.820000px;}
.y53{bottom:361.620000px;}
.y39{bottom:381.780000px;}
.y52{bottom:383.580000px;}
.y16{bottom:391.620000px;}
.y38{bottom:403.740000px;}
.y51{bottom:405.540000px;}
.y7b{bottom:417.060000px;}
.y37{bottom:425.700000px;}
.y50{bottom:427.500000px;}
.y15{bottom:430.650000px;}
.y7a{bottom:439.020000px;}
.y64{bottom:443.160000px;}
.y36{bottom:447.660000px;}
.y4f{bottom:449.460000px;}
.y63{bottom:456.120000px;}
.y14{bottom:456.150000px;}
.y79{bottom:461.160000px;}
.y35{bottom:469.620000px;}
.y4e{bottom:471.420000px;}
.y13{bottom:482.025000px;}
.y78{bottom:483.120000px;}
.y34{bottom:491.580000px;}
.y4d{bottom:493.380000px;}
.y77{bottom:505.080000px;}
.y12{bottom:507.525000px;}
.y33{bottom:513.540000px;}
.y4c{bottom:515.340000px;}
.y76{bottom:527.040000px;}
.y11{bottom:533.025000px;}
.y32{bottom:535.500000px;}
.y4b{bottom:537.300000px;}
.y75{bottom:549.000000px;}
.y31{bottom:557.460000px;}
.y10{bottom:558.945000px;}
.y4a{bottom:559.440000px;}
.y74{bottom:570.960000px;}
.y30{bottom:579.420000px;}
.y49{bottom:581.400000px;}
.yf{bottom:588.570000px;}
.y73{bottom:592.920000px;}
.y2f{bottom:601.560000px;}
.y48{bottom:603.360000px;}
.y72{bottom:614.880000px;}
.y2e{bottom:623.520000px;}
.y47{bottom:625.320000px;}
.ye{bottom:632.445000px;}
.y71{bottom:636.840000px;}
.y2d{bottom:645.480000px;}
.y46{bottom:646.920000px;}
.y70{bottom:658.800000px;}
.y2c{bottom:667.440000px;}
.y62{bottom:672.840000px;}
.yd{bottom:676.350000px;}
.y6f{bottom:680.760000px;}
.y2b{bottom:689.400000px;}
.y61{bottom:694.800000px;}
.y6e{bottom:702.720000px;}
.y2a{bottom:711.360000px;}
.y60{bottom:716.760000px;}
.yc{bottom:720.225000px;}
.y6d{bottom:724.680000px;}
.y29{bottom:733.320000px;}
.y5f{bottom:738.720000px;}
.y6c{bottom:746.640000px;}
.y28{bottom:755.280000px;}
.y5e{bottom:760.680000px;}
.yb{bottom:764.475000px;}
.y6b{bottom:768.780000px;}
.y27{bottom:777.240000px;}
.y6a{bottom:790.740000px;}
.y5d{bottom:796.320000px;}
.y26{bottom:799.200000px;}
.ya{bottom:808.380000px;}
.y5c{bottom:809.280000px;}
.y25{bottom:821.160000px;}
.y69{bottom:826.200000px;}
.y68{bottom:839.160000px;}
.y24{bottom:843.120000px;}
.y9{bottom:852.255000px;}
.y23{bottom:865.080000px;}
.y22{bottom:887.040000px;}
.y8{bottom:896.175000px;}
.y21{bottom:909.180000px;}
.y20{bottom:931.140000px;}
.y7{bottom:940.050000px;}
.y1f{bottom:953.100000px;}
.y1e{bottom:975.060000px;}
.y6{bottom:992.925000px;}
.y1d{bottom:997.020000px;}
.y1c{bottom:1018.980000px;}
.y5{bottom:1021.080000px;}
.y1b{bottom:1040.940000px;}
.y2{bottom:1058.205000px;}
.y1a{bottom:1062.900000px;}
.y1{bottom:1073.205000px;}
.hb{height:36.914062px;}
.h1{height:44.179688px;}
.h5{height:46.050293px;}
.h6{height:47.545312px;}
.h9{height:48.095156px;}
.ha{height:49.218750px;}
.h8{height:51.679688px;}
.h7{height:52.277344px;}
.h4{height:70.998047px;}
.h3{height:121.710938px;}
.h2{height:125.015625px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:33.749986px;}
.x6{left:81.037486px;}
.x7{left:99.037486px;}
.xc{left:100.537486px;}
.x11{left:108.006480px;}
.x14{left:134.640000px;}
.xb{left:155.699986px;}
.x16{left:162.000000px;}
.x9{left:231.494986px;}
.xe{left:261.119986px;}
.x13{left:290.340000px;}
.x12{left:296.640000px;}
.xf{left:315.524986px;}
.x18{left:317.160000px;}
.xa{left:363.524986px;}
.x15{left:423.540000px;}
.xd{left:459.194986px;}
.x8{left:462.569986px;}
.x1a{left:468.180000px;}
.x19{left:473.040000px;}
.x17{left:513.000000px;}
.x1{left:609.254986px;}
.x3{left:652.004986px;}
.x10{left:749.160000px;}
.x2{left:837.344986px;}
.x4{left:922.124986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.706560pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:-0.352000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.048000pt;}
.ls3{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.117760pt;}
.ls7{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.249600pt;}
.ls2{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.320000pt;}
.lse{letter-spacing:11.010560pt;}
.lsb{letter-spacing:48.768000pt;}
.ls11{letter-spacing:181.152000pt;}
.ws1{word-spacing:-56.000000pt;}
.ws0{word-spacing:-25.632000pt;}
.ws6{word-spacing:-14.656000pt;}
.ws3{word-spacing:-14.592000pt;}
.ws12{word-spacing:-14.528000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws4{word-spacing:-14.336000pt;}
.ws13{word-spacing:-14.272000pt;}
.ws15{word-spacing:-14.144000pt;}
.ws14{word-spacing:-13.888000pt;}
.ws19{word-spacing:-10.752000pt;}
.ws11{word-spacing:-0.704000pt;}
.wsa{word-spacing:-0.576000pt;}
.wse{word-spacing:-0.448000pt;}
.ws10{word-spacing:-0.320000pt;}
.ws1b{word-spacing:-0.288000pt;}
.ws17{word-spacing:-0.256000pt;}
.ws1d{word-spacing:-0.240000pt;}
.ws18{word-spacing:-0.192000pt;}
.wsb{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.064000pt;}
.ws1c{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.064000pt;}
.ws1a{word-spacing:0.117760pt;}
.ws16{word-spacing:0.128000pt;}
.wsc{word-spacing:0.192000pt;}
.ws9{word-spacing:0.448000pt;}
.wsf{word-spacing:0.576000pt;}
.ws7{word-spacing:0.706560pt;}
._a{margin-left:-28.688000pt;}
._6{margin-left:-8.810667pt;}
._7{margin-left:-6.837333pt;}
._5{margin-left:-5.376000pt;}
._4{margin-left:-3.968000pt;}
._2{margin-left:-3.072000pt;}
._0{margin-left:-1.408000pt;}
._1{width:1.536000pt;}
._3{width:2.506667pt;}
._b{width:147.632000pt;}
._c{width:181.152000pt;}
._9{width:775.096320pt;}
._8{width:823.083520pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y4{bottom:-0.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.333333pt;}
.y19{bottom:52.005760pt;}
.y18{bottom:69.920000pt;}
.y45{bottom:104.960000pt;}
.y67{bottom:107.200000pt;}
.y44{bottom:124.480000pt;}
.y66{bottom:137.600000pt;}
.y5b{bottom:143.040000pt;}
.y43{bottom:144.000000pt;}
.y65{bottom:161.120000pt;}
.y5a{bottom:162.720000pt;}
.y42{bottom:163.520000pt;}
.y41{bottom:183.040000pt;}
.y40{bottom:202.560000pt;}
.y59{bottom:203.520000pt;}
.y3f{bottom:222.080000pt;}
.y58{bottom:223.840000pt;}
.y3e{bottom:241.600000pt;}
.y57{bottom:243.360000pt;}
.y3d{bottom:261.280000pt;}
.y56{bottom:262.880000pt;}
.y3c{bottom:280.800000pt;}
.y55{bottom:282.400000pt;}
.y3b{bottom:300.320000pt;}
.y54{bottom:301.920000pt;}
.y17{bottom:313.106667pt;}
.y3a{bottom:319.840000pt;}
.y53{bottom:321.440000pt;}
.y39{bottom:339.360000pt;}
.y52{bottom:340.960000pt;}
.y16{bottom:348.106667pt;}
.y38{bottom:358.880000pt;}
.y51{bottom:360.480000pt;}
.y7b{bottom:370.720000pt;}
.y37{bottom:378.400000pt;}
.y50{bottom:380.000000pt;}
.y15{bottom:382.800000pt;}
.y7a{bottom:390.240000pt;}
.y64{bottom:393.920000pt;}
.y36{bottom:397.920000pt;}
.y4f{bottom:399.520000pt;}
.y63{bottom:405.440000pt;}
.y14{bottom:405.466667pt;}
.y79{bottom:409.920000pt;}
.y35{bottom:417.440000pt;}
.y4e{bottom:419.040000pt;}
.y13{bottom:428.466667pt;}
.y78{bottom:429.440000pt;}
.y34{bottom:436.960000pt;}
.y4d{bottom:438.560000pt;}
.y77{bottom:448.960000pt;}
.y12{bottom:451.133333pt;}
.y33{bottom:456.480000pt;}
.y4c{bottom:458.080000pt;}
.y76{bottom:468.480000pt;}
.y11{bottom:473.800000pt;}
.y32{bottom:476.000000pt;}
.y4b{bottom:477.600000pt;}
.y75{bottom:488.000000pt;}
.y31{bottom:495.520000pt;}
.y10{bottom:496.840000pt;}
.y4a{bottom:497.280000pt;}
.y74{bottom:507.520000pt;}
.y30{bottom:515.040000pt;}
.y49{bottom:516.800000pt;}
.yf{bottom:523.173333pt;}
.y73{bottom:527.040000pt;}
.y2f{bottom:534.720000pt;}
.y48{bottom:536.320000pt;}
.y72{bottom:546.560000pt;}
.y2e{bottom:554.240000pt;}
.y47{bottom:555.840000pt;}
.ye{bottom:562.173333pt;}
.y71{bottom:566.080000pt;}
.y2d{bottom:573.760000pt;}
.y46{bottom:575.040000pt;}
.y70{bottom:585.600000pt;}
.y2c{bottom:593.280000pt;}
.y62{bottom:598.080000pt;}
.yd{bottom:601.200000pt;}
.y6f{bottom:605.120000pt;}
.y2b{bottom:612.800000pt;}
.y61{bottom:617.600000pt;}
.y6e{bottom:624.640000pt;}
.y2a{bottom:632.320000pt;}
.y60{bottom:637.120000pt;}
.yc{bottom:640.200000pt;}
.y6d{bottom:644.160000pt;}
.y29{bottom:651.840000pt;}
.y5f{bottom:656.640000pt;}
.y6c{bottom:663.680000pt;}
.y28{bottom:671.360000pt;}
.y5e{bottom:676.160000pt;}
.yb{bottom:679.533333pt;}
.y6b{bottom:683.360000pt;}
.y27{bottom:690.880000pt;}
.y6a{bottom:702.880000pt;}
.y5d{bottom:707.840000pt;}
.y26{bottom:710.400000pt;}
.ya{bottom:718.560000pt;}
.y5c{bottom:719.360000pt;}
.y25{bottom:729.920000pt;}
.y69{bottom:734.400000pt;}
.y68{bottom:745.920000pt;}
.y24{bottom:749.440000pt;}
.y9{bottom:757.560000pt;}
.y23{bottom:768.960000pt;}
.y22{bottom:788.480000pt;}
.y8{bottom:796.600000pt;}
.y21{bottom:808.160000pt;}
.y20{bottom:827.680000pt;}
.y7{bottom:835.600000pt;}
.y1f{bottom:847.200000pt;}
.y1e{bottom:866.720000pt;}
.y6{bottom:882.600000pt;}
.y1d{bottom:886.240000pt;}
.y1c{bottom:905.760000pt;}
.y5{bottom:907.626667pt;}
.y1b{bottom:925.280000pt;}
.y2{bottom:940.626667pt;}
.y1a{bottom:944.800000pt;}
.y1{bottom:953.960000pt;}
.hb{height:32.812500pt;}
.h1{height:39.270833pt;}
.h5{height:40.933594pt;}
.h6{height:42.262500pt;}
.h9{height:42.751250pt;}
.ha{height:43.750000pt;}
.h8{height:45.937500pt;}
.h7{height:46.468750pt;}
.h4{height:63.109375pt;}
.h3{height:108.187500pt;}
.h2{height:111.125000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:29.999988pt;}
.x6{left:72.033321pt;}
.x7{left:88.033321pt;}
.xc{left:89.366655pt;}
.x11{left:96.005760pt;}
.x14{left:119.680000pt;}
.xb{left:138.399988pt;}
.x16{left:144.000000pt;}
.x9{left:205.773321pt;}
.xe{left:232.106655pt;}
.x13{left:258.080000pt;}
.x12{left:263.680000pt;}
.xf{left:280.466655pt;}
.x18{left:281.920000pt;}
.xa{left:323.133321pt;}
.x15{left:376.480000pt;}
.xd{left:408.173321pt;}
.x8{left:411.173321pt;}
.x1a{left:416.160000pt;}
.x19{left:420.480000pt;}
.x17{left:456.000000pt;}
.x1{left:541.559988pt;}
.x3{left:579.559988pt;}
.x10{left:665.920000pt;}
.x2{left:744.306655pt;}
.x4{left:819.666655pt;}
}




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