
    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_25917758f33a9f235f033126.woff')format("woff");}.ff1{font-family:ff1;line-height:1.193359;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_b0c417946efa4177430cc761.woff')format("woff");}.ff2{font-family:ff2;line-height:1.193359;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_b45922b36bb3692f157cc8ca.woff')format("woff");}.ff3{font-family:ff3;line-height:1.193359;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_3df8ce94a87e7a8b70748023.woff')format("woff");}.ff4{font-family:ff4;line-height:1.193359;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_d2bdf1babb45083d42be9730.woff')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_de5cae0d9e990d5d28f242e8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.193359;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;}
.m1{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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-2.340000px;}
.ls15{letter-spacing:-1.680000px;}
.lsf{letter-spacing:-1.620000px;}
.lsc{letter-spacing:-1.440000px;}
.ls0{letter-spacing:-1.170000px;}
.ls13{letter-spacing:-0.960000px;}
.ls19{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.600000px;}
.ls21{letter-spacing:-0.480000px;}
.ls1c{letter-spacing:-0.384000px;}
.lsd{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.168000px;}
.ls1e{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.007200px;}
.ls14{letter-spacing:0.084000px;}
.lse{letter-spacing:0.090000px;}
.ls1a{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.252000px;}
.lsb{letter-spacing:0.270000px;}
.ls1d{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.420000px;}
.ls22{letter-spacing:0.528000px;}
.ls18{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.900000px;}
.ls5{letter-spacing:0.912000px;}
.ls7{letter-spacing:3.672000px;}
.ls6{letter-spacing:4.608000px;}
.ls4{letter-spacing:7.056000px;}
.ls3{letter-spacing:7.560000px;}
.ls1b{letter-spacing:615.941400px;}
.ls8{letter-spacing:616.037400px;}
.ls2{letter-spacing:618.149400px;}
.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;}
}
.ws2{word-spacing:-47.520000px;}
.ws0{word-spacing:-45.162000px;}
.ws8{word-spacing:-18.090000px;}
.ws9{word-spacing:-17.910000px;}
.wsa{word-spacing:-17.820000px;}
.ws15{word-spacing:-16.884000px;}
.ws13{word-spacing:-16.716000px;}
.ws14{word-spacing:-16.464000px;}
.ws27{word-spacing:-14.472000px;}
.ws24{word-spacing:-13.200000px;}
.ws18{word-spacing:-12.660000px;}
.ws25{word-spacing:-12.420000px;}
.ws1f{word-spacing:-12.300000px;}
.ws1e{word-spacing:-12.180000px;}
.ws21{word-spacing:-11.760000px;}
.ws17{word-spacing:-11.280000px;}
.ws7{word-spacing:-9.456000px;}
.ws1d{word-spacing:-9.120000px;}
.ws12{word-spacing:-8.544000px;}
.ws5{word-spacing:-4.608000px;}
.ws6{word-spacing:-3.672000px;}
.ws4{word-spacing:-0.912000px;}
.ws1b{word-spacing:-0.780000px;}
.ws19{word-spacing:-0.660000px;}
.ws28{word-spacing:-0.528000px;}
.ws10{word-spacing:-0.360000px;}
.wsb{word-spacing:-0.270000px;}
.ws11{word-spacing:-0.252000px;}
.ws1c{word-spacing:-0.120000px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.270000px;}
.ws26{word-spacing:0.384000px;}
.ws3{word-spacing:0.504000px;}
.ws1a{word-spacing:0.720000px;}
.ws22{word-spacing:0.960000px;}
.wsc{word-spacing:1.440000px;}
.wse{word-spacing:1.620000px;}
.ws16{word-spacing:1.680000px;}
.wsf{word-spacing:2.340000px;}
.ws20{word-spacing:583.205400px;}
.ws23{word-spacing:586.757400px;}
._6{margin-left:-54.432000px;}
._f{margin-left:-52.512000px;}
._d{margin-left:-51.216000px;}
._e{margin-left:-30.949800px;}
._7{margin-left:-29.046600px;}
._4{margin-left:-7.459200px;}
._3{margin-left:-5.544000px;}
._5{margin-left:-3.951600px;}
._2{margin-left:-2.788800px;}
._1{margin-left:-1.486800px;}
._0{width:1.778400px;}
._c{width:7.311600px;}
._b{width:8.871600px;}
._a{width:17.691600px;}
._8{width:615.797400px;}
._9{width:994.563000px;}
.fc5{color:rgb(16,15,13);}
.fc3{color:transparent;}
.fc2{color:rgb(37,24,65);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(241,235,235);}
.fs3{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs0{font-size:234.000000px;}
.fs4{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y79{bottom:52.201500px;}
.y7{bottom:52.353750px;}
.y78{bottom:71.453400px;}
.y77{bottom:86.453400px;}
.y2{bottom:101.173350px;}
.y76{bottom:105.705300px;}
.y1{bottom:156.673350px;}
.y75{bottom:171.001350px;}
.y74{bottom:192.001350px;}
.y27{bottom:212.842200px;}
.y73{bottom:213.001350px;}
.y26{bottom:236.842200px;}
.y1c{bottom:237.551700px;}
.y72{bottom:246.757350px;}
.y25{bottom:260.842200px;}
.y1b{bottom:261.551700px;}
.y71{bottom:267.757350px;}
.y42{bottom:268.336050px;}
.y24{bottom:284.842200px;}
.y1a{bottom:285.551700px;}
.y7a{bottom:286.877100px;}
.y70{bottom:288.757350px;}
.y5a{bottom:318.850350px;}
.y9{bottom:319.467000px;}
.y56{bottom:321.720450px;}
.yb{bottom:322.395300px;}
.y6f{bottom:322.513200px;}
.y41{bottom:326.588100px;}
.y6e{bottom:343.513200px;}
.y40{bottom:347.588100px;}
.y6d{bottom:364.513200px;}
.y37{bottom:367.843950px;}
.y3f{bottom:368.588100px;}
.y55{bottom:384.214050px;}
.y36{bottom:384.343950px;}
.y6c{bottom:398.269200px;}
.y3e{bottom:402.343950px;}
.ya{bottom:402.721200px;}
.y54{bottom:405.214050px;}
.yd{bottom:405.649350px;}
.y35{bottom:413.599800px;}
.y59{bottom:415.099800px;}
.y6b{bottom:419.269200px;}
.y4e{bottom:420.969900px;}
.y34{bottom:430.099800px;}
.y3d{bottom:436.099800px;}
.y4d{bottom:438.969900px;}
.y6a{bottom:440.269200px;}
.y33{bottom:446.599800px;}
.y4c{bottom:456.969900px;}
.y3c{bottom:457.099800px;}
.y53{bottom:459.969900px;}
.y58{bottom:463.099800px;}
.y69{bottom:474.025050px;}
.y32{bottom:475.855800px;}
.y64{bottom:476.269200px;}
.yc{bottom:483.183900px;}
.ye{bottom:486.112200px;}
.y4b{bottom:487.725900px;}
.y3b{bottom:490.855800px;}
.y19{bottom:491.009700px;}
.y31{bottom:492.355800px;}
.y52{bottom:493.725900px;}
.y68{bottom:495.025050px;}
.y4a{bottom:505.725900px;}
.y63{bottom:507.025050px;}
.y30{bottom:508.855800px;}
.y3a{bottom:511.855800px;}
.y51{bottom:514.725900px;}
.y67{bottom:516.025050px;}
.y18{bottom:519.509700px;}
.y57{bottom:525.355800px;}
.y49{bottom:536.481750px;}
.y62{bottom:537.780900px;}
.y2f{bottom:538.111650px;}
.y39{bottom:545.611650px;}
.y17{bottom:548.009700px;}
.y50{bottom:548.481750px;}
.y66{bottom:549.780900px;}
.y48{bottom:554.481750px;}
.y2e{bottom:554.611650px;}
.y61{bottom:555.780900px;}
.y23{bottom:565.936650px;}
.y3{bottom:568.413900px;}
.y5{bottom:571.342200px;}
.y16{bottom:576.509700px;}
.y38{bottom:579.367650px;}
.y4f{bottom:582.237600px;}
.y65{bottom:583.536900px;}
.y2d{bottom:583.867650px;}
.y47{bottom:585.237600px;}
.y60{bottom:586.536900px;}
.y22{bottom:589.936650px;}
.y1f{bottom:591.060000px;}
.y2c{bottom:600.367650px;}
.y46{bottom:603.237600px;}
.y5f{bottom:604.536900px;}
.y15{bottom:613.513800px;}
.y21{bottom:613.936650px;}
.y1e{bottom:615.060000px;}
.y20{bottom:637.936650px;}
.y1d{bottom:639.060000px;}
.y2b{bottom:642.398850px;}
.y45{bottom:645.268950px;}
.y5e{bottom:646.568100px;}
.y4{bottom:651.668100px;}
.y6{bottom:654.596250px;}
.y14{bottom:697.041300px;}
.y13{bottom:725.541300px;}
.y12{bottom:754.041300px;}
.y11{bottom:782.541300px;}
.y5d{bottom:787.583700px;}
.y44{bottom:788.410350px;}
.y2a{bottom:789.083700px;}
.y10{bottom:811.041300px;}
.y5c{bottom:850.583700px;}
.y43{bottom:851.410350px;}
.y29{bottom:852.083700px;}
.yf{bottom:852.297150px;}
.y28{bottom:854.029500px;}
.y8{bottom:1154.682150px;}
.y5b{bottom:1165.182150px;}
.h5{height:45.703125px;}
.h8{height:50.400000px;}
.h9{height:57.128906px;}
.h4{height:68.554688px;}
.h3{height:79.980469px;}
.h7{height:85.693359px;}
.h2{height:222.802734px;}
.h6{height:228.515625px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x17{left:-105.930150px;}
.x0{left:0.000000px;}
.x1{left:51.023550px;}
.x9{left:61.653600px;}
.x23{left:66.562800px;}
.x1c{left:70.866000px;}
.x5{left:74.017200px;}
.x6{left:75.239700px;}
.x7{left:78.496350px;}
.x3{left:80.468250px;}
.x24{left:83.161500px;}
.x1d{left:84.988050px;}
.x18{left:88.122000px;}
.x19{left:92.374050px;}
.x1e{left:97.334700px;}
.x1f{left:101.586600px;}
.x4{left:142.564950px;}
.x2{left:143.945400px;}
.x14{left:213.140100px;}
.x15{left:225.403200px;}
.xf{left:229.059600px;}
.x10{left:234.315450px;}
.x13{left:237.622500px;}
.xe{left:244.631550px;}
.x25{left:432.992100px;}
.x1a{left:442.204800px;}
.x26{left:450.000000px;}
.x20{left:451.417350px;}
.x1b{left:459.212550px;}
.x21{left:468.425250px;}
.xc{left:578.273100px;}
.xd{left:581.389050px;}
.x12{left:583.176600px;}
.x11{left:587.978850px;}
.xb{left:590.781300px;}
.x16{left:786.982950px;}
.x22{left:828.671100px;}
.xa{left:830.611500px;}
.x8{left:834.331200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-2.080000pt;}
.ls15{letter-spacing:-1.493333pt;}
.lsf{letter-spacing:-1.440000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls0{letter-spacing:-1.040000pt;}
.ls13{letter-spacing:-0.853333pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.533333pt;}
.ls21{letter-spacing:-0.426667pt;}
.ls1c{letter-spacing:-0.341333pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.149333pt;}
.ls1e{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.006400pt;}
.ls14{letter-spacing:0.074667pt;}
.lse{letter-spacing:0.080000pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.224000pt;}
.lsb{letter-spacing:0.240000pt;}
.ls1d{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.373333pt;}
.ls22{letter-spacing:0.469333pt;}
.ls18{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.800000pt;}
.ls5{letter-spacing:0.810667pt;}
.ls7{letter-spacing:3.264000pt;}
.ls6{letter-spacing:4.096000pt;}
.ls4{letter-spacing:6.272000pt;}
.ls3{letter-spacing:6.720000pt;}
.ls1b{letter-spacing:547.503467pt;}
.ls8{letter-spacing:547.588800pt;}
.ls2{letter-spacing:549.466133pt;}
.ws2{word-spacing:-42.240000pt;}
.ws0{word-spacing:-40.144000pt;}
.ws8{word-spacing:-16.080000pt;}
.ws9{word-spacing:-15.920000pt;}
.wsa{word-spacing:-15.840000pt;}
.ws15{word-spacing:-15.008000pt;}
.ws13{word-spacing:-14.858667pt;}
.ws14{word-spacing:-14.634667pt;}
.ws27{word-spacing:-12.864000pt;}
.ws24{word-spacing:-11.733333pt;}
.ws18{word-spacing:-11.253333pt;}
.ws25{word-spacing:-11.040000pt;}
.ws1f{word-spacing:-10.933333pt;}
.ws1e{word-spacing:-10.826667pt;}
.ws21{word-spacing:-10.453333pt;}
.ws17{word-spacing:-10.026667pt;}
.ws7{word-spacing:-8.405333pt;}
.ws1d{word-spacing:-8.106667pt;}
.ws12{word-spacing:-7.594667pt;}
.ws5{word-spacing:-4.096000pt;}
.ws6{word-spacing:-3.264000pt;}
.ws4{word-spacing:-0.810667pt;}
.ws1b{word-spacing:-0.693333pt;}
.ws19{word-spacing:-0.586667pt;}
.ws28{word-spacing:-0.469333pt;}
.ws10{word-spacing:-0.320000pt;}
.wsb{word-spacing:-0.240000pt;}
.ws11{word-spacing:-0.224000pt;}
.ws1c{word-spacing:-0.106667pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.240000pt;}
.ws26{word-spacing:0.341333pt;}
.ws3{word-spacing:0.448000pt;}
.ws1a{word-spacing:0.640000pt;}
.ws22{word-spacing:0.853333pt;}
.wsc{word-spacing:1.280000pt;}
.wse{word-spacing:1.440000pt;}
.ws16{word-spacing:1.493333pt;}
.wsf{word-spacing:2.080000pt;}
.ws20{word-spacing:518.404800pt;}
.ws23{word-spacing:521.562133pt;}
._6{margin-left:-48.384000pt;}
._f{margin-left:-46.677333pt;}
._d{margin-left:-45.525333pt;}
._e{margin-left:-27.510933pt;}
._7{margin-left:-25.819200pt;}
._4{margin-left:-6.630400pt;}
._3{margin-left:-4.928000pt;}
._5{margin-left:-3.512533pt;}
._2{margin-left:-2.478933pt;}
._1{margin-left:-1.321600pt;}
._0{width:1.580800pt;}
._c{width:6.499200pt;}
._b{width:7.885867pt;}
._a{width:15.725867pt;}
._8{width:547.375467pt;}
._9{width:884.056000pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs0{font-size:208.000000pt;}
.fs4{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:46.401333pt;}
.y7{bottom:46.536667pt;}
.y78{bottom:63.514133pt;}
.y77{bottom:76.847467pt;}
.y2{bottom:89.931867pt;}
.y76{bottom:93.960267pt;}
.y1{bottom:139.265200pt;}
.y75{bottom:152.001200pt;}
.y74{bottom:170.667867pt;}
.y27{bottom:189.193067pt;}
.y73{bottom:189.334533pt;}
.y26{bottom:210.526400pt;}
.y1c{bottom:211.157067pt;}
.y72{bottom:219.339867pt;}
.y25{bottom:231.859733pt;}
.y1b{bottom:232.490400pt;}
.y71{bottom:238.006533pt;}
.y42{bottom:238.520933pt;}
.y24{bottom:253.193067pt;}
.y1a{bottom:253.823733pt;}
.y7a{bottom:255.001867pt;}
.y70{bottom:256.673200pt;}
.y5a{bottom:283.422533pt;}
.y9{bottom:283.970667pt;}
.y56{bottom:285.973733pt;}
.yb{bottom:286.573600pt;}
.y6f{bottom:286.678400pt;}
.y41{bottom:290.300533pt;}
.y6e{bottom:305.345067pt;}
.y40{bottom:308.967200pt;}
.y6d{bottom:324.011733pt;}
.y37{bottom:326.972400pt;}
.y3f{bottom:327.633867pt;}
.y55{bottom:341.523600pt;}
.y36{bottom:341.639067pt;}
.y6c{bottom:354.017067pt;}
.y3e{bottom:357.639067pt;}
.ya{bottom:357.974400pt;}
.y54{bottom:360.190267pt;}
.yd{bottom:360.577200pt;}
.y35{bottom:367.644267pt;}
.y59{bottom:368.977600pt;}
.y6b{bottom:372.683733pt;}
.y4e{bottom:374.195467pt;}
.y34{bottom:382.310933pt;}
.y3d{bottom:387.644267pt;}
.y4d{bottom:390.195467pt;}
.y6a{bottom:391.350400pt;}
.y33{bottom:396.977600pt;}
.y4c{bottom:406.195467pt;}
.y3c{bottom:406.310933pt;}
.y53{bottom:408.862133pt;}
.y58{bottom:411.644267pt;}
.y69{bottom:421.355600pt;}
.y32{bottom:422.982933pt;}
.y64{bottom:423.350400pt;}
.yc{bottom:429.496800pt;}
.ye{bottom:432.099733pt;}
.y4b{bottom:433.534133pt;}
.y3b{bottom:436.316267pt;}
.y19{bottom:436.453067pt;}
.y31{bottom:437.649600pt;}
.y52{bottom:438.867467pt;}
.y68{bottom:440.022267pt;}
.y4a{bottom:449.534133pt;}
.y63{bottom:450.688933pt;}
.y30{bottom:452.316267pt;}
.y3a{bottom:454.982933pt;}
.y51{bottom:457.534133pt;}
.y67{bottom:458.688933pt;}
.y18{bottom:461.786400pt;}
.y57{bottom:466.982933pt;}
.y49{bottom:476.872667pt;}
.y62{bottom:478.027467pt;}
.y2f{bottom:478.321467pt;}
.y39{bottom:484.988133pt;}
.y17{bottom:487.119733pt;}
.y50{bottom:487.539333pt;}
.y66{bottom:488.694133pt;}
.y48{bottom:492.872667pt;}
.y2e{bottom:492.988133pt;}
.y61{bottom:494.027467pt;}
.y23{bottom:503.054800pt;}
.y3{bottom:505.256800pt;}
.y5{bottom:507.859733pt;}
.y16{bottom:512.453067pt;}
.y38{bottom:514.993467pt;}
.y4f{bottom:517.544533pt;}
.y65{bottom:518.699467pt;}
.y2d{bottom:518.993467pt;}
.y47{bottom:520.211200pt;}
.y60{bottom:521.366133pt;}
.y22{bottom:524.388133pt;}
.y1f{bottom:525.386667pt;}
.y2c{bottom:533.660133pt;}
.y46{bottom:536.211200pt;}
.y5f{bottom:537.366133pt;}
.y15{bottom:545.345600pt;}
.y21{bottom:545.721467pt;}
.y1e{bottom:546.720000pt;}
.y20{bottom:567.054800pt;}
.y1d{bottom:568.053333pt;}
.y2b{bottom:571.021200pt;}
.y45{bottom:573.572400pt;}
.y5e{bottom:574.727200pt;}
.y4{bottom:579.260533pt;}
.y6{bottom:581.863333pt;}
.y14{bottom:619.592267pt;}
.y13{bottom:644.925600pt;}
.y12{bottom:670.258933pt;}
.y11{bottom:695.592267pt;}
.y5d{bottom:700.074400pt;}
.y44{bottom:700.809200pt;}
.y2a{bottom:701.407733pt;}
.y10{bottom:720.925600pt;}
.y5c{bottom:756.074400pt;}
.y43{bottom:756.809200pt;}
.y29{bottom:757.407733pt;}
.yf{bottom:757.597467pt;}
.y28{bottom:759.137333pt;}
.y8{bottom:1026.384133pt;}
.y5b{bottom:1035.717467pt;}
.h5{height:40.625000pt;}
.h8{height:44.800000pt;}
.h9{height:50.781250pt;}
.h4{height:60.937500pt;}
.h3{height:71.093750pt;}
.h7{height:76.171875pt;}
.h2{height:198.046875pt;}
.h6{height:203.125000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x17{left:-94.160133pt;}
.x0{left:0.000000pt;}
.x1{left:45.354267pt;}
.x9{left:54.803200pt;}
.x23{left:59.166933pt;}
.x1c{left:62.992000pt;}
.x5{left:65.793067pt;}
.x6{left:66.879733pt;}
.x7{left:69.774533pt;}
.x3{left:71.527333pt;}
.x24{left:73.921333pt;}
.x1d{left:75.544933pt;}
.x18{left:78.330667pt;}
.x19{left:82.110267pt;}
.x1e{left:86.519733pt;}
.x1f{left:90.299200pt;}
.x4{left:126.724400pt;}
.x2{left:127.951467pt;}
.x14{left:189.457867pt;}
.x15{left:200.358400pt;}
.xf{left:203.608533pt;}
.x10{left:208.280400pt;}
.x13{left:211.220000pt;}
.xe{left:217.450267pt;}
.x25{left:384.881867pt;}
.x1a{left:393.070933pt;}
.x26{left:400.000000pt;}
.x20{left:401.259867pt;}
.x1b{left:408.188933pt;}
.x21{left:416.378000pt;}
.xc{left:514.020533pt;}
.xd{left:516.790267pt;}
.x12{left:518.379200pt;}
.x11{left:522.647867pt;}
.xb{left:525.138933pt;}
.x16{left:699.540400pt;}
.x22{left:736.596533pt;}
.xa{left:738.321333pt;}
.x8{left:741.627733pt;}
}




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