
    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_4af8efe05c8b57ec5e4756c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.987793;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_46dda4f0703d0d75022276e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.987793;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_62ea490163f3348dff73bdb5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_38d45288a08e55bd8a1eff79.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_314de0270edbf7a87539da54.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754883;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_2f31d69c3656cfe356bc6dd1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a093841e20a7b6f704d5fb3d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cba7cf3cb359032c5cb18f24.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_036bc2a8b01f0e508a25e985.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087891;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_adfb027dacee7dfed0943eb9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;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_54baca0344aad58606e9dbbf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.087891;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_20a382f1ddeee807de96119c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.087891;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_f8ce1d58d23b7b3d8565eb44.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.854492;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_9e3b0a90422bf349d78dd646.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.045898;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.400000px;}
.lsd{letter-spacing:-0.330600px;}
.ls9{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.044760px;}
.ls6{letter-spacing:-0.028080px;}
.lsb{letter-spacing:-0.012360px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036720px;}
.lsa{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.537600px;}
.ls7{letter-spacing:0.576000px;}
.ls3{letter-spacing:4309.961280px;}
.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;}
}
.ws0{word-spacing:-192.240000px;}
.wsb{word-spacing:-108.000000px;}
.ws18{word-spacing:-33.048000px;}
.ws2{word-spacing:-23.760120px;}
.ws6{word-spacing:-22.500000px;}
.wsd{word-spacing:-22.490832px;}
.ws7{word-spacing:-22.176000px;}
.wsa{word-spacing:-22.104000px;}
.ws9{word-spacing:-22.032000px;}
.wsc{word-spacing:-21.940872px;}
.wsf{word-spacing:-21.908472px;}
.ws8{word-spacing:-21.816000px;}
.wse{word-spacing:-21.622632px;}
.ws17{word-spacing:-20.844000px;}
.ws13{word-spacing:-18.509472px;}
.ws12{word-spacing:-18.481680px;}
.ws15{word-spacing:-16.258320px;}
.ws11{word-spacing:-13.923792px;}
.ws10{word-spacing:-13.896000px;}
.ws5{word-spacing:-0.444240px;}
.ws16{word-spacing:-0.192240px;}
.ws3{word-spacing:-0.084240px;}
.ws4{word-spacing:-0.056160px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:84.132000px;}
._c{margin-left:-2701.417680px;}
._1{margin-left:-2379.773472px;}
._6{margin-left:-6.129120px;}
._b{margin-left:-5.012640px;}
._2{margin-left:-3.280800px;}
._0{margin-left:-1.345680px;}
._3{width:1.097040px;}
._5{width:2.511600px;}
._8{width:3.960000px;}
._7{width:7.517808px;}
._4{width:10.476000px;}
._9{width:41.357808px;}
._a{width:42.923904px;}
.fc8{color:rgb(179,214,113);}
.fc7{color:rgb(39,83,22);}
.fc3{color:rgb(200,152,0);}
.fc6{color:rgb(255,0,0);}
.fc2{color:rgb(12,53,18);}
.fc1{color:rgb(112,114,67);}
.fc9{color:rgb(34,34,34);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(81,122,50);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:30.240000px;}
.fsf{font-size:59.760000px;}
.fs3{font-size:59.904000px;}
.fs9{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs4{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fsc{font-size:95.904000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs1{font-size:192.240000px;}
.fs2{font-size:192.384000px;}
.fsd{font-size:216.000000px;}
.fs5{font-size:264.240000px;}
.fs8{font-size:264.384000px;}
.fs0{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y46{bottom:53.388000px;}
.y45{bottom:62.028000px;}
.y28{bottom:69.480000px;}
.y44{bottom:71.028000px;}
.y14{bottom:75.852000px;}
.y42{bottom:87.696000px;}
.y27{bottom:91.080000px;}
.y5{bottom:96.804000px;}
.y47{bottom:110.124000px;}
.y29{bottom:110.232000px;}
.y26{bottom:112.680000px;}
.y41{bottom:122.256000px;}
.y25{bottom:134.280000px;}
.y24{bottom:155.880000px;}
.y11{bottom:156.855000px;}
.y40{bottom:156.990000px;}
.y33{bottom:159.375000px;}
.y23{bottom:177.480000px;}
.y10{bottom:189.285000px;}
.y32{bottom:190.155000px;}
.y22{bottom:199.080000px;}
.y3f{bottom:218.595000px;}
.y21{bottom:220.680000px;}
.y31{bottom:220.935000px;}
.y20{bottom:242.310000px;}
.y3e{bottom:253.335000px;}
.yf{bottom:254.085000px;}
.y1f{bottom:263.910000px;}
.y4{bottom:278.355000px;}
.y30{bottom:278.715000px;}
.y1e{bottom:285.510000px;}
.ye{bottom:286.485000px;}
.y1d{bottom:307.110000px;}
.y2f{bottom:309.705000px;}
.y3d{bottom:314.895000px;}
.yd{bottom:318.885000px;}
.y1c{bottom:328.710000px;}
.y3{bottom:335.955000px;}
.y3c{bottom:349.665000px;}
.y1b{bottom:350.310000px;}
.yc{bottom:351.330000px;}
.y2e{bottom:367.485000px;}
.y1a{bottom:371.910000px;}
.y43{bottom:378.465000px;}
.y3b{bottom:384.405000px;}
.y2{bottom:393.555000px;}
.y2d{bottom:398.265000px;}
.y19{bottom:415.155000px;}
.yb{bottom:416.130000px;}
.y18{bottom:436.755000px;}
.y3a{bottom:445.965000px;}
.ya{bottom:448.530000px;}
.y2c{bottom:456.045000px;}
.y17{bottom:458.355000px;}
.y16{bottom:479.955000px;}
.y39{bottom:480.705000px;}
.y9{bottom:480.930000px;}
.y15{bottom:501.555000px;}
.y1{bottom:511.050000px;}
.y2b{bottom:513.870000px;}
.y38{bottom:542.310000px;}
.y2a{bottom:544.830000px;}
.y8{bottom:545.760000px;}
.y13{bottom:547.950000px;}
.y34{bottom:571.830000px;}
.y37{bottom:577.050000px;}
.y36{bottom:611.790000px;}
.y7{bottom:615.930000px;}
.y12{bottom:627.195000px;}
.y35{bottom:674.895000px;}
.y6{bottom:719.130000px;}
.h14{height:25.736484px;}
.h15{height:59.439023px;}
.h4{height:59.582250px;}
.ha{height:62.226562px;}
.hc{height:62.351016px;}
.hb{height:62.402344px;}
.hd{height:82.761328px;}
.he{height:82.885781px;}
.h5{height:83.787539px;}
.h7{height:91.283203px;}
.h8{height:91.404914px;}
.hf{height:93.339844px;}
.h12{height:93.464297px;}
.h11{height:93.603516px;}
.h2{height:150.562969px;}
.h3{height:150.675750px;}
.h10{height:162.484102px;}
.h13{height:169.171875px;}
.h6{height:206.953594px;}
.h9{height:207.066375px;}
.h1{height:253.757812px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7{left:83.735979px;}
.x6{left:85.535979px;}
.x8{left:91.727979px;}
.x9{left:132.299979px;}
.x4{left:259.169979px;}
.x2{left:265.289979px;}
.x22{left:305.564979px;}
.x1f{left:516.884979px;}
.x16{left:521.924979px;}
.x18{left:525.344979px;}
.x1a{left:528.404979px;}
.x1b{left:530.384979px;}
.x15{left:541.184979px;}
.x1{left:545.474979px;}
.x3{left:547.739979px;}
.x1d{left:559.004979px;}
.x1e{left:579.524979px;}
.x21{left:591.914979px;}
.x17{left:594.104979px;}
.x19{left:622.409979px;}
.x20{left:627.449979px;}
.x1c{left:665.249979px;}
.x5{left:689.684979px;}
.x23{left:740.159979px;}
.x14{left:865.109979px;}
.xb{left:957.569979px;}
.xa{left:963.029979px;}
.xc{left:980.609979px;}
.x11{left:987.629979px;}
.xd{left:997.709979px;}
.xe{left:1000.049979px;}
.x13{left:1007.384979px;}
.xf{left:1024.889979px;}
.x10{left:1078.529979px;}
.x12{left:1121.189979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.466667pt;}
.lsd{letter-spacing:-0.293867pt;}
.ls9{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.039787pt;}
.ls6{letter-spacing:-0.024960pt;}
.lsb{letter-spacing:-0.010987pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032640pt;}
.lsa{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.477867pt;}
.ls7{letter-spacing:0.512000pt;}
.ls3{letter-spacing:3831.076693pt;}
.ws0{word-spacing:-170.880000pt;}
.wsb{word-spacing:-96.000000pt;}
.ws18{word-spacing:-29.376000pt;}
.ws2{word-spacing:-21.120107pt;}
.ws6{word-spacing:-20.000000pt;}
.wsd{word-spacing:-19.991851pt;}
.ws7{word-spacing:-19.712000pt;}
.wsa{word-spacing:-19.648000pt;}
.ws9{word-spacing:-19.584000pt;}
.wsc{word-spacing:-19.502997pt;}
.wsf{word-spacing:-19.474197pt;}
.ws8{word-spacing:-19.392000pt;}
.wse{word-spacing:-19.220117pt;}
.ws17{word-spacing:-18.528000pt;}
.ws13{word-spacing:-16.452864pt;}
.ws12{word-spacing:-16.428160pt;}
.ws15{word-spacing:-14.451840pt;}
.ws11{word-spacing:-12.376704pt;}
.ws10{word-spacing:-12.352000pt;}
.ws5{word-spacing:-0.394880pt;}
.ws16{word-spacing:-0.170880pt;}
.ws3{word-spacing:-0.074880pt;}
.ws4{word-spacing:-0.049920pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:74.784000pt;}
._c{margin-left:-2401.260160pt;}
._1{margin-left:-2115.354197pt;}
._6{margin-left:-5.448107pt;}
._b{margin-left:-4.455680pt;}
._2{margin-left:-2.916267pt;}
._0{margin-left:-1.196160pt;}
._3{width:0.975147pt;}
._5{width:2.232533pt;}
._8{width:3.520000pt;}
._7{width:6.682496pt;}
._4{width:9.312000pt;}
._9{width:36.762496pt;}
._a{width:38.154581pt;}
.fse{font-size:26.880000pt;}
.fsf{font-size:53.120000pt;}
.fs3{font-size:53.248000pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs4{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fsc{font-size:85.248000pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs1{font-size:170.880000pt;}
.fs2{font-size:171.008000pt;}
.fsd{font-size:192.000000pt;}
.fs5{font-size:234.880000pt;}
.fs8{font-size:235.008000pt;}
.fs0{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:47.456000pt;}
.y45{bottom:55.136000pt;}
.y28{bottom:61.760000pt;}
.y44{bottom:63.136000pt;}
.y14{bottom:67.424000pt;}
.y42{bottom:77.952000pt;}
.y27{bottom:80.960000pt;}
.y5{bottom:86.048000pt;}
.y47{bottom:97.888000pt;}
.y29{bottom:97.984000pt;}
.y26{bottom:100.160000pt;}
.y41{bottom:108.672000pt;}
.y25{bottom:119.360000pt;}
.y24{bottom:138.560000pt;}
.y11{bottom:139.426667pt;}
.y40{bottom:139.546667pt;}
.y33{bottom:141.666667pt;}
.y23{bottom:157.760000pt;}
.y10{bottom:168.253333pt;}
.y32{bottom:169.026667pt;}
.y22{bottom:176.960000pt;}
.y3f{bottom:194.306667pt;}
.y21{bottom:196.160000pt;}
.y31{bottom:196.386667pt;}
.y20{bottom:215.386667pt;}
.y3e{bottom:225.186667pt;}
.yf{bottom:225.853333pt;}
.y1f{bottom:234.586667pt;}
.y4{bottom:247.426667pt;}
.y30{bottom:247.746667pt;}
.y1e{bottom:253.786667pt;}
.ye{bottom:254.653333pt;}
.y1d{bottom:272.986667pt;}
.y2f{bottom:275.293333pt;}
.y3d{bottom:279.906667pt;}
.yd{bottom:283.453333pt;}
.y1c{bottom:292.186667pt;}
.y3{bottom:298.626667pt;}
.y3c{bottom:310.813333pt;}
.y1b{bottom:311.386667pt;}
.yc{bottom:312.293333pt;}
.y2e{bottom:326.653333pt;}
.y1a{bottom:330.586667pt;}
.y43{bottom:336.413333pt;}
.y3b{bottom:341.693333pt;}
.y2{bottom:349.826667pt;}
.y2d{bottom:354.013333pt;}
.y19{bottom:369.026667pt;}
.yb{bottom:369.893333pt;}
.y18{bottom:388.226667pt;}
.y3a{bottom:396.413333pt;}
.ya{bottom:398.693333pt;}
.y2c{bottom:405.373333pt;}
.y17{bottom:407.426667pt;}
.y16{bottom:426.626667pt;}
.y39{bottom:427.293333pt;}
.y9{bottom:427.493333pt;}
.y15{bottom:445.826667pt;}
.y1{bottom:454.266667pt;}
.y2b{bottom:456.773333pt;}
.y38{bottom:482.053333pt;}
.y2a{bottom:484.293333pt;}
.y8{bottom:485.120000pt;}
.y13{bottom:487.066667pt;}
.y34{bottom:508.293333pt;}
.y37{bottom:512.933333pt;}
.y36{bottom:543.813333pt;}
.y7{bottom:547.493333pt;}
.y12{bottom:557.506667pt;}
.y35{bottom:599.906667pt;}
.y6{bottom:639.226667pt;}
.h14{height:22.876875pt;}
.h15{height:52.834688pt;}
.h4{height:52.962000pt;}
.ha{height:55.312500pt;}
.hc{height:55.423125pt;}
.hb{height:55.468750pt;}
.hd{height:73.565625pt;}
.he{height:73.676250pt;}
.h5{height:74.477812pt;}
.h7{height:81.140625pt;}
.h8{height:81.248812pt;}
.hf{height:82.968750pt;}
.h12{height:83.079375pt;}
.h11{height:83.203125pt;}
.h2{height:133.833750pt;}
.h3{height:133.934000pt;}
.h10{height:144.430312pt;}
.h13{height:150.375000pt;}
.h6{height:183.958750pt;}
.h9{height:184.059000pt;}
.h1{height:225.562500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7{left:74.431981pt;}
.x6{left:76.031981pt;}
.x8{left:81.535981pt;}
.x9{left:117.599981pt;}
.x4{left:230.373314pt;}
.x2{left:235.813314pt;}
.x22{left:271.613314pt;}
.x1f{left:459.453314pt;}
.x16{left:463.933314pt;}
.x18{left:466.973314pt;}
.x1a{left:469.693314pt;}
.x1b{left:471.453314pt;}
.x15{left:481.053314pt;}
.x1{left:484.866648pt;}
.x3{left:486.879981pt;}
.x1d{left:496.893314pt;}
.x1e{left:515.133314pt;}
.x21{left:526.146648pt;}
.x17{left:528.093314pt;}
.x19{left:553.253314pt;}
.x20{left:557.733314pt;}
.x1c{left:591.333314pt;}
.x5{left:613.053314pt;}
.x23{left:657.919981pt;}
.x14{left:768.986648pt;}
.xb{left:851.173314pt;}
.xa{left:856.026648pt;}
.xc{left:871.653314pt;}
.x11{left:877.893314pt;}
.xd{left:886.853314pt;}
.xe{left:888.933314pt;}
.x13{left:895.453314pt;}
.xf{left:911.013314pt;}
.x10{left:958.693314pt;}
.x12{left:996.613314pt;}
}




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